Update physlock to a more current version which supports PAM and
systemd-logind. Amongst others, this should work now with the slim
login manager without any additional configuration, because it does
not rely on the utmp mechanism anymore.
(cherry picked from commit ae87a30a83)
28 lines
715 B
Nix
28 lines
715 B
Nix
{ stdenv, fetchFromGitHub, pam, systemd }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "11-dev";
|
|
name = "physlock-v${version}";
|
|
src = fetchFromGitHub {
|
|
owner = "muennich";
|
|
repo = "physlock";
|
|
rev = "31cc383afc661d44b6adb13a7a5470169753608f";
|
|
sha256 = "0j6v8li3vw9y7vwh9q9mk1n1cnwlcy3bgr1jgw5gcv2am2yi4vx3";
|
|
};
|
|
|
|
buildInputs = [ pam systemd ];
|
|
|
|
preConfigure = ''
|
|
substituteInPlace Makefile \
|
|
--replace /usr/local $out \
|
|
--replace "-m 4755 -o root -g root" ""
|
|
'';
|
|
|
|
makeFlags = "SESSION=systemd";
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "A secure suspend/hibernate-friendly alternative to `vlock -an`";
|
|
license = licenses.gpl2;
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|