pim-sieve-editor: init at 17.04.0

+20
+1
pkgs/applications/kde/default.nix
··· 115 115 okteta = callPackage ./okteta.nix {}; 116 116 okular = callPackage ./okular.nix {}; 117 117 pimcommon = callPackage ./pimcommon.nix {}; 118 + pim-sieve-editor = callPackage ./pim-sieve-editor.nix {}; 118 119 print-manager = callPackage ./print-manager.nix {}; 119 120 spectacle = callPackage ./spectacle.nix {}; 120 121
+19
pkgs/applications/kde/pim-sieve-editor.nix
··· 1 + { 2 + mkDerivation, lib, kdepimTeam, 3 + extra-cmake-modules, kdoctools, 4 + kdbusaddons, kcrash, kbookmarks, kiconthemes, kio, kpimtextedit, 5 + kmailtransport, pimcommon, libksieve 6 + }: 7 + 8 + mkDerivation { 9 + name = "pim-sieve-editor"; 10 + meta = { 11 + license = with lib.licenses; [ gpl2 lgpl21 fdl12 ]; 12 + maintainers = kdepimTeam; 13 + }; 14 + nativeBuildInputs = [ extra-cmake-modules kdoctools ]; 15 + buildInputs = [ 16 + kdbusaddons kcrash kbookmarks kiconthemes kio kpimtextedit kmailtransport 17 + pimcommon libksieve 18 + ]; 19 + }