nix-du: 1.2.3 -> 1.2.4

This commit is contained in:
Guillaume Girol
2026-04-25 13:23:46 +02:00
committed by Jörg Thalheim
parent b12141ef61
commit fa95d7818a
2 changed files with 13 additions and 10 deletions
+8 -10
View File
@@ -3,36 +3,34 @@
fetchFromGitHub,
rustPlatform,
nixVersions,
nlohmann_json,
boost,
nix ? nixVersions.nix_2_34,
graphviz,
pkg-config,
}:
rustPlatform.buildRustPackage (finalAttrs: {
pname = "nix-du";
version = "1.2.3";
version = "1.2.4";
src = fetchFromGitHub {
owner = "symphorien";
repo = "nix-du";
tag = "v${finalAttrs.version}";
hash = "sha256-/Afp0InA/0xXdombAzylYJF9wcv5WwYizVsP+fHTDrM=";
hash = "sha256-pqsBWdCdLEdkubcVMuZzF425oU2zgsMSPeDElM+zYBE=";
};
cargoHash = "sha256-Q/woxGh1I6FpgJ5D0x7KovSwuRXfZzqjzwljaoKj0/Y=";
cargoHash = "sha256-xotbDCuWUeahVsRoOiBdZDC3JpK2a9osbSyVtUyaBrg=";
doCheck = true;
nativeCheckInputs = [
nixVersions.nix_2_28
nix
graphviz
];
buildInputs = [
boost
nixVersions.nix_2_28
nlohmann_json
];
nix
]
++ nix.buildInputs;
nativeBuildInputs = [
pkg-config
@@ -20,6 +20,7 @@
nixpkgs-reviewFull,
nil,
nix-direnv,
nix-du,
nix-fast-build,
haskell,
nix-serve-ng,
@@ -127,6 +128,10 @@ let
nix = self.lix;
};
nix-du = nix-du.override {
nix = self.lix;
};
nix-eval-jobs = self.callPackage (callPackage ./common-nix-eval-jobs.nix nix-eval-jobs-args) {
stdenv = lixStdenv;
};