2016-06-05 14:57:28 +01:00
|
|
|
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, tokyocabinet, cairo, pango, ncurses }:
|
2016-04-09 19:08:26 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "duc-${version}";
|
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";
|
|
|
|
rev = "${version}";
|
2018-10-06 15:02:25 +01:00
|
|
|
sha256 = "1i7ry25xzy027g6ysv6qlf09ax04q4vy0kikl8h0aq5jbxsl9q52";
|
2016-04-09 19:08:26 +01:00
|
|
|
};
|
|
|
|
|
2017-09-05 22:26:13 +01:00
|
|
|
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
|
|
|
buildInputs = [ tokyocabinet cairo pango ncurses ];
|
2016-04-09 19:08:26 +01:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = http://duc.zevv.nl/;
|
|
|
|
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
|
|
|
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = [ maintainers.lethalman ];
|
|
|
|
};
|
|
|
|
}
|