temp override to build awscli2

This commit is contained in:
Noah Masur
2025-10-12 18:57:40 +00:00
parent 839ca079c2
commit bf52069886
4 changed files with 18 additions and 8 deletions

12
flake.lock generated
View File

@@ -176,11 +176,11 @@
]
},
"locked": {
"lastModified": 1760130406,
"narHash": "sha256-GKMwBaFRw/C1p1VtjDz4DyhyzjKUWyi1K50bh8lgA2E=",
"lastModified": 1760239230,
"narHash": "sha256-eqSP/BAbQwNTlQ/6yuK0yILzZAPNNj91gp6oIfVtu/E=",
"owner": "nix-community",
"repo": "home-manager",
"rev": "d305eece827a3fe317a2d70138f53feccaf890a1",
"rev": "c4aaddeaecc09554c92518fd904e3e84b497ed09",
"type": "github"
},
"original": {
@@ -344,11 +344,11 @@
]
},
"locked": {
"lastModified": 1760150127,
"narHash": "sha256-McDmxx/bruodgHLD4sFIl0fKkEkNj5VE3DglImfslrk=",
"lastModified": 1760289427,
"narHash": "sha256-WZoxzFxrovU5LZhkdt77qUa2zYEBy7ntxLFUEayp2XE=",
"owner": "nix-community",
"repo": "nur",
"rev": "886a5646695563cbae3c1e10369c6070c7645e73",
"rev": "a82226091501c0ee01e7fb55b8f357afe0faa392",
"type": "github"
},
"original": {

10
overlays/awscli2.nix Normal file
View File

@@ -0,0 +1,10 @@
inputs: _final: prev: {
awscli2 = prev.awscli2.overrideAttrs (
finalAttrs: previousAttrs: {
disabledTestPaths = previousAttrs.disabledTestPaths ++ [
"tests/unit/customizations"
];
}
);
}

View File

@@ -18,5 +18,5 @@
}).withPlugins
{
plugins = [ "github.com/caddy-dns/cloudflare@v0.2.1" ];
hash = "sha256-AcWko5513hO8I0lvbCLqVbM1eWegAhoM0J0qXoWL/vI=";
hash = "sha256-XwZ0Hkeh2FpQL/fInaSq+/3rCLmQRVvwBM0Y1G1FZNU=";
}

View File

@@ -17,7 +17,7 @@ in
services.nextcloud = {
enable = true;
package = pkgs.nextcloud31; # Required to specify
package = pkgs.nextcloud32; # Required to specify
configureRedis = true;
datadir = "/data/nextcloud";
database.createLocally = true;