2018-11-03 10:08:23 +00:00
|
|
|
{ stdenv, fetchFromGitHub, rustPlatform, nix, boost, graphviz, darwin }:
|
2020-02-15 06:06:59 +00:00
|
|
|
|
2018-05-21 21:42:35 +01:00
|
|
|
rustPlatform.buildRustPackage rec {
|
2019-08-31 12:41:23 +01:00
|
|
|
pname = "nix-du";
|
2019-10-12 13:00:00 +01:00
|
|
|
version = "0.3.1";
|
2018-05-21 21:42:35 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "symphorien";
|
|
|
|
repo = "nix-du";
|
2019-10-12 13:00:00 +01:00
|
|
|
rev = "v${version}";
|
|
|
|
sha256 = "149d60mid29s5alv5m3d7jrhyzc6cj7b6hpiq399gsdwzgxr00wq";
|
2018-05-21 21:42:35 +01:00
|
|
|
};
|
2020-02-15 06:06:59 +00:00
|
|
|
|
2020-01-12 16:21:23 +00:00
|
|
|
cargoSha256 = "1a6svl89dcdb5fpvs2i32i6agyhl0sx7kkkw70rqr17fyzl5psai";
|
2018-05-21 21:42:35 +01:00
|
|
|
|
2018-11-03 10:08:23 +00:00
|
|
|
doCheck = true;
|
2020-04-28 13:00:00 +01:00
|
|
|
checkInputs = [ nix graphviz ];
|
2018-05-21 21:42:35 +01:00
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
boost
|
|
|
|
nix
|
2018-11-03 10:08:23 +00:00
|
|
|
] ++ stdenv.lib.optional stdenv.isDarwin darwin.apple_sdk.frameworks.Security;
|
2018-05-21 21:42:35 +01:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "A tool to determine which gc-roots take space in your nix store";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/symphorien/nix-du";
|
2018-05-21 21:42:35 +01:00
|
|
|
license = licenses.lgpl3;
|
|
|
|
maintainers = [ maintainers.symphorien ];
|
2018-06-22 20:39:55 +01:00
|
|
|
platforms = platforms.unix;
|
2018-05-21 21:42:35 +01:00
|
|
|
};
|
|
|
|
}
|