2010-07-29 20:55:16 +02:00
|
|
|
{ stdenv, fetchurl, gtk, pkgconfig, libxml2, intltool, gettext }:
|
2008-06-16 13:11:56 +02:00
|
|
|
|
2010-07-29 20:55:16 +02:00
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "gdmap-0.8.1";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = http://downloads.sourceforge.net/gdmap/gdmap-0.8.1.tar.gz;
|
|
|
|
sha256 = "0nr8l88cg19zj585hczj8v73yh21k7j13xivhlzl8jdk0j0cj052";
|
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ gtk pkgconfig libxml2 intltool gettext ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Recursive rectangle map of disk usage";
|
|
|
|
};
|
2008-06-16 13:11:56 +02:00
|
|
|
}
|