Move most kde-extragear apps to top-level

svn path=/nixpkgs/trunk/; revision=24092
This commit is contained in:
Yury G. Kudryashov
2010-10-05 17:44:33 +00:00
parent 4591f1fe51
commit 673e66e3a3
14 changed files with 14 additions and 77 deletions
@@ -0,0 +1,17 @@
{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 ];
};
}