nixpkgs/pkgs/desktops/mate/mate-screensaver/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

62 lines
1.2 KiB
Nix
Raw Normal View History

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