Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 31 lines 548 B view raw
1{ 2 lib, 3 mkDerivation, 4 cmake, 5 extra-cmake-modules, 6 qtbase, 7 kactivities, 8}: 9mkDerivation { 10 11 pname = "kapptemplate"; 12 13 nativeBuildInputs = [ 14 extra-cmake-modules 15 cmake 16 ]; 17 18 buildInputs = [ 19 kactivities 20 qtbase 21 ]; 22 23 meta = with lib; { 24 description = "KDE App Code Template Generator"; 25 mainProgram = "kapptemplate"; 26 license = licenses.gpl2; 27 homepage = "https://kde.org/applications/en/development/org.kde.kapptemplate"; 28 maintainers = [ maintainers.shamilton ]; 29 platforms = platforms.linux; 30 }; 31}