nixpkgs/pkgs/desktops/kde-5/plasma/default.nix

102 lines
3.5 KiB
Nix
Raw Normal View History

/*
2017-02-17 17:04:43 +03:00
# New packages
READ THIS FIRST
This module is for official packages in KDE Plasma 5. All available packages are
listed in `./srcs.nix`, although a few are not yet packaged in Nixpkgs (see
below).
IF YOUR PACKAGE IS NOT LISTED IN `./srcs.nix`, IT DOES NOT GO HERE.
Many of the packages released upstream are not yet built in Nixpkgs due to lack
of demand. To add a Nixpkgs build for an upstream package, copy one of the
existing packages here and modify it as necessary.
# Updates
2017-02-17 17:04:43 +03:00
1. Update the URL in `./fetch.sh`.
2. Run `./maintainers/scripts/fetch-kde-qt.sh pkgs/desktops/kde-5/plasma`
from the top of the Nixpkgs tree.
3. Use `nox-review wip` to check that everything builds.
2017-02-17 17:04:43 +03:00
4. Commit the changes and open a pull request.
*/
2016-04-21 19:01:22 +03:00
{
stdenv, lib, libsForQt5, makeSetupHook, symlinkJoin, fetchurl,
gconf,
debug ? false,
}:
2016-04-21 19:01:22 +03:00
let
mirror = "mirror://kde";
srcs = import ./srcs.nix { inherit fetchurl mirror; };
2016-04-21 19:01:22 +03:00
packages = self: with self; {
plasmaPackage = args:
let
inherit (args) name;
sname = args.sname or name;
inherit (srcs."${sname}") src version;
in libsForQt5.kdeDerivation (args // {
2016-04-21 19:01:22 +03:00
name = "${name}-${version}";
inherit src;
meta = {
license = with lib.licenses; [
lgpl21Plus lgpl3Plus bsd2 mit gpl2Plus gpl3Plus fdl12
];
platforms = lib.platforms.linux;
maintainers = with lib.maintainers; [ ttuegel ];
homepage = "http://www.kde.org";
} // (args.meta or {});
});
bluedevil = callPackage ./bluedevil.nix {};
breeze-gtk = callPackage ./breeze-gtk.nix {};
breeze-qt4 = callPackage ./breeze-qt4.nix {
inherit (srcs.breeze) src version;
};
2016-04-21 19:01:22 +03:00
breeze-qt5 = callPackage ./breeze-qt5.nix {};
2016-08-04 18:15:32 +03:00
breeze-grub = callPackage ./breeze-grub.nix {};
2016-08-04 18:00:12 +03:00
breeze-plymouth = callPackage ./breeze-plymouth {};
2016-04-21 23:59:20 +03:00
kactivitymanagerd = callPackage ./kactivitymanagerd.nix {};
2016-04-21 19:01:22 +03:00
kde-cli-tools = callPackage ./kde-cli-tools.nix {};
kde-gtk-config = callPackage ./kde-gtk-config {};
kdecoration = callPackage ./kdecoration.nix {};
kdeplasma-addons = callPackage ./kdeplasma-addons.nix {};
kgamma5 = callPackage ./kgamma5.nix {};
khotkeys = callPackage ./khotkeys.nix {};
kinfocenter = callPackage ./kinfocenter.nix {};
kmenuedit = callPackage ./kmenuedit.nix {};
kscreen = callPackage ./kscreen.nix {};
kscreenlocker = callPackage ./kscreenlocker.nix {};
ksshaskpass = callPackage ./ksshaskpass.nix {};
ksysguard = callPackage ./ksysguard.nix {};
2016-08-10 17:01:47 +03:00
kwallet-pam = callPackage ./kwallet-pam.nix {};
2016-07-10 12:33:21 +03:00
kwayland-integration = callPackage ./kwayland-integration.nix {};
2016-04-21 19:01:22 +03:00
kwin = callPackage ./kwin {};
kwrited = callPackage ./kwrited.nix {};
2016-04-21 22:36:56 +03:00
libkscreen = callPackage ./libkscreen.nix {};
2016-04-21 19:01:22 +03:00
libksysguard = callPackage ./libksysguard {};
milou = callPackage ./milou.nix {};
oxygen = callPackage ./oxygen.nix {};
plasma-desktop = callPackage ./plasma-desktop {};
2016-06-07 00:08:33 +03:00
plasma-integration = callPackage ./plasma-integration.nix {};
2016-04-21 19:01:22 +03:00
plasma-nm = callPackage ./plasma-nm {};
2016-10-05 05:31:47 +03:00
plasma-pa = callPackage ./plasma-pa.nix {
inherit gconf;
2016-10-05 05:31:47 +03:00
};
plasma-workspace = callPackage ./plasma-workspace {};
2016-04-21 19:01:22 +03:00
plasma-workspace-wallpapers = callPackage ./plasma-workspace-wallpapers.nix {};
polkit-kde-agent = callPackage ./polkit-kde-agent.nix {};
powerdevil = callPackage ./powerdevil.nix {};
startkde = callPackage ./startkde {};
systemsettings = callPackage ./systemsettings.nix {};
};
in lib.makeScope libsForQt5.newScope packages