nixpkgs/pkgs/tools/misc/diskonaut/default.nix
Evan Stoll 34f096d012 diskonaut: 0.3.0 -> 0.9.0
remove special handling for checkPhase
Diskonaut now measures file sizes consistently and tests can be run
without modification

discussion: https://github.com/imsnif/diskonaut/issues/50
implementation: https://github.com/imsnif/diskonaut/pull/66
2020-07-12 15:28:47 -04:00

24 lines
611 B
Nix

{ stdenv, rustPlatform, fetchFromGitHub }:
rustPlatform.buildRustPackage rec {
pname = "diskonaut";
version = "0.9.0";
src = fetchFromGitHub {
owner = "imsnif";
repo = "diskonaut";
rev = version;
sha256 = "125ba9qwh7j8bz74w2zbw729s1wfnjg6dg8yicqrp6559x9k7gq5";
};
cargoSha256 = "0vvbrlmviyn9w8i416767vhvd1gqm3qjvia730m0rs0w5h8khiqf";
meta = with stdenv.lib; {
description = "Terminal disk space navigator";
homepage = "https://github.com/imsnif/diskonaut";
license = licenses.mit;
platforms = platforms.all;
maintainers = with maintainers; [ evanjs ];
};
}