2020-06-08 14:25:16 +02:00
|
|
|
{ lib
|
|
|
|
, mkDerivation
|
|
|
|
, cmake
|
|
|
|
, extra-cmake-modules
|
|
|
|
, qtbase
|
|
|
|
, kactivities
|
|
|
|
}:
|
|
|
|
mkDerivation {
|
|
|
|
|
2020-12-25 00:05:07 +01:00
|
|
|
pname = "kapptemplate";
|
2020-06-08 14:25:16 +02:00
|
|
|
|
|
|
|
nativeBuildInputs = [ extra-cmake-modules cmake ];
|
|
|
|
|
|
|
|
buildInputs = [ kactivities qtbase ];
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "KDE App Code Template Generator";
|
2024-03-19 03:14:51 +01:00
|
|
|
mainProgram = "kapptemplate";
|
2020-06-08 14:25:16 +02:00
|
|
|
license = licenses.gpl2;
|
|
|
|
homepage = "https://kde.org/applications/en/development/org.kde.kapptemplate";
|
|
|
|
maintainers = [ maintainers.shamilton ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|