2021-01-10 23:54:33 -08:00
|
|
|
{ lib, stdenv, fetchurl, ncurses }:
|
2012-08-22 00:59:01 -07:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "ncdu";
|
2020-06-14 15:39:21 -07:00
|
|
|
version = "1.15.1";
|
2012-08-22 00:59:01 -07:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 05:41:18 -07:00
|
|
|
url = "https://dev.yorhel.nl/download/${pname}-${version}.tar.gz";
|
2020-06-14 15:39:21 -07:00
|
|
|
sha256 = "1c1zxalm5asyhn4p1hd51h7khw17515gbqmvdz63kc8xpx6xqbdh";
|
2012-08-22 00:59:01 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ ncurses ];
|
|
|
|
|
2021-01-10 23:54:33 -08:00
|
|
|
meta = with lib; {
|
2019-02-04 23:39:57 -08:00
|
|
|
description = "Disk usage analyzer with an ncurses interface";
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://dev.yorhel.nl/ncdu";
|
2015-05-29 11:55:59 -07:00
|
|
|
license = licenses.mit;
|
|
|
|
platforms = platforms.all;
|
2020-06-07 20:24:36 -07:00
|
|
|
maintainers = with maintainers; [ pSub zowoq ];
|
2012-08-22 00:59:01 -07:00
|
|
|
};
|
|
|
|
}
|