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