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