nixpkgs/pkgs/tools/misc/duc/default.nix

25 lines
674 B
Nix
Raw Normal View History

2016-06-05 13:57:28 +00:00
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, tokyocabinet, cairo, pango, ncurses }:
2016-04-09 18:08:26 +00:00
stdenv.mkDerivation rec {
name = "duc-${version}";
2016-06-05 13:57:28 +00:00
version = "1.4.1";
2016-04-09 18:08:26 +00:00
2016-06-05 13:57:28 +00:00
src = fetchFromGitHub {
owner = "zevv";
repo = "duc";
rev = "${version}";
sha256 = "0rnar2zacsb9rvdmp1a62xixhy69s5vh0nwgrklqxhb19qkzhdp7";
2016-04-09 18:08:26 +00:00
};
2016-06-05 13:57:28 +00:00
buildInputs = [ autoreconfHook pkgconfig tokyocabinet cairo pango ncurses ];
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
platforms = platforms.linux;
maintainers = [ maintainers.lethalman ];
};
}