xlockmore: clean configure flags and add Xinerama and DPMS support
Close #9391.
This commit is contained in:
parent
77f18a152b
commit
4ce182c736
@ -1,4 +1,5 @@
|
|||||||
{ stdenv, fetchurl, pam ? null, x11 }:
|
{ stdenv, lib, fetchurl, pam ? null, autoreconfHook
|
||||||
|
, libX11, libXext, libXinerama, libXdmcp, libXt }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
|
|
||||||
@ -9,37 +10,26 @@ stdenv.mkDerivation rec {
|
|||||||
};
|
};
|
||||||
|
|
||||||
# Optionally, it can use GTK+.
|
# Optionally, it can use GTK+.
|
||||||
buildInputs = [ pam x11 ];
|
buildInputs = [ pam libX11 libXext libXinerama libXdmcp libXt ];
|
||||||
|
|
||||||
|
nativeBuildInputs = [ autoreconfHook ];
|
||||||
|
|
||||||
# Don't try to install `xlock' setuid. Password authentication works
|
# Don't try to install `xlock' setuid. Password authentication works
|
||||||
# fine via PAM without super user privileges.
|
# fine via PAM without super user privileges.
|
||||||
configureFlags =
|
configureFlags =
|
||||||
" --with-crypt"
|
[ "--disable-setuid"
|
||||||
+ " --enable-appdefaultdir=$out/share/X11/app-defaults"
|
] ++ (lib.optional (pam != null) "--enable-pam");
|
||||||
+ " --disable-setuid"
|
|
||||||
+ " --without-editres"
|
|
||||||
+ " --without-xpm"
|
|
||||||
+ " --without-gltt"
|
|
||||||
+ " --without-ttf"
|
|
||||||
+ " --without-ftgl"
|
|
||||||
+ " --without-freetype"
|
|
||||||
+ " --without-opengl"
|
|
||||||
+ " --without-mesa"
|
|
||||||
+ " --without-dtsaver"
|
|
||||||
+ " --without-ext"
|
|
||||||
+ " --without-dpms"
|
|
||||||
+ " --without-xinerama"
|
|
||||||
+ " --without-rplay"
|
|
||||||
+ " --without-nas"
|
|
||||||
+ " --without-gtk2"
|
|
||||||
+ " --without-gtk"
|
|
||||||
+ (if pam != null then " --enable-pam --enable-bad-pam" else " --disable-pam");
|
|
||||||
|
|
||||||
preConfigure = ''
|
postPatch =
|
||||||
configureFlags+=" --enable-appdefaultdir=$out/share/X11/app-defaults"
|
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"
|
||||||
|
'';
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with lib; {
|
||||||
description = "Screen locker for the X Window System";
|
description = "Screen locker for the X Window System";
|
||||||
homepage = http://www.tux.org/~bagleyd/xlockmore.html;
|
homepage = http://www.tux.org/~bagleyd/xlockmore.html;
|
||||||
license = licenses.gpl2;
|
license = licenses.gpl2;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user