aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/applications/kde/kapptemplate.nix
blob: a5e211318a26c396ed60ebdcb97064e17ab729aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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;
  };
}