nix-du: 0.3.3 -> 0.3.4 (#119243)

Co-authored-by: Sandro <sandro.jaeckel@gmail.com>

authored by

Guillaume Girol
Sandro
and committed by
GitHub
46163f6f 3c12bf1b

+11 -7
+8 -6
pkgs/tools/package-management/nix-du/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, rustPlatform, nix, boost, graphviz, darwin }: 2 3 rustPlatform.buildRustPackage rec { 4 pname = "nix-du"; 5 - version = "0.3.3"; 6 7 src = fetchFromGitHub { 8 owner = "symphorien"; 9 repo = "nix-du"; 10 rev = "v${version}"; 11 - sha256 = "0h8ya0nn65hbyi3ssmrjarfxadx2sa61sspjlrln8knk7ppxk3mq"; 12 }; 13 14 - cargoSha256 = "0d86bn6myr29bwrzw3ihnzg1yij673s80bm1l8srk2k2szyfwwh5"; 15 16 doCheck = true; 17 checkInputs = [ nix graphviz ]; ··· 19 buildInputs = [ 20 boost 21 nix 22 - ] ++ lib.optional stdenv.isDarwin darwin.apple_sdk.frameworks.Security; 23 24 meta = with lib; { 25 description = "A tool to determine which gc-roots take space in your nix store"; 26 homepage = "https://github.com/symphorien/nix-du"; 27 - license = licenses.lgpl3; 28 maintainers = [ maintainers.symphorien ]; 29 platforms = platforms.unix; 30 };
··· 1 + { lib, stdenv, fetchFromGitHub, rustPlatform, nix, boost, graphviz, Security, pkg-config }: 2 3 rustPlatform.buildRustPackage rec { 4 pname = "nix-du"; 5 + version = "0.3.4"; 6 7 src = fetchFromGitHub { 8 owner = "symphorien"; 9 repo = "nix-du"; 10 rev = "v${version}"; 11 + sha256 = "0iwlprjbphwsrxdhgsxa8ja73snsyh0rdxrpsf1ygid2ky5vc83f"; 12 }; 13 14 + cargoSha256 = "19fwkw9iswzkhqgfq7pmcabqmq5c7vvirwaxbfjshkwcgn47rgjl"; 15 16 doCheck = true; 17 checkInputs = [ nix graphviz ]; ··· 19 buildInputs = [ 20 boost 21 nix 22 + ] ++ lib.optionals stdenv.isDarwin [ Security ]; 23 + 24 + nativeBuildInputs = [ pkg-config ]; 25 26 meta = with lib; { 27 description = "A tool to determine which gc-roots take space in your nix store"; 28 homepage = "https://github.com/symphorien/nix-du"; 29 + license = licenses.lgpl3Only; 30 maintainers = [ maintainers.symphorien ]; 31 platforms = platforms.unix; 32 };
+3 -1
pkgs/top-level/all-packages.nix
··· 29906 nix-deploy = haskell.lib.justStaticExecutables haskellPackages.nix-deploy; 29907 nix-diff = haskell.lib.justStaticExecutables haskellPackages.nix-diff; 29908 29909 - nix-du = callPackage ../tools/package-management/nix-du { }; 29910 29911 nix-info = callPackage ../tools/nix/info { }; 29912 nix-info-tested = nix-info.override { doCheck = true; };
··· 29906 nix-deploy = haskell.lib.justStaticExecutables haskellPackages.nix-deploy; 29907 nix-diff = haskell.lib.justStaticExecutables haskellPackages.nix-diff; 29908 29909 + nix-du = callPackage ../tools/package-management/nix-du { 29910 + inherit (darwin.apple_sdk.frameworks) Security; 29911 + }; 29912 29913 nix-info = callPackage ../tools/nix/info { }; 29914 nix-info-tested = nix-info.override { doCheck = true; };