nixpkgs/pkgs/applications/kde/kapptemplate.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
487 B
Nix
Raw Normal View History

2020-06-08 12:25:16 +00:00
{ lib
, mkDerivation
, cmake
, extra-cmake-modules
, qtbase
, kactivities
}:
mkDerivation {
2020-12-24 23:05:07 +00:00
pname = "kapptemplate";
2020-06-08 12:25:16 +00:00
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;
};
}