mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 13:10:33 +00:00
17 lines
378 B
Nix
17 lines
378 B
Nix
|
{ kde, cmake, kdelibs, automoc4, libxml2, libxslt }:
|
||
|
|
||
|
kde.package {
|
||
|
buildInputs = [ cmake kdelibs automoc4 libxml2 libxslt ];
|
||
|
|
||
|
meta = {
|
||
|
description = "An HTML imagemap editor";
|
||
|
homepage = http://www.nongnu.org/kimagemap/;
|
||
|
kde = {
|
||
|
name = "kimagemapeditor";
|
||
|
module = "kdewebdev";
|
||
|
version = "3.9.0";
|
||
|
versionFile = "version.h";
|
||
|
};
|
||
|
};
|
||
|
}
|