2009-03-03 14:27:40 +01:00
|
|
|
{stdenv, fetchurl, kdelibs, qt, x11, zlib, perl, libpng}:
|
|
|
|
|
2007-07-14 16:41:06 +02:00
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "filelight-1.0";
|
|
|
|
|
|
|
|
src = fetchurl {
|
2007-09-11 12:15:07 +02:00
|
|
|
url = http://www.methylblue.com/filelight/packages/filelight-1.0.tar.bz2;
|
2007-07-14 16:41:06 +02:00
|
|
|
sha256 = "1mj5q8i818b6qlmjgfk984agp9n72pxi7p7caixzmcm1c2gd8hq7";
|
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [kdelibs qt x11 zlib perl libpng];
|
2009-03-03 14:27:40 +01: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 16:41:06 +02:00
|
|
|
|
|
|
|
meta = {
|
2009-03-03 14:27:40 +01:00
|
|
|
description = "A tool for analysing which directories and files eat your disk space";
|
2007-07-14 16:41:06 +02:00
|
|
|
};
|
|
|
|
}
|