mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-22 14:45:27 +00:00
15 lines
326 B
Nix
15 lines
326 B
Nix
|
{ kde, cmake, kdelibs, automoc4, libxml2, libxslt }:
|
||
|
|
||
|
kde.package {
|
||
|
buildInputs = [ cmake kdelibs automoc4 libxml2 libxslt ];
|
||
|
|
||
|
meta = {
|
||
|
description = "A graphical editor of scripted dialogs";
|
||
|
kde = {
|
||
|
name = "kommander";
|
||
|
module = "kdewebdev";
|
||
|
versionFile = "lib/kommanderversion.h";
|
||
|
};
|
||
|
};
|
||
|
}
|