nixpkgs/pkgs/tools/misc/diskonaut/default.nix

23 lines
571 B
Nix
Raw Normal View History

{ lib, rustPlatform, fetchFromGitHub }:
2020-06-25 03:45:10 +00:00
rustPlatform.buildRustPackage rec {
pname = "diskonaut";
2020-09-25 05:12:11 +00:00
version = "0.11.0";
2020-06-25 03:45:10 +00:00
src = fetchFromGitHub {
owner = "imsnif";
repo = "diskonaut";
rev = version;
2020-09-25 05:12:11 +00:00
sha256 = "1pmbag3r2ka30zmy2rs9jps2qxj2zh0gy4a774v9yhf0b6qjid54";
2020-06-25 03:45:10 +00:00
};
cargoSha256 = "10jrcy8m9ll4136ghq3fhmnphd9g3rw863x708vm17n44kgdxyab";
2020-06-25 03:45:10 +00:00
meta = with lib; {
2020-06-25 03:45:10 +00:00
description = "Terminal disk space navigator";
homepage = "https://github.com/imsnif/diskonaut";
license = licenses.mit;
maintainers = with maintainers; [ evanjs ];
};
}