summary refs log tree commit diff
path: root/pkgs/tools/misc/ncdu/default.nix
blob: 944b6ea77e1ee150527818147b044c4f021a9f75 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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;
  };
}