ffcac187e8
I patched properly their own copy of cmake findqt4 module, the same way as we had to do in the cmake expression. The findqt4 patch we have is already filled in the cmake buglist, but it seems it is still not solved in in cmake 2.8.0 svn path=/nixpkgs/trunk/; revision=19960
19 lines
643 B
Nix
19 lines
643 B
Nix
{stdenv, fetchurl, lib, cmake, qt4, perl, qimageblitz, kdelibs, kdebase_workspace,
|
|
automoc4, phonon}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "filelight-1.9rc3";
|
|
src = fetchurl {
|
|
url = http://www.kde-apps.org/CONTENT/content-files/99561-filelight-1.9rc3.tgz;
|
|
sha256 = "0ljyx23j4cvrsi1dvmxila82q2cd26barmcvc8qmr74kz6pj78sq";
|
|
};
|
|
buildInputs = [ cmake qt4 perl kdelibs kdebase_workspace automoc4 phonon
|
|
qimageblitz ];
|
|
meta = {
|
|
description = "Shows disk usage as an interactive map of concentric rings";
|
|
license = "GPL";
|
|
homepage = http://www.methylblue.com/filelight/;
|
|
maintainers = [ lib.maintainers.viric ];
|
|
};
|
|
}
|