3
0
Fork 0
forked from mirrors/nixpkgs

uucp: Don't chown to 'uucp' user, don't set special perms

This commit is contained in:
Will Dietz 2017-06-16 07:11:02 -05:00
parent b6caf10989
commit 5d0a8792a7

View file

@ -10,6 +10,12 @@ stdenv.mkDerivation rec {
hardeningDisable = [ "format" ];
prePatch = ''
substituteInPlace Makefile.in \
--replace 4555 0555
sed -i '/chown $(OWNER)/d' Makefile.in
'';
meta = {
description = "Unix-unix cp over serial line, also includes cu program";