1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-18 19:51:17 +00:00
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.

64 lines
1.2 KiB
Nix
Raw Normal View History

2022-07-12 12:56:56 +01:00
{ lib
, stdenv
, fetchurl
, pkg-config
, gettext
, gtk3
, dbus-glib
, libXScrnSaver
, libnotify
, libxml2
, mate-desktop
, mate-menus
, mate-panel
2022-07-12 12:56:56 +01:00
, pam
, systemd
, wrapGAppsHook3
2022-07-12 12:56:56 +01:00
, mateUpdateScript
}:
2017-12-31 14:11:14 +00:00
stdenv.mkDerivation rec {
pname = "mate-screensaver";
version = "1.28.0";
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 = "ag8kqPhKL5XhARSrU+Y/1KymiKVf3FA+1lDgpBDj6nA=";
2017-12-31 14:11:14 +00:00
};
nativeBuildInputs = [
2021-01-17 02:21:50 +00:00
pkg-config
gettext
libxml2 # provides xmllint
wrapGAppsHook3
2017-12-31 14:11:14 +00:00
];
buildInputs = [
gtk3
dbus-glib
2017-12-31 14:11:14 +00:00
libXScrnSaver
libnotify
mate-desktop
mate-menus
mate-panel
2017-12-31 14:11:14 +00:00
pam
systemd
];
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;
passthru.updateScript = mateUpdateScript { inherit pname; };
2021-04-02 20:58:16 +01:00
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
};
}