eventviews: init at 17.04.0

+19
+1
pkgs/applications/kde/default.nix
··· 64 64 calendarsupport = callPackage ./calendarsupport.nix {}; 65 65 dolphin = callPackage ./dolphin.nix {}; 66 66 dolphin-plugins = callPackage ./dolphin-plugins.nix {}; 67 + eventviews = callPackage ./eventviews.nix {}; 67 68 ffmpegthumbs = callPackage ./ffmpegthumbs.nix { }; 68 69 filelight = callPackage ./filelight.nix {}; 69 70 grantleetheme = callPackage ./grantleetheme {};
+18
pkgs/applications/kde/eventviews.nix
··· 1 + { 2 + mkDerivation, lib, kdepimTeam, 3 + extra-cmake-modules, kdoctools, 4 + akonadi, calendarsupport, kcalutils, kdiagram, libkdepim, qtbase, qttools, 5 + }: 6 + 7 + mkDerivation { 8 + name = "eventviews"; 9 + meta = { 10 + license = with lib.licenses; [ gpl2 lgpl21 fdl12 ]; 11 + maintainers = kdepimTeam; 12 + }; 13 + nativeBuildInputs = [ extra-cmake-modules kdoctools ]; 14 + buildInputs = [ 15 + akonadi calendarsupport kcalutils kdiagram libkdepim qtbase qttools 16 + ]; 17 + outputs = [ "out" "dev" ]; 18 + }