Merge pull request #113 from aszlig/ncdu

ncdu: New package, starting at version 1.8.
This commit is contained in:
Michael Raskin 2012-08-22 01:07:03 -07:00
commit fc3c71cb04
2 changed files with 21 additions and 0 deletions

View file

@ -0,0 +1,19 @@
{ stdenv, fetchurl, ncurses }:
stdenv.mkDerivation rec {
name = "ncdu-${version}";
version = "1.8";
src = fetchurl {
url = "http://dev.yorhel.nl/download/${name}.tar.gz";
sha256 = "42aaf0418c05e725b39b220166a9c604a9c54c0fbf7692c9c119b36d0ed5d099";
};
buildInputs = [ ncurses ];
meta = {
description = "An ncurses disk usage analyzer.";
homepage = http://dev.yorhel.nl/ncdu;
license = stdenv.lib.licenses.mit;
};
}

View file

@ -7344,6 +7344,8 @@ let
navit = callPackage ../applications/misc/navit { };
ncdu = callPackage ../tools/misc/ncdu { };
nedit = callPackage ../applications/editors/nedit {
motif = lesstif;
};