From 9e8cc9787ee8f8511b4aa5c1504c93da98003798 Mon Sep 17 00:00:00 2001 From: Michael Raskin <7c6f434c@mail.ru> Date: Sat, 14 Jul 2007 14:41:06 +0000 Subject: Added Filelight - a tool to quickly find disk eating files/directories. svn path=/nixpkgs/trunk/; revision=8983 --- pkgs/tools/system/filelight/default.nix | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 pkgs/tools/system/filelight/default.nix (limited to 'pkgs/tools/system') diff --git a/pkgs/tools/system/filelight/default.nix b/pkgs/tools/system/filelight/default.nix new file mode 100644 index 000000000000..86b8275f295e --- /dev/null +++ b/pkgs/tools/system/filelight/default.nix @@ -0,0 +1,23 @@ +{stdenv, fetchurl, kdelibs, qt, x11, zlib, perl, + libpng}: +stdenv.mkDerivation { + name = "filelight-1.0"; + + src = fetchurl { + url = http://kde-apps.org/content/download.php?content=9887&id=1; + sha256 = "1mj5q8i818b6qlmjgfk984agp9n72pxi7p7caixzmcm1c2gd8hq7"; + name = "filelight-1.0.tar.bz2"; + }; + + buildInputs = [kdelibs qt x11 zlib perl libpng]; + 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"; + + meta = { + description = " + Filelight lets you analyze which directories + and files eat your disk space. +"; + }; +} -- cgit 1.4.1