1 { lib, stdenv, fetchurl }:
3 stdenv.mkDerivation rec {
8 url = "mirror://gnu/uucp/uucp-${version}.tar.gz";
9 sha256 = "0b5nhl9vvif1w3wdipjsk8ckw49jj1w85xw1mmqi3zbcpazia306";
12 hardeningDisable = [ "format" ];
15 # do not set sticky bit in nix store
16 substituteInPlace Makefile.in \
18 sed -i '/chown $(OWNER)/d' Makefile.in
22 description = "Unix-unix cp over serial line, also includes cu program";
25 '' Taylor UUCP is a free implementation of UUCP and is the standard
26 UUCP used on the GNU system. If you don't know what UUCP is chances
27 are, nowadays, that you won't need it. If you do need it, you've
28 just found one of the finest UUCP implementations available.
31 homepage = "https://www.gnu.org/software/uucp/uucp.html";
33 license = lib.licenses.gpl2Plus;
35 platforms = lib.platforms.all;