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

45 lines
919 B
Nix
Raw Normal View History

{ lib
, stdenv
, fetchFromGitHub
, rustPlatform
, nix
, nlohmann_json
, boost
, graphviz
, Security
, pkg-config
}:
2018-05-21 22:42:35 +02:00
rustPlatform.buildRustPackage rec {
2019-08-31 13:41:23 +02:00
pname = "nix-du";
2021-11-03 13:00:00 +01:00
version = "0.4.1";
2018-05-21 22:42:35 +02:00
src = fetchFromGitHub {
owner = "symphorien";
repo = "nix-du";
2019-10-12 14:00:00 +02:00
rev = "v${version}";
2021-11-03 13:00:00 +01:00
sha256 = "0v6hixj81aa6g3sddny46i0yqaaqv6krp5xadj0xz1g77cb8xy2w";
2018-05-21 22:42:35 +02:00
};
2021-11-03 13:00:00 +01:00
cargoSha256 = "11jaks6adsvrvxlqqw3glvn4ff7xh9j35ayfrl89rb4achvqp7xn";
2018-05-21 22:42:35 +02:00
2018-11-03 11:08:23 +01:00
doCheck = true;
checkInputs = [ nix graphviz ];
2018-05-21 22:42:35 +02:00
buildInputs = [
boost
nix
nlohmann_json
] ++ lib.optionals stdenv.isDarwin [ Security ];
nativeBuildInputs = [ pkg-config ];
2018-05-21 22:42:35 +02:00
meta = with lib; {
2018-05-21 22:42:35 +02:00
description = "A tool to determine which gc-roots take space in your nix store";
homepage = "https://github.com/symphorien/nix-du";
license = licenses.lgpl3Only;
2018-05-21 22:42:35 +02:00
maintainers = [ maintainers.symphorien ];
2018-06-22 21:39:55 +02:00
platforms = platforms.unix;
2018-05-21 22:42:35 +02:00
};
}