422ee37e52
- Update from Applications 16.04.2 to 16.04.3. - Remove the version number from the directory storing the Applications Nix expressions. It is not necessary to version the Nix expressions now that we keep only one version in Nixpkgs. - Fix a bug in generate-kde-applications.sh which prevented it from finding its helper script. - Automatically redirect the output of generate-kde-applications.sh to make the update script even easier to use.
62 lines
2.0 KiB
Nix
62 lines
2.0 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 stdenv lib;
|
|
inherit debug srcs;
|
|
};
|
|
|
|
kdelibs = callPackage ./kdelibs { inherit (pkgs) attica phonon; };
|
|
|
|
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 {};
|
|
gpgmepp = callPackage ./gpgmepp.nix {};
|
|
gwenview = callPackage ./gwenview.nix {};
|
|
kate = callPackage ./kate.nix {};
|
|
kcalc = callPackage ./kcalc.nix {};
|
|
kcolorchooser = callPackage ./kcolorchooser.nix {};
|
|
kdegraphics-thumbnailers = callPackage ./kdegraphics-thumbnailers.nix {};
|
|
kdenetwork-filesharing = callPackage ./kdenetwork-filesharing.nix {};
|
|
kgpg = callPackage ./kgpg.nix { inherit (pkgs.kde4) kdepimlibs; };
|
|
khelpcenter = callPackage ./khelpcenter.nix {};
|
|
kio-extras = callPackage ./kio-extras.nix {};
|
|
kompare = callPackage ./kompare.nix {};
|
|
konsole = callPackage ./konsole.nix {};
|
|
libkdcraw = callPackage ./libkdcraw.nix {};
|
|
libkexiv2 = callPackage ./libkexiv2.nix {};
|
|
libkipi = callPackage ./libkipi.nix {};
|
|
libkomparediff2 = callPackage ./libkomparediff2.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; });
|
|
};
|
|
|
|
in packages
|