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
19 lines
444 B
Nix
19 lines
444 B
Nix
{ kde, cmake, kdelibs, automoc4, libxml2, libxslt, kdepimlibs, boost, htmlTidy,
|
|
ruby }:
|
|
|
|
kde.package {
|
|
buildInputs = [ cmake kdelibs automoc4 libxml2 libxslt kdepimlibs boost
|
|
htmlTidy ruby ];
|
|
|
|
meta = {
|
|
description = "A KDE link checker";
|
|
homepage = http://klinkstatus.kdewebdev.org;
|
|
kde = {
|
|
name = "klinkstatus";
|
|
module = "kdewebdev";
|
|
version = "0.7.0";
|
|
versionFile = "src/main.cpp";
|
|
};
|
|
};
|
|
}
|