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