2015-08-18 01:51:27 +02:00
|
|
|
{ stdenv, lib, fetchurl, pam ? null, autoreconfHook
|
|
|
|
, libX11, libXext, libXinerama, libXdmcp, libXt }:
|
2008-02-15 11:40:20 +01:00
|
|
|
|
2009-09-22 22:16:38 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2017-08-27 03:47:42 +02:00
|
|
|
name = "xlockmore-5.55";
|
2008-02-15 11:40:20 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2016-11-17 22:23:55 +01:00
|
|
|
url = "http://sillycycle.com/xlock/${name}.tar.xz";
|
2017-08-27 03:47:42 +02:00
|
|
|
sha256 = "1y3f76rq2nd10fgi2rx81aj6pijglmm661vjsxi05hpg35dzmwfl";
|
2016-11-17 22:23:55 +01:00
|
|
|
curlOpts = "--user-agent 'Mozilla/5.0'";
|
2008-02-15 11:40:20 +01:00
|
|
|
};
|
|
|
|
|
2012-04-06 20:56:00 +02:00
|
|
|
# Optionally, it can use GTK+.
|
2015-08-18 01:51:27 +02:00
|
|
|
buildInputs = [ pam libX11 libXext libXinerama libXdmcp libXt ];
|
|
|
|
|
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
2008-02-15 11:40:20 +01:00
|
|
|
|
2012-04-06 20:56:00 +02:00
|
|
|
# Don't try to install `xlock' setuid. Password authentication works
|
|
|
|
# fine via PAM without super user privileges.
|
2009-09-22 22:16:38 +02:00
|
|
|
configureFlags =
|
2015-08-18 01:51:27 +02:00
|
|
|
[ "--disable-setuid"
|
|
|
|
] ++ (lib.optional (pam != null) "--enable-pam");
|
2008-02-15 11:40:20 +01:00
|
|
|
|
2015-08-18 01:51:27 +02:00
|
|
|
postPatch =
|
|
|
|
let makePath = p: lib.concatMapStringsSep " " (x: x + "/" + p) buildInputs;
|
|
|
|
inputs = "${makePath "lib"} ${makePath "include"}";
|
|
|
|
in ''
|
|
|
|
sed -i 's,\(for ac_dir in\),\1 ${inputs},' configure.ac
|
|
|
|
sed -i 's,/usr/,/no-such-dir/,g' configure.ac
|
|
|
|
configureFlags+=" --enable-appdefaultdir=$out/share/X11/app-defaults"
|
|
|
|
'';
|
2014-11-10 12:46:36 +01:00
|
|
|
|
2015-08-18 01:51:27 +02:00
|
|
|
meta = with lib; {
|
2013-10-06 11:49:53 +02:00
|
|
|
description = "Screen locker for the X Window System";
|
2017-11-11 17:36:33 +01:00
|
|
|
homepage = http://sillycycle.com/xlockmore.html;
|
2014-11-10 12:46:36 +01:00
|
|
|
license = licenses.gpl2;
|
|
|
|
maintainers = with maintainers; [ pSub ];
|
|
|
|
platforms = platforms.linux;
|
2008-02-15 11:40:20 +01:00
|
|
|
};
|
|
|
|
}
|