mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-12 08:01:50 +00:00
15 lines
313 B
Nix
15 lines
313 B
Nix
|
{ kde, cmake, kdelibs, automoc4, libxml2, libxslt, boost }:
|
||
|
|
||
|
kde.package {
|
||
|
buildInputs = [ cmake kdelibs automoc4 libxml2 libxslt boost ];
|
||
|
|
||
|
meta = {
|
||
|
description = "Umbrello UML modeller";
|
||
|
kde = {
|
||
|
name = "umbrello";
|
||
|
module = "kdesdk";
|
||
|
version = "2.5.2"; # release - 200
|
||
|
};
|
||
|
};
|
||
|
}
|