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
18 lines
586 B
Nix
18 lines
586 B
Nix
{stdenv, fetchurl, lib, cmake, qt4, perl, gettext, kdelibs, automoc4, phonon}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "krusader-2.0.0";
|
|
src = fetchurl {
|
|
url = mirror://sourceforge/krusader/krusader-2.0.0.tar.gz;
|
|
sha256 = "dc74c47d6eaf1c28165a74750e5a1b0341fa1c0d436658d0d5f85a6149f4852c";
|
|
};
|
|
buildInputs = [ cmake qt4 perl gettext kdelibs automoc4 phonon ];
|
|
patches = [./krusader-gcc44.patch];
|
|
meta = {
|
|
description = "Norton/Total Commander clone for KDE";
|
|
license = "GPL";
|
|
homepage = http://www.krusader.org;
|
|
maintainers = [ lib.maintainers.sander ];
|
|
};
|
|
}
|