kdepim-runtime: init at 17.04.0
This commit is contained in:
parent
5e860b0461
commit
d47e75a460
@ -79,6 +79,7 @@ let
|
|||||||
kdegraphics-thumbnailers = callPackage ./kdegraphics-thumbnailers.nix {};
|
kdegraphics-thumbnailers = callPackage ./kdegraphics-thumbnailers.nix {};
|
||||||
kdenetwork-filesharing = callPackage ./kdenetwork-filesharing.nix {};
|
kdenetwork-filesharing = callPackage ./kdenetwork-filesharing.nix {};
|
||||||
kdenlive = callPackage ./kdenlive.nix {};
|
kdenlive = callPackage ./kdenlive.nix {};
|
||||||
|
kdepim-runtime = callPackage ./kdepim-runtime.nix {};
|
||||||
kdf = callPackage ./kdf.nix {};
|
kdf = callPackage ./kdf.nix {};
|
||||||
kgpg = callPackage ./kgpg.nix {};
|
kgpg = callPackage ./kgpg.nix {};
|
||||||
khelpcenter = callPackage ./khelpcenter.nix {};
|
khelpcenter = callPackage ./khelpcenter.nix {};
|
||||||
|
25
pkgs/applications/kde/kdepim-runtime.nix
Normal file
25
pkgs/applications/kde/kdepim-runtime.nix
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
{
|
||||||
|
mkDerivation, lib, kdepimTeam,
|
||||||
|
extra-cmake-modules, kdoctools,
|
||||||
|
shared_mime_info,
|
||||||
|
akonadi, akonadi-calendar, akonadi-contacts, akonadi-mime, akonadi-notes,
|
||||||
|
kalarmcal, kcalutils, kcontacts, kdav, kdelibs4support, kidentitymanagement,
|
||||||
|
kimap, kmailtransport, kmbox, kmime, knotifications, knotifyconfig,
|
||||||
|
qtwebengine,
|
||||||
|
}:
|
||||||
|
|
||||||
|
mkDerivation {
|
||||||
|
name = "kdepim-runtime";
|
||||||
|
meta = {
|
||||||
|
license = with lib.licenses; [ gpl2 lgpl21 fdl12 ];
|
||||||
|
maintainers = kdepimTeam;
|
||||||
|
};
|
||||||
|
nativeBuildInputs = [ extra-cmake-modules kdoctools shared_mime_info ];
|
||||||
|
buildInputs = [
|
||||||
|
akonadi akonadi-calendar akonadi-contacts akonadi-mime akonadi-notes
|
||||||
|
kalarmcal kcalutils kcontacts kdav kdelibs4support kidentitymanagement kimap
|
||||||
|
kmailtransport kmbox kmime knotifications knotifyconfig qtwebengine
|
||||||
|
];
|
||||||
|
# Attempts to build some files before dependencies have been generated
|
||||||
|
enableParallelBuilding = false;
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user