mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-19 17:39:34 +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";
|
|
};
|
|
};
|
|
}
|