nixpkgs/pkgs/applications/kde/kapptemplate.nix

25 lines
498 B
Nix
Raw Permalink Normal View History

2020-06-08 12:25:16 +00:00
{ lib
, mkDerivation
, fetchurl
, 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;
};
}