3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/desktops/mate/mate-screensaver/default.nix

47 lines
1.1 KiB
Nix
Raw Normal View History

2021-04-02 20:58:16 +01:00
{ lib, stdenv, fetchurl, pkg-config, gettext, gtk3, dbus-glib, libXScrnSaver, libnotify, libxml2, pam, systemd, mate, wrapGAppsHook, mateUpdateScript }:
2017-12-31 14:11:14 +00:00
stdenv.mkDerivation rec {
pname = "mate-screensaver";
version = "1.26.1";
2017-12-31 14:11:14 +00:00
src = fetchurl {
2021-01-15 13:21:58 +00:00
url = "https://pub.mate-desktop.org/releases/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
sha256 = "T72yHqSlnqjeM+qb93bYaXU+SSlWBGZMMOIg4JZZuLw=";
2017-12-31 14:11:14 +00:00
};
nativeBuildInputs = [
2021-01-17 02:21:50 +00:00
pkg-config
gettext
libxml2 # provides xmllint
2017-12-31 14:11:14 +00:00
wrapGAppsHook
];
buildInputs = [
gtk3
dbus-glib
2017-12-31 14:11:14 +00:00
libXScrnSaver
libnotify
pam
systemd
mate.mate-desktop
mate.mate-menus
mate.mate-panel
2017-12-31 14:11:14 +00:00
];
2018-07-25 22:44:21 +01:00
configureFlags = [ "--without-console-kit" ];
2017-12-31 14:11:14 +00:00
makeFlags = [ "DBUS_SESSION_SERVICE_DIR=$(out)/etc" ];
2017-12-31 14:11:14 +00:00
2020-02-14 21:52:51 +00:00
enableParallelBuilding = true;
2021-04-02 20:58:16 +01:00
passthru.updateScript = mateUpdateScript { inherit pname version; };
meta = with lib; {
2017-12-31 14:11:14 +00:00
description = "Screen saver and locker for the MATE desktop";
homepage = "https://mate-desktop.org";
2017-12-31 14:11:14 +00:00
license = with licenses; [ gpl2Plus lgpl2Plus ];
platforms = platforms.unix;
maintainers = teams.mate.members;
2017-12-31 14:11:14 +00:00
};
}