forked from mirrors/nixpkgs
pim-sieve-editor: init at 17.04.0
This commit is contained in:
parent
cf2d844cc2
commit
6caaa1fc48
|
@ -115,6 +115,7 @@ let
|
|||
okteta = callPackage ./okteta.nix {};
|
||||
okular = callPackage ./okular.nix {};
|
||||
pimcommon = callPackage ./pimcommon.nix {};
|
||||
pim-sieve-editor = callPackage ./pim-sieve-editor.nix {};
|
||||
print-manager = callPackage ./print-manager.nix {};
|
||||
spectacle = callPackage ./spectacle.nix {};
|
||||
|
||||
|
|
19
pkgs/applications/kde/pim-sieve-editor.nix
Normal file
19
pkgs/applications/kde/pim-sieve-editor.nix
Normal file
|
@ -0,0 +1,19 @@
|
|||
{
|
||||
mkDerivation, lib, kdepimTeam,
|
||||
extra-cmake-modules, kdoctools,
|
||||
kdbusaddons, kcrash, kbookmarks, kiconthemes, kio, kpimtextedit,
|
||||
kmailtransport, pimcommon, libksieve
|
||||
}:
|
||||
|
||||
mkDerivation {
|
||||
name = "pim-sieve-editor";
|
||||
meta = {
|
||||
license = with lib.licenses; [ gpl2 lgpl21 fdl12 ];
|
||||
maintainers = kdepimTeam;
|
||||
};
|
||||
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
|
||||
buildInputs = [
|
||||
kdbusaddons kcrash kbookmarks kiconthemes kio kpimtextedit kmailtransport
|
||||
pimcommon libksieve
|
||||
];
|
||||
}
|
Loading…
Reference in a new issue