mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
Merge pull request #182794 from adisbladis/umbrello
libsForQt5.umbrello: init at 22.04.3
This commit is contained in:
commit
125cb5df81
2 changed files with 26 additions and 0 deletions
|
@ -230,6 +230,7 @@ let
|
|||
skanlite = callPackage ./skanlite.nix {};
|
||||
skanpage = callPackage ./skanpage.nix {};
|
||||
spectacle = callPackage ./spectacle.nix {};
|
||||
umbrello = callPackage ./umbrello.nix {};
|
||||
yakuake = callPackage ./yakuake.nix {};
|
||||
zanshin = callPackage ./zanshin.nix {};
|
||||
};
|
||||
|
|
25
pkgs/applications/kde/umbrello.nix
Normal file
25
pkgs/applications/kde/umbrello.nix
Normal file
|
@ -0,0 +1,25 @@
|
|||
{ mkDerivation
|
||||
, lib
|
||||
, extra-cmake-modules
|
||||
, cmake
|
||||
, karchive
|
||||
, ki18n
|
||||
, kiconthemes
|
||||
, kdelibs4support
|
||||
, ktexteditor
|
||||
}:
|
||||
|
||||
mkDerivation {
|
||||
pname = "umbrello";
|
||||
meta = {
|
||||
homepage = "https://umbrello.kde.org/";
|
||||
description = "A Unified Modelling Language (UML) diagram program";
|
||||
license = [ lib.licenses.gpl2 ];
|
||||
};
|
||||
nativeBuildInputs = [
|
||||
cmake extra-cmake-modules
|
||||
];
|
||||
propagatedBuildInputs = [
|
||||
karchive ki18n kiconthemes kdelibs4support ktexteditor
|
||||
];
|
||||
}
|
Loading…
Reference in a new issue