about summary refs log tree commit diff
path: root/pkgs/applications/kde/umbrello.nix
blob: 7a3356fd2103a0539112fed2d9f01fcf759859cf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ mkDerivation
, lib
, extra-cmake-modules
, cmake
, karchive
, ki18n
, kiconthemes
, kdelibs4support
, ktexteditor
}:

mkDerivation {
  pname = "umbrello";
  meta = {
    homepage = "https://umbrello.kde.org/";
    description = "Unified Modelling Language (UML) diagram program";
    license = [ lib.licenses.gpl2 ];
  };
  nativeBuildInputs = [
    cmake extra-cmake-modules
  ];
  propagatedBuildInputs = [
    karchive ki18n kiconthemes kdelibs4support ktexteditor
  ];
}