Merge pull request #52329 from Mic92/xsecurelock

xsecurelock: 1.1 -> 1.2
This commit is contained in:
Franz Pletz 2018-12-16 15:19:08 +00:00 committed by GitHub
commit b90e52ea55
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -4,16 +4,18 @@
stdenv.mkDerivation rec {
name = "xsecurelock-${version}";
version = "1.1";
version = "1.2";
src = fetchFromGitHub {
owner = "google";
repo = "xsecurelock";
rev = "v${version}";
sha256 = "0yqp5xhkl9jpjyrmrxbyp7azwxmqc3lxv5lxrjqjaapl3q3096g5";
sha256 = "1vaw2m3yyfazj1x7xdwppmm0ch075q399g5vzrmhhrkzdrs53r1x";
};
nativeBuildInputs = [ autoreconfHook pkgconfig ];
nativeBuildInputs = [
autoreconfHook pkgconfig
];
buildInputs = [
libX11 libXcomposite libXft libXmu pam
apacheHttpd imagemagick pamtester
@ -24,6 +26,12 @@ stdenv.mkDerivation rec {
"--with-xscreensaver=${xscreensaver}/libexec/xscreensaver"
];
preConfigure = ''
cat > version.c <<'EOF'
const char *const git_version = "${version}";
EOF
'';
preInstall = ''
substituteInPlace helpers/saver_blank \
--replace 'protect xset' 'protect ${xset}/bin/xset'