nixpkgs/pkgs/desktops/mate/mate-screensaver/default.nix
R. RyanTM 66350c0e18 mate.mate-screensaver: 1.20.0 -> 1.20.1 (#42483)
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools.

This update was made based on information from https://repology.org/metapackage/mate-screensaver/versions.

These checks were done:

- built on NixOS
- /nix/store/yl7p098lzcb2vs4hl4sxwgb0d37agvyd-mate-screensaver-1.20.1/bin/mate-screensaver passed the binary check.
- /nix/store/yl7p098lzcb2vs4hl4sxwgb0d37agvyd-mate-screensaver-1.20.1/bin/mate-screensaver-command passed the binary check.
- Warning: no invocation of /nix/store/yl7p098lzcb2vs4hl4sxwgb0d37agvyd-mate-screensaver-1.20.1/bin/mate-screensaver-preferences had a zero exit code or showed the expected version
- /nix/store/yl7p098lzcb2vs4hl4sxwgb0d37agvyd-mate-screensaver-1.20.1/bin/.mate-screensaver-wrapped passed the binary check.
- /nix/store/yl7p098lzcb2vs4hl4sxwgb0d37agvyd-mate-screensaver-1.20.1/bin/.mate-screensaver-command-wrapped passed the binary check.
- Warning: no invocation of /nix/store/yl7p098lzcb2vs4hl4sxwgb0d37agvyd-mate-screensaver-1.20.1/bin/.mate-screensaver-preferences-wrapped had a zero exit code or showed the expected version
- 4 of 6 passed binary check by having a zero exit code.
- 0 of 6 passed binary check by having the new version present in output.
- found 1.20.1 with grep in /nix/store/yl7p098lzcb2vs4hl4sxwgb0d37agvyd-mate-screensaver-1.20.1
- directory tree listing: https://gist.github.com/b700040ccf6edd3df78a2613f8827d45
- du listing: https://gist.github.com/cb5e756e8dc86af9c065a3b8545355f6
2018-06-27 17:06:03 +02:00

40 lines
981 B
Nix

{ stdenv, fetchurl, pkgconfig, intltool, gtk3, dbus-glib, libXScrnSaver, libnotify, pam, systemd, mate, wrapGAppsHook }:
stdenv.mkDerivation rec {
name = "mate-screensaver-${version}";
version = "1.20.1";
src = fetchurl {
url = "http://pub.mate-desktop.org/releases/${mate.getRelease version}/${name}.tar.xz";
sha256 = "1mcr2915wymwjy55m2z0l6b9dszabbv0my0xxsa1fb8xkr4hk4qh";
};
nativeBuildInputs = [
pkgconfig
intltool
wrapGAppsHook
];
buildInputs = [
gtk3
dbus-glib
libXScrnSaver
libnotify
pam
systemd
mate.mate-desktop
mate.mate-menus
];
configureFlags = "--without-console-kit";
makeFlags = "DBUS_SESSION_SERVICE_DIR=$(out)/etc";
meta = with stdenv.lib; {
description = "Screen saver and locker for the MATE desktop";
homepage = http://mate-desktop.org;
license = with licenses; [ gpl2Plus lgpl2Plus ];
platforms = platforms.unix;
maintainers = [ maintainers.romildo ];
};
}