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

22 lines
544 B
Nix
Raw Normal View History

{ stdenv, fetchurl, ncurses }:
stdenv.mkDerivation rec {
pname = "ncdu";
version = "1.14.1";
src = fetchurl {
url = "https://dev.yorhel.nl/download/${pname}-${version}.tar.gz";
sha256 = "0gp1aszzrh8b6fhv8fspvkmr0qwc55z6z4w6l7r8j09sq7lf0cdy";
};
buildInputs = [ ncurses ];
2015-05-29 19:55:59 +01:00
meta = with stdenv.lib; {
2019-02-05 07:39:57 +00:00
description = "Disk usage analyzer with an ncurses interface";
2017-11-11 16:36:33 +00:00
homepage = https://dev.yorhel.nl/ncdu;
2015-05-29 19:55:59 +01:00
license = licenses.mit;
platforms = platforms.all;
maintainers = with maintainers; [ pSub ];
};
}