mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 22:36:23 +01:00
8abd44f249
* Remove a lot of code duplication. * Package almost all (except for smoke-based bindings). svn path=/nixpkgs/trunk/; revision=28597
12 lines
256 B
Nix
12 lines
256 B
Nix
{ kde, kdelibs, libxml2, libxslt, kdepimlibs
|
|
, boost, htmlTidy }:
|
|
|
|
kde {
|
|
buildInputs =
|
|
[ kdelibs libxml2 libxslt kdepimlibs boost htmlTidy ];
|
|
|
|
meta = {
|
|
description = "A KDE link checker";
|
|
homepage = http://klinkstatus.kdewebdev.org;
|
|
};
|
|
}
|