Luke Granger-Brown
57725ef3ec
git-subtree-dir: third_party/nixpkgs git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
24 lines
521 B
Nix
24 lines
521 B
Nix
{ lib
|
|
, mkDerivation
|
|
, cmake
|
|
, extra-cmake-modules
|
|
, qtbase
|
|
, kactivities
|
|
}:
|
|
mkDerivation {
|
|
|
|
pname = "kapptemplate";
|
|
|
|
nativeBuildInputs = [ extra-cmake-modules cmake ];
|
|
|
|
buildInputs = [ kactivities qtbase ];
|
|
|
|
meta = with lib; {
|
|
description = "KDE App Code Template Generator";
|
|
mainProgram = "kapptemplate";
|
|
license = licenses.gpl2;
|
|
homepage = "https://kde.org/applications/en/development/org.kde.kapptemplate";
|
|
maintainers = [ maintainers.shamilton ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|