nix-du: 1.1.1 -> 1.2.0
Diff: https://github.com/symphorien/nix-du/compare/v1.1.1...v1.2.0
This commit is contained in:
parent
00a18a8c6a
commit
88a82d455f
1 changed files with 8 additions and 3 deletions
|
@ -12,16 +12,16 @@
|
|||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "nix-du";
|
||||
version = "1.1.1";
|
||||
version = "1.2.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "symphorien";
|
||||
repo = "nix-du";
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-LI9XWqi3ihcmUBjScQVQbn30e5eLaCYwkmnbj7Y8kuU=";
|
||||
sha256 = "sha256-HfmMZVlsdg9hTWGUihl6OlQAp/n1XRvPLfAKJ8as8Ew=";
|
||||
};
|
||||
|
||||
cargoSha256 = "sha256-AM89yYeEsYOcHtbSiQgz5qVQhFvDibVxA0ACaE8Gw2Y=";
|
||||
cargoSha256 = "sha256-oUxxuBqec4aI2h8BAn1WSA44UU7f5APkv0DIwuSun0M=";
|
||||
|
||||
doCheck = true;
|
||||
nativeCheckInputs = [ nix graphviz ];
|
||||
|
@ -34,6 +34,11 @@ rustPlatform.buildRustPackage rec {
|
|||
|
||||
nativeBuildInputs = [ pkg-config rustPlatform.bindgenHook ];
|
||||
|
||||
# Workaround for https://github.com/NixOS/nixpkgs/issues/166205
|
||||
env = lib.optionalAttrs stdenv.cc.isClang {
|
||||
NIX_LDFLAGS = "-l${stdenv.cc.libcxx.cxxabi.libName}";
|
||||
};
|
||||
|
||||
meta = with lib; {
|
||||
description = "A tool to determine which gc-roots take space in your nix store";
|
||||
homepage = "https://github.com/symphorien/nix-du";
|
||||
|
|
Loading…
Reference in a new issue