mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 16:33:15 +00:00
755b915a15
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
26 lines
477 B
Nix
26 lines
477 B
Nix
{ 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
|
|
];
|
|
}
|