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

41 lines
981 B
Nix
Raw Normal View History

{ stdenv, fetchurl, pkgconfig, intltool, gtk3, dbus-glib, libXScrnSaver, libnotify, pam, systemd, mate, wrapGAppsHook }:
2017-12-31 14:11:14 +00:00
stdenv.mkDerivation rec {
name = "mate-screensaver-${version}";
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 16:06:03 +01:00
version = "1.20.1";
2017-12-31 14:11:14 +00:00
src = fetchurl {
url = "http://pub.mate-desktop.org/releases/${mate.getRelease version}/${name}.tar.xz";
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 16:06:03 +01:00
sha256 = "1mcr2915wymwjy55m2z0l6b9dszabbv0my0xxsa1fb8xkr4hk4qh";
2017-12-31 14:11:14 +00:00
};
nativeBuildInputs = [
pkgconfig
intltool
wrapGAppsHook
];
buildInputs = [
gtk3
dbus-glib
2017-12-31 14:11:14 +00:00
libXScrnSaver
libnotify
pam
systemd
mate.mate-desktop
mate.mate-menus
2017-12-31 14:11:14 +00:00
];
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 ];
};
}