nixpkgs/pkgs/tools/package-management/nix-du/default.nix

30 lines
854 B
Nix
Raw Normal View History

2018-11-03 10:08:23 +00:00
{ stdenv, fetchFromGitHub, rustPlatform, nix, boost, graphviz, darwin }:
2018-05-21 20:42:35 +00:00
rustPlatform.buildRustPackage rec {
name = "nix-du-${version}";
2018-11-03 10:08:23 +00:00
version = "0.3.0";
2018-05-21 20:42:35 +00:00
src = fetchFromGitHub {
owner = "symphorien";
repo = "nix-du";
rev = "v${version}";
2018-11-03 10:08:23 +00:00
sha256 = "1x6qpivxbn94034jfdxb97xi97fhcdv2z7llq2ccfc80mgd0gz8l";
2018-05-21 20:42:35 +00:00
};
2018-11-03 10:08:23 +00:00
cargoSha256 = "0sva4lnhccm6ly7pa6m99s3fqkmh1dzv7r2727nsg2f55prd4kxc";
2018-05-21 20:42:35 +00:00
2018-11-03 10:08:23 +00:00
doCheck = true;
2018-05-21 20:42:35 +00:00
checkInputs = [ graphviz ];
buildInputs = [
boost
nix
2018-11-03 10:08:23 +00:00
] ++ stdenv.lib.optional stdenv.isDarwin darwin.apple_sdk.frameworks.Security;
2018-05-21 20:42:35 +00:00
meta = with stdenv.lib; {
description = "A tool to determine which gc-roots take space in your nix store";
homepage = https://github.com/symphorien/nix-du;
license = licenses.lgpl3;
maintainers = [ maintainers.symphorien ];
2018-06-22 19:39:55 +00:00
platforms = platforms.unix;
2018-05-21 20:42:35 +00:00
};
}