1{stdenv, fetchurl, cmake, gettext}:
2
3stdenv.mkDerivation rec {
4 name = "dfc-3.0.5";
5
6 src = fetchurl {
7 url = "http://projects.gw-computing.net/attachments/download/467/${name}.tar.gz";
8 sha256 = "0yl5dl1nydinji71zz37c7myg3vg9jzxq89rcjqlfcy5dcfpm51w";
9 };
10
11 buildInputs = [ cmake gettext ];
12
13 meta = {
14 homepage = https://projects.gw-computing.net/projects/dfc;
15 description = "Displays file system space usage using graphs and colors";
16 license="free";
17 maintainers = with stdenv.lib.maintainers; [qknight];
18 platforms = with stdenv.lib.platforms; all;
19 };
20}
21