2015-08-17 23:51:27 +00:00
|
|
|
{ stdenv, lib, fetchurl, pam ? null, autoreconfHook
|
|
|
|
, libX11, libXext, libXinerama, libXdmcp, libXt }:
|
2008-02-15 10:40:20 +00:00
|
|
|
|
2009-09-22 20:16:38 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2017-08-27 01:47:42 +00:00
|
|
|
name = "xlockmore-5.55";
|
2008-02-15 10:40:20 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2016-11-17 21:23:55 +00:00
|
|
|
url = "http://sillycycle.com/xlock/${name}.tar.xz";
|
2017-08-27 01:47:42 +00:00
|
|
|
sha256 = "1y3f76rq2nd10fgi2rx81aj6pijglmm661vjsxi05hpg35dzmwfl";
|
2016-11-17 21:23:55 +00:00
|
|
|
curlOpts = "--user-agent 'Mozilla/5.0'";
|
2008-02-15 10:40:20 +00:00
|
|
|
};
|
|
|
|
|
2012-04-06 18:56:00 +00:00
|
|
|
# Optionally, it can use GTK+.
|
2015-08-17 23:51:27 +00:00
|
|
|
buildInputs = [ pam libX11 libXext libXinerama libXdmcp libXt ];
|
|
|
|
|
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
2008-02-15 10:40:20 +00:00
|
|
|
|
2012-04-06 18:56:00 +00:00
|
|
|
# Don't try to install `xlock' setuid. Password authentication works
|
|
|
|
# fine via PAM without super user privileges.
|
2009-09-22 20:16:38 +00:00
|
|
|
configureFlags =
|
2015-08-17 23:51:27 +00:00
|
|
|
[ "--disable-setuid"
|
|
|
|
] ++ (lib.optional (pam != null) "--enable-pam");
|
2008-02-15 10:40:20 +00:00
|
|
|
|
2015-08-17 23:51:27 +00: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 11:46:36 +00:00
|
|
|
|
2018-06-12 23:08:30 +00:00
|
|
|
hardeningDisable = [ "format" ]; # no build output otherwise
|
|
|
|
|
2015-08-17 23:51:27 +00:00
|
|
|
meta = with lib; {
|
2013-10-06 09:49:53 +00:00
|
|
|
description = "Screen locker for the X Window System";
|
2017-11-11 16:36:33 +00:00
|
|
|
homepage = http://sillycycle.com/xlockmore.html;
|
2014-11-10 11:46:36 +00:00
|
|
|
license = licenses.gpl2;
|
|
|
|
maintainers = with maintainers; [ pSub ];
|
|
|
|
platforms = platforms.linux;
|
2008-02-15 10:40:20 +00:00
|
|
|
};
|
|
|
|
}
|