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

22 lines
520 B
Nix
Raw Normal View History

{ stdenv, fetchurl, ncurses }:
stdenv.mkDerivation rec {
name = "ncdu-${version}";
2015-05-29 18:55:59 +00:00
version = "1.11";
src = fetchurl {
url = "http://dev.yorhel.nl/download/${name}.tar.gz";
2015-05-29 18:55:59 +00:00
sha256 = "0yxv87hpal05p6nii6rlnai5a8958689l9vz020w4qvlwiragbnh";
};
buildInputs = [ ncurses ];
2015-05-29 18:55:59 +00:00
meta = with stdenv.lib; {
description = "Ncurses disk usage analyzer";
homepage = http://dev.yorhel.nl/ncdu;
2015-05-29 18:55:59 +00:00
license = licenses.mit;
platforms = platforms.all;
maintainers = with maintainers; [ pSub ];
};
}