Merge pull request #89803 from SCOTT-HAMILTON/KAppTemplate
kapptemplate: init at 19.12.3
This commit is contained in:
commit
12ab0bd980
|
@ -89,6 +89,7 @@ let
|
||||||
kaddressbook = callPackage ./kaddressbook.nix {};
|
kaddressbook = callPackage ./kaddressbook.nix {};
|
||||||
kalarm = callPackage ./kalarm.nix {};
|
kalarm = callPackage ./kalarm.nix {};
|
||||||
kalarmcal = callPackage ./kalarmcal.nix {};
|
kalarmcal = callPackage ./kalarmcal.nix {};
|
||||||
|
kapptemplate = callPackage ./kapptemplate.nix { };
|
||||||
kate = callPackage ./kate.nix {};
|
kate = callPackage ./kate.nix {};
|
||||||
kbreakout = callPackage ./kbreakout.nix {};
|
kbreakout = callPackage ./kbreakout.nix {};
|
||||||
kcachegrind = callPackage ./kcachegrind.nix {};
|
kcachegrind = callPackage ./kcachegrind.nix {};
|
||||||
|
|
|
@ -0,0 +1,24 @@
|
||||||
|
{ lib
|
||||||
|
, mkDerivation
|
||||||
|
, fetchurl
|
||||||
|
, cmake
|
||||||
|
, extra-cmake-modules
|
||||||
|
, qtbase
|
||||||
|
, kactivities
|
||||||
|
}:
|
||||||
|
mkDerivation {
|
||||||
|
|
||||||
|
name = "kapptemplate";
|
||||||
|
|
||||||
|
nativeBuildInputs = [ extra-cmake-modules cmake ];
|
||||||
|
|
||||||
|
buildInputs = [ kactivities qtbase ];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "KDE App Code Template Generator";
|
||||||
|
license = licenses.gpl2;
|
||||||
|
homepage = "https://kde.org/applications/en/development/org.kde.kapptemplate";
|
||||||
|
maintainers = [ maintainers.shamilton ];
|
||||||
|
platforms = platforms.linux;
|
||||||
|
};
|
||||||
|
}
|
|
@ -20528,7 +20528,7 @@ in
|
||||||
|
|
||||||
inherit (kdeApplications)
|
inherit (kdeApplications)
|
||||||
akonadi akregator ark dolphin dragon elisa ffmpegthumbs filelight gwenview k3b
|
akonadi akregator ark dolphin dragon elisa ffmpegthumbs filelight gwenview k3b
|
||||||
kaddressbook kate kcachegrind kcalc kcharselect kcolorchooser kdenlive kdf kdialog
|
kaddressbook kapptemplate kate kcachegrind kcalc kcharselect kcolorchooser kdenlive kdf kdialog
|
||||||
keditbookmarks kfind kget kgpg khelpcenter kig kleopatra kmail kmix kmplot kolourpaint kompare konsole yakuake
|
keditbookmarks kfind kget kgpg khelpcenter kig kleopatra kmail kmix kmplot kolourpaint kompare konsole yakuake
|
||||||
kpkpass kitinerary kontact korganizer krdc krfb ksystemlog ktouch kwalletmanager marble minuet okular spectacle;
|
kpkpass kitinerary kontact korganizer krdc krfb ksystemlog ktouch kwalletmanager marble minuet okular spectacle;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue