mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
43 lines
1.1 KiB
Nix
43 lines
1.1 KiB
Nix
{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkgconfig
|
|
, libX11, libXcomposite, libXft, libXmu, libXrandr, libXext, libXScrnSaver
|
|
, pam, apacheHttpd, imagemagick, pamtester, xscreensaver, xset }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "xsecurelock";
|
|
version = "1.7.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "google";
|
|
repo = "xsecurelock";
|
|
rev = "v${version}";
|
|
sha256 = "020y2mi4sshc5dghcz37aj5wwizbg6712rzq2a72f8z8m7mnxr5y";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
autoreconfHook pkgconfig
|
|
];
|
|
buildInputs = [
|
|
libX11 libXcomposite libXft libXmu libXrandr libXext libXScrnSaver
|
|
pam apacheHttpd imagemagick pamtester
|
|
];
|
|
|
|
configureFlags = [
|
|
"--with-pam-service-name=login"
|
|
"--with-xscreensaver=${xscreensaver}/libexec/xscreensaver"
|
|
];
|
|
|
|
preConfigure = ''
|
|
cat > version.c <<'EOF'
|
|
const char *const git_version = "${version}";
|
|
EOF
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "X11 screen lock utility with security in mind";
|
|
homepage = "https://github.com/google/xsecurelock";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ fpletz ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|