46b1cc4f75
New packages: - akonadi - akonadi-contacts - akonadi-mime - kcontacts - kdegraphics-mobipocket - kmime Removed packages: - gpgmepp: now part of gpgme Notable changes: - kgpg: ported from Qt 4 and kdelibs to Qt 5 and Frameworks - okular: ported from Qt 4 and kdelibs to Qt 5 and Frameworks
80 lines
2.8 KiB
Nix
80 lines
2.8 KiB
Nix
/*
|
|
|
|
# Updates
|
|
|
|
1. Update the URL in `maintainers/scripts/generate-kde-applications.sh` and
|
|
run that script from the top of the Nixpkgs tree.
|
|
2. Check that the new packages build correctly.
|
|
3. Commit the changes and open a pull request.
|
|
|
|
*/
|
|
|
|
{ pkgs, debug ? false }:
|
|
|
|
let
|
|
|
|
inherit (pkgs) lib stdenv;
|
|
|
|
mirror = "mirror://kde";
|
|
srcs = import ./srcs.nix { inherit (pkgs) fetchurl; inherit mirror; };
|
|
|
|
packages = self: with self; {
|
|
|
|
kdeApp = import ./kde-app.nix {
|
|
inherit lib;
|
|
inherit debug srcs;
|
|
inherit kdeDerivation;
|
|
};
|
|
|
|
kdelibs = callPackage ./kdelibs {
|
|
inherit (srcs.kdelibs) src version;
|
|
inherit (pkgs) attica phonon;
|
|
};
|
|
|
|
akonadi = callPackage ./akonadi.nix {};
|
|
akonadi-contacts = callPackage ./akonadi-contacts.nix {};
|
|
akonadi-mime = callPackage ./akonadi-mime.nix {};
|
|
ark = callPackage ./ark/default.nix {};
|
|
baloo-widgets = callPackage ./baloo-widgets.nix {};
|
|
dolphin = callPackage ./dolphin.nix {};
|
|
dolphin-plugins = callPackage ./dolphin-plugins.nix {};
|
|
ffmpegthumbs = callPackage ./ffmpegthumbs.nix {
|
|
ffmpeg = pkgs.ffmpeg_2;
|
|
};
|
|
filelight = callPackage ./filelight.nix {};
|
|
gwenview = callPackage ./gwenview.nix {};
|
|
kate = callPackage ./kate.nix {};
|
|
kdenlive = callPackage ./kdenlive.nix {};
|
|
kcalc = callPackage ./kcalc.nix {};
|
|
kcolorchooser = callPackage ./kcolorchooser.nix {};
|
|
kcontacts = callPackage ./kcontacts.nix {};
|
|
kdegraphics-mobipocket = callPackage ./kdegraphics-mobipocket.nix {};
|
|
kdegraphics-thumbnailers = callPackage ./kdegraphics-thumbnailers.nix {};
|
|
kdenetwork-filesharing = callPackage ./kdenetwork-filesharing.nix {};
|
|
kdf = callPackage ./kdf.nix {};
|
|
kgpg = callPackage ./kgpg.nix {};
|
|
khelpcenter = callPackage ./khelpcenter.nix {};
|
|
kio-extras = callPackage ./kio-extras.nix {};
|
|
kmime = callPackage ./kmime.nix {};
|
|
kompare = callPackage ./kompare.nix {};
|
|
konsole = callPackage ./konsole.nix {};
|
|
kwalletmanager = callPackage ./kwalletmanager.nix {};
|
|
libkdcraw = callPackage ./libkdcraw.nix {};
|
|
libkexiv2 = callPackage ./libkexiv2.nix {};
|
|
libkipi = callPackage ./libkipi.nix {};
|
|
libkomparediff2 = callPackage ./libkomparediff2.nix {};
|
|
marble = callPackage ./marble.nix {};
|
|
okular = callPackage ./okular.nix {};
|
|
print-manager = callPackage ./print-manager.nix {};
|
|
spectacle = callPackage ./spectacle.nix {};
|
|
|
|
l10n = pkgs.recurseIntoAttrs (import ./l10n.nix { inherit callPackage lib pkgs; });
|
|
|
|
# External packages
|
|
kipi-plugins = callPackage ../../../applications/graphics/kipi-plugins/5.x.nix {};
|
|
ktorrent = callPackage ../../../applications/networking/p2p/ktorrent/5.nix { };
|
|
libktorrent = callPackage ../../../development/libraries/libktorrent/5.nix { };
|
|
};
|
|
|
|
in packages
|