libcgroup: do not set suid bit in nix store

This commit is contained in:
Franz Pletz 2017-06-25 21:18:00 +02:00
parent 994998e475
commit b788956239
No known key found for this signature in database
GPG key ID: 846FDED7792617B4

View file

@ -11,6 +11,11 @@ stdenv.mkDerivation rec {
buildInputs = [ pam yacc flex ];
postPatch = ''
substituteInPlace src/tools/Makefile.in \
--replace 'chmod u+s' 'chmod +x'
'';
meta = {
description = "Library and tools to manage Linux cgroups";
homepage = "http://libcg.sourceforge.net/";