python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / misc / uucp / default.nix
blob443c4b10457ee1be4a4a97400c04be892b4880bc
1 { lib, stdenv, fetchurl }:
3 stdenv.mkDerivation rec {
4   pname = "uucp";
5   version = "1.07";
7   src = fetchurl {
8     url = "mirror://gnu/uucp/uucp-${version}.tar.gz";
9     sha256 = "0b5nhl9vvif1w3wdipjsk8ckw49jj1w85xw1mmqi3zbcpazia306";
10   };
12   hardeningDisable = [ "format" ];
14   prePatch = ''
15     # do not set sticky bit in nix store
16     substituteInPlace Makefile.in \
17       --replace 4555 0555
18     sed -i '/chown $(OWNER)/d' Makefile.in
19   '';
21   meta = {
22     description = "Unix-unix cp over serial line, also includes cu program";
24     longDescription =
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.
29       '';
31     homepage = "https://www.gnu.org/software/uucp/uucp.html";
33     license = lib.licenses.gpl2Plus;
35     platforms = lib.platforms.all;
36     maintainers = [ ];
37   };