2009-11-18 01:39:59 -08:00
|
|
|
{ stdenv, fetchurl }:
|
|
|
|
|
2010-09-07 01:02:36 -07:00
|
|
|
stdenv.mkDerivation rec {
|
2009-11-18 01:39:59 -08:00
|
|
|
name = "uucp-1.07";
|
|
|
|
|
2008-04-11 02:27:18 -07:00
|
|
|
src = fetchurl {
|
2010-09-07 01:02:36 -07:00
|
|
|
url = "mirror://gnu/uucp/${name}.tar.gz";
|
2008-04-11 02:27:18 -07:00
|
|
|
sha256 = "0b5nhl9vvif1w3wdipjsk8ckw49jj1w85xw1mmqi3zbcpazia306";
|
|
|
|
};
|
|
|
|
|
2016-02-26 09:38:15 -08:00
|
|
|
hardeningDisable = [ "format" ];
|
2010-09-07 01:02:36 -07:00
|
|
|
|
2017-06-16 05:11:02 -07:00
|
|
|
prePatch = ''
|
2017-06-17 02:44:33 -07:00
|
|
|
# do not set sticky bit in nix store
|
2017-06-16 05:11:02 -07:00
|
|
|
substituteInPlace Makefile.in \
|
|
|
|
--replace 4555 0555
|
|
|
|
sed -i '/chown $(OWNER)/d' Makefile.in
|
|
|
|
'';
|
|
|
|
|
2008-04-11 02:27:18 -07:00
|
|
|
meta = {
|
|
|
|
description = "Unix-unix cp over serial line, also includes cu program";
|
2010-09-07 01:02:36 -07:00
|
|
|
|
|
|
|
longDescription =
|
|
|
|
'' Taylor UUCP is a free implementation of UUCP and is the standard
|
|
|
|
UUCP used on the GNU system. If you don't know what UUCP is chances
|
|
|
|
are, nowadays, that you won't need it. If you do need it, you've
|
|
|
|
just found one of the finest UUCP implementations available.
|
|
|
|
'';
|
|
|
|
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://www.gnu.org/software/uucp/uucp.html";
|
2010-09-07 01:02:36 -07:00
|
|
|
|
2014-06-18 21:19:00 -07:00
|
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
2010-09-07 01:02:36 -07:00
|
|
|
|
|
|
|
platforms = stdenv.lib.platforms.all;
|
2013-08-16 14:44:33 -07:00
|
|
|
maintainers = [ ];
|
2008-04-11 02:27:18 -07:00
|
|
|
};
|
|
|
|
}
|