2018-08-07 23:16:24 +02:00
|
|
|
{ stdenv, lib, fetchurl, pam ? null, libX11, libXext, libXinerama
|
2021-06-18 10:30:13 +02:00
|
|
|
, libXdmcp, libXt, autoreconfHook }:
|
2008-02-15 11:40:20 +01:00
|
|
|
|
2009-09-22 22:16:38 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2021-08-12 23:00:21 +02:00
|
|
|
pname = "xlockmore";
|
|
|
|
version = "5.66";
|
2008-02-15 11:40:20 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2021-08-12 23:00:21 +02:00
|
|
|
url = "http://sillycycle.com/xlock/xlockmore-${version}.tar.xz";
|
2021-03-10 04:33:16 +01:00
|
|
|
sha256 = "sha256-WXalw2YoKNFFIskOBvKN3PyOV3iP3gjri3pw6e87q3E=";
|
2016-11-17 22:23:55 +01:00
|
|
|
curlOpts = "--user-agent 'Mozilla/5.0'";
|
2008-02-15 11:40:20 +01:00
|
|
|
};
|
|
|
|
|
2019-09-04 00:49:40 +02:00
|
|
|
# Optionally, it can use GTK.
|
2021-06-18 10:30:13 +02:00
|
|
|
buildInputs = [ pam libX11 libXext.dev libXinerama libXdmcp libXt ];
|
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
2015-08-18 01:51:27 +02: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
|
|
|
|
2018-06-13 01:08:30 +02:00
|
|
|
hardeningDisable = [ "format" ]; # no build output otherwise
|
|
|
|
|
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";
|
2020-04-01 03:11:51 +02: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
|
|
|
};
|
|
|
|
}
|