depot/third_party/nixpkgs/pkgs/tools/misc/uucp/default.nix
Default email 01ed8ef136 Project import generated by Copybara.
GitOrigin-RevId: 20fc948445a6c22d4e8d5178e9a6bc6e1f5417c8
2022-11-21 19:40:18 +02:00

40 lines
1 KiB
Nix

{ lib, stdenv, fetchurl }:
stdenv.mkDerivation rec {
pname = "uucp";
version = "1.07";
src = fetchurl {
url = "mirror://gnu/uucp/uucp-${version}.tar.gz";
sha256 = "0b5nhl9vvif1w3wdipjsk8ckw49jj1w85xw1mmqi3zbcpazia306";
};
hardeningDisable = [ "format" ];
prePatch = ''
# do not set sticky bit in nix store
substituteInPlace Makefile.in \
--replace 4555 0555
sed -i '/chown $(OWNER)/d' Makefile.in
'';
makeFlags = [ "AR:=$(AR)" ];
meta = {
description = "Unix-unix cp over serial line, also includes cu program";
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.
'';
homepage = "https://www.gnu.org/software/uucp/uucp.html";
license = lib.licenses.gpl2Plus;
platforms = lib.platforms.all;
maintainers = [ ];
};
}