mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 13:10:33 +00:00
22ab3fe1ab
svn path=/nixpkgs/branches/kde-4.7/; revision=27645
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";
|
|
};
|
|
};
|
|
}
|