2009-03-03 05:27:40 -08:00
|
|
|
{stdenv, fetchurl, kdelibs, qt, x11, zlib, perl, libpng}:
|
|
|
|
|
2007-07-14 07:41:06 -07:00
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "filelight-1.0";
|
|
|
|
|
|
|
|
src = fetchurl {
|
2007-09-11 03:15:07 -07:00
|
|
|
url = http://www.methylblue.com/filelight/packages/filelight-1.0.tar.bz2;
|
2007-07-14 07:41:06 -07:00
|
|
|
sha256 = "1mj5q8i818b6qlmjgfk984agp9n72pxi7p7caixzmcm1c2gd8hq7";
|
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [kdelibs qt x11 zlib perl libpng];
|
2009-03-03 05:27:40 -08:00
|
|
|
|
|
|
|
configureFlags = "--without-debug --without-arts";
|
|
|
|
|
|
|
|
preConfigure = ''
|
|
|
|
sed -e '/sys_lib_\(dl\)\{0,1\}search_path_spec=/d' -i configure
|
|
|
|
sed -e '/X_LDFLAGS=/d' -i configure
|
|
|
|
'';
|
2007-07-14 07:41:06 -07:00
|
|
|
|
|
|
|
meta = {
|
2009-03-03 05:27:40 -08:00
|
|
|
description = "A tool for analysing which directories and files eat your disk space";
|
2007-07-14 07:41:06 -07:00
|
|
|
};
|
|
|
|
}
|