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

22 lines
546 B
Nix
Raw Normal View History

{ stdenv, fetchurl, ncurses }:
stdenv.mkDerivation rec {
pname = "ncdu";
version = "1.14.2";
src = fetchurl {
url = "https://dev.yorhel.nl/download/${pname}-${version}.tar.gz";
sha256 = "1cf6a9qw7ljaw09b0g7c5i252dl7wb2mnkrbwwwf7m0c3mf7yyll";
};
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";
homepage = "https://dev.yorhel.nl/ncdu";
2015-05-29 19:55:59 +01:00
license = licenses.mit;
platforms = platforms.all;
maintainers = with maintainers; [ pSub ];
};
}