2021-01-15 10:19:50 +01:00
|
|
|
{ lib, stdenv, fetchurl }:
|
2009-11-18 10:39:59 +01:00
|
|
|
|
2010-09-07 10:02:36 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2009-11-18 10:39:59 +01:00
|
|
|
name = "uucp-1.07";
|
|
|
|
|
2008-04-11 11:27:18 +02:00
|
|
|
src = fetchurl {
|
2010-09-07 10:02:36 +02:00
|
|
|
url = "mirror://gnu/uucp/${name}.tar.gz";
|
2008-04-11 11:27:18 +02:00
|
|
|
sha256 = "0b5nhl9vvif1w3wdipjsk8ckw49jj1w85xw1mmqi3zbcpazia306";
|
|
|
|
};
|
|
|
|
|
2016-02-26 18:38:15 +01:00
|
|
|
hardeningDisable = [ "format" ];
|
2010-09-07 10:02:36 +02:00
|
|
|
|
2017-06-16 14:11:02 +02:00
|
|
|
prePatch = ''
|
2017-06-17 11:44:33 +02:00
|
|
|
# do not set sticky bit in nix store
|
2017-06-16 14:11:02 +02:00
|
|
|
substituteInPlace Makefile.in \
|
|
|
|
--replace 4555 0555
|
|
|
|
sed -i '/chown $(OWNER)/d' Makefile.in
|
|
|
|
'';
|
|
|
|
|
2008-04-11 11:27:18 +02:00
|
|
|
meta = {
|
|
|
|
description = "Unix-unix cp over serial line, also includes cu program";
|
2010-09-07 10:02:36 +02: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-04-01 03:11:51 +02:00
|
|
|
homepage = "https://www.gnu.org/software/uucp/uucp.html";
|
2010-09-07 10:02:36 +02:00
|
|
|
|
2021-01-15 10:19:50 +01:00
|
|
|
license = lib.licenses.gpl2Plus;
|
2010-09-07 10:02:36 +02:00
|
|
|
|
2021-01-15 10:19:50 +01:00
|
|
|
platforms = lib.platforms.all;
|
2013-08-16 23:44:33 +02:00
|
|
|
maintainers = [ ];
|
2008-04-11 11:27:18 +02:00
|
|
|
};
|
|
|
|
}
|