lol

Merge pull request #42395 from symphorien/nix-du-0-2-0

nix-du: 0.1.2 -> 0.2.0

authored by

Silvan Mosberger and committed by
GitHub
e73783ae 63e8a448

+7 -6
+7 -6
pkgs/tools/package-management/nix-du/default.nix
··· 1 1 { stdenv, fetchFromGitHub, rustPlatform, nix, boost, graphviz }: 2 2 rustPlatform.buildRustPackage rec { 3 3 name = "nix-du-${version}"; 4 - version = "0.1.2"; 4 + version = "0.2.0"; 5 5 6 6 src = fetchFromGitHub { 7 7 owner = "symphorien"; 8 8 repo = "nix-du"; 9 9 rev = "v${version}"; 10 - sha256 = "1y7ifr4c3v1494swh6akvna0d0rxjy9jw3mw2wdd6vj1xphvmimq"; 10 + sha256 = "1n1qgqjbwbb59xnzgz0dn8h8pckh6yq3crh0w6x2sngijwh678x8"; 11 11 }; 12 - cargoSha256 = "0qq7a6ncxnbjvnmly99awqrk9f3z9b55ifil7b0bn5yhk4h9sa6y"; 12 + cargoSha256 = "1qidbrkdpf4kliyvy2040qi3a67s8mr2r46rjcblr1v2gar0xgs0"; 13 13 14 - doCheck = true; 14 + # switch to true when nix includes https://github.com/NixOS/nix/pull/2223 and 15 + # https://github.com/NixOS/nix/pull/2234 16 + doCheck = false; 15 17 checkInputs = [ graphviz ]; 16 - nativeBuildInputs = [] ++ stdenv.lib.optionals doCheck checkInputs; 17 18 18 19 buildInputs = [ 19 20 boost ··· 25 26 homepage = https://github.com/symphorien/nix-du; 26 27 license = licenses.lgpl3; 27 28 maintainers = [ maintainers.symphorien ]; 28 - platforms = platforms.all; 29 + platforms = platforms.unix; 29 30 }; 30 31 }