kcalutils: init at 17.04.0

+21
+1
pkgs/applications/kde/default.nix
··· 66 66 kcachegrind = callPackage ./kcachegrind.nix {}; 67 67 kcalc = callPackage ./kcalc.nix {}; 68 68 kcalcore = callPackage ./kcalcore.nix {}; 69 + kcalutils = callPackage ./kcalutils.nix {}; 69 70 kcolorchooser = callPackage ./kcolorchooser.nix {}; 70 71 kcontacts = callPackage ./kcontacts.nix {}; 71 72 kdegraphics-mobipocket = callPackage ./kdegraphics-mobipocket.nix {};
+20
pkgs/applications/kde/kcalutils.nix
··· 1 + { 2 + mkDerivation, lib, kdepimTeam, 3 + extra-cmake-modules, kdoctools, 4 + grantlee5, kcalcore, kconfig, kontactinterface, kcoreaddons, kdelibs4support, 5 + kidentitymanagement, kpimtextedit, 6 + }: 7 + 8 + mkDerivation { 9 + name = "kcalutils"; 10 + meta = { 11 + license = with lib.licenses; [ gpl2 lgpl21 fdl12 ]; 12 + maintainers = kdepimTeam; 13 + }; 14 + nativeBuildInputs = [ extra-cmake-modules kdoctools ]; 15 + buildInputs = [ 16 + grantlee5 kcalcore kconfig kontactinterface kcoreaddons kdelibs4support 17 + kidentitymanagement kpimtextedit 18 + ]; 19 + outputs = [ "out" "dev" ]; 20 + }