about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/kde/kapptemplate.nix
blob: 447b2d009b60448c0f30b61ffb1c40bc71e90fe0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ 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";
    license = licenses.gpl2;
    homepage = "https://kde.org/applications/en/development/org.kde.kapptemplate";
    maintainers = [ maintainers.shamilton ];
    platforms = platforms.linux;
  };
}