nixpkgs/pkgs/misc/screensavers/vlock/default.nix
aszlig 4007ee974c
vlock: Don't try to install setuid binary
With newer Nix it's (fortunately) no longer possible to create a file
with setuid bits, even though the permissions are fixed later the build
will fail during installPhase already.

I've verified whether the contents of the output path are the same as
before this change and the contents match.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2017-06-22 04:01:27 +02:00

30 lines
667 B
Nix

{ stdenv, fetchurl, pam }:
stdenv.mkDerivation {
name = "vlock-2.2.2";
src = fetchurl
{
url = mirror://debian/pool/main/v/vlock/vlock_2.2.2.orig.tar.gz;
sha256 = "1b9gv7hmlb8swda5bn40lp1yki8b8wv29vdnhcjqfl6ir98551za";
};
prePatch = ''
sed -i -e '/INSTALL/ {
s/-[og] [^ ]*//g; s/4711/755/
}' Makefile modules/Makefile
'';
patches = [ ./eintr.patch ];
configureFlags = "VLOCK_GROUP=root ROOT_GROUP=root";
buildInputs = [ pam ];
meta = with stdenv.lib; {
description = "Virtual console locking program";
license = licenses.gpl2;
maintainers = [ maintainers.lethalman ];
platforms = platforms.linux;
};
}