a3fe61586c
* Removed the KDE version number from all expressions except the top-level default.nix. This makes it easier to upgrade. * Deleted the old l10n versions since there doesn't seem to be a good reason to keep them around. * Don't use replaceChars (slow!) but do the name sanitization in l10n-manifest.sh. svn path=/nixpkgs/trunk/; revision=25760
21 lines
473 B
Nix
21 lines
473 B
Nix
{ kde, cmake, kdelibs, qt4, perl, libarchive, xz, automoc4, qjson,
|
|
kdebase }:
|
|
|
|
kde.package {
|
|
patchPhase = "cp -vn ${qjson}/share/apps/cmake/modules/FindQJSON.cmake cmake/modules";
|
|
|
|
buildInputs = [ cmake qt4 perl libarchive xz kdelibs automoc4 qjson
|
|
kdebase # for libkonq
|
|
];
|
|
|
|
meta = {
|
|
description = "KDE Archiving Tool";
|
|
kde = {
|
|
name = "ark";
|
|
module = "kdeutils";
|
|
version = "2.15";
|
|
versionFile = "app/main.cpp";
|
|
};
|
|
};
|
|
}
|