mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-22 14:45:27 +00:00
incidenceeditor: init at 17.04.0
This commit is contained in:
parent
95eee6b49b
commit
c3101965d4
|
@ -69,6 +69,7 @@ let
|
|||
filelight = callPackage ./filelight.nix {};
|
||||
grantleetheme = callPackage ./grantleetheme {};
|
||||
gwenview = callPackage ./gwenview.nix {};
|
||||
incidenceeditor = callPackage ./incidenceeditor.nix {};
|
||||
k3b = callPackage ./k3b.nix {};
|
||||
kaddressbook = callPackage ./kaddressbook.nix {};
|
||||
kalarmcal = callPackage ./kalarmcal.nix {};
|
||||
|
|
20
pkgs/applications/kde/incidenceeditor.nix
Normal file
20
pkgs/applications/kde/incidenceeditor.nix
Normal file
|
@ -0,0 +1,20 @@
|
|||
{
|
||||
mkDerivation, lib, kdepimTeam,
|
||||
extra-cmake-modules, kdoctools,
|
||||
akonadi, akonadi-mime, calendarsupport, eventviews, kdepim-apps-libs,
|
||||
kdiagram, kldap, kmime, qtbase,
|
||||
}:
|
||||
|
||||
mkDerivation {
|
||||
name = "incidenceeditor";
|
||||
meta = {
|
||||
license = with lib.licenses; [ gpl2 lgpl21 fdl12 ];
|
||||
maintainers = kdepimTeam;
|
||||
};
|
||||
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
|
||||
buildInputs = [
|
||||
akonadi akonadi-mime calendarsupport eventviews kdepim-apps-libs kdiagram
|
||||
kldap kmime qtbase
|
||||
];
|
||||
outputs = [ "out" "dev" ];
|
||||
}
|
Loading…
Reference in a new issue