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 { stdenv, fetchFromGitHub, rustPlatform, nix, boost, graphviz }: 2 rustPlatform.buildRustPackage rec { 3 name = "nix-du-${version}"; 4 - version = "0.1.2"; 5 6 src = fetchFromGitHub { 7 owner = "symphorien"; 8 repo = "nix-du"; 9 rev = "v${version}"; 10 - sha256 = "1y7ifr4c3v1494swh6akvna0d0rxjy9jw3mw2wdd6vj1xphvmimq"; 11 }; 12 - cargoSha256 = "0qq7a6ncxnbjvnmly99awqrk9f3z9b55ifil7b0bn5yhk4h9sa6y"; 13 14 - doCheck = true; 15 checkInputs = [ graphviz ]; 16 - nativeBuildInputs = [] ++ stdenv.lib.optionals doCheck checkInputs; 17 18 buildInputs = [ 19 boost ··· 25 homepage = https://github.com/symphorien/nix-du; 26 license = licenses.lgpl3; 27 maintainers = [ maintainers.symphorien ]; 28 - platforms = platforms.all; 29 }; 30 }
··· 1 { stdenv, fetchFromGitHub, rustPlatform, nix, boost, graphviz }: 2 rustPlatform.buildRustPackage rec { 3 name = "nix-du-${version}"; 4 + version = "0.2.0"; 5 6 src = fetchFromGitHub { 7 owner = "symphorien"; 8 repo = "nix-du"; 9 rev = "v${version}"; 10 + sha256 = "1n1qgqjbwbb59xnzgz0dn8h8pckh6yq3crh0w6x2sngijwh678x8"; 11 }; 12 + cargoSha256 = "1qidbrkdpf4kliyvy2040qi3a67s8mr2r46rjcblr1v2gar0xgs0"; 13 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; 17 checkInputs = [ graphviz ]; 18 19 buildInputs = [ 20 boost ··· 26 homepage = https://github.com/symphorien/nix-du; 27 license = licenses.lgpl3; 28 maintainers = [ maintainers.symphorien ]; 29 + platforms = platforms.unix; 30 }; 31 }