2019-07-28 17:08:18 +00:00
|
|
|
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig
|
|
|
|
, tokyocabinet, ncurses
|
|
|
|
, cairo ? null, pango ? null
|
|
|
|
, enableCairo ? stdenv.isLinux
|
|
|
|
}:
|
|
|
|
|
|
|
|
assert enableCairo -> cairo != null && pango != null;
|
2016-04-09 18:08:26 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "duc";
|
2018-10-06 14:02:25 +00:00
|
|
|
version = "1.4.4";
|
2016-04-09 18:08:26 +00:00
|
|
|
|
2016-06-05 13:57:28 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "zevv";
|
|
|
|
repo = "duc";
|
2019-09-08 23:38:31 +00:00
|
|
|
rev = version;
|
2018-10-06 14:02:25 +00:00
|
|
|
sha256 = "1i7ry25xzy027g6ysv6qlf09ax04q4vy0kikl8h0aq5jbxsl9q52";
|
2016-04-09 18:08:26 +00:00
|
|
|
};
|
|
|
|
|
2017-09-05 21:26:13 +00:00
|
|
|
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
2019-07-28 17:08:18 +00:00
|
|
|
buildInputs = [ tokyocabinet ncurses ] ++
|
|
|
|
stdenv.lib.optionals enableCairo [ cairo pango ];
|
|
|
|
|
|
|
|
configureFlags =
|
|
|
|
stdenv.lib.optionals (!enableCairo) [ "--disable-x11" "--disable-cairo" ];
|
2016-04-09 18:08:26 +00:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = http://duc.zevv.nl/;
|
|
|
|
description = "Collection of tools for inspecting and visualizing disk usage";
|
2016-04-09 19:35:29 +00:00
|
|
|
license = licenses.gpl2;
|
2016-04-09 18:08:26 +00:00
|
|
|
|
2019-07-28 17:08:18 +00:00
|
|
|
platforms = platforms.all;
|
2016-04-09 18:08:26 +00:00
|
|
|
maintainers = [ maintainers.lethalman ];
|
|
|
|
};
|
|
|
|
}
|