matomo: 5.2.1 -> 5.2.2 (#376385)
[NixPkgs.git] / pkgs / by-name / uu / uucp / package.nix
blobf94b84b646d662166a88d5162a572d4d60aa5f45
2   lib,
3   stdenv,
4   fetchurl,
5   autoreconfHook,
6   testers,
7 }:
9 stdenv.mkDerivation (finalAttrs: {
10   pname = "uucp";
11   version = "1.07";
13   src = fetchurl {
14     url = "mirror://gnu/uucp/uucp-${finalAttrs.version}.tar.gz";
15     sha256 = "0b5nhl9vvif1w3wdipjsk8ckw49jj1w85xw1mmqi3zbcpazia306";
16   };
18   hardeningDisable = [ "format" ];
20   prePatch = ''
21     # do not set sticky bit in nix store
22     substituteInPlace Makefile.am \
23       --replace-fail 4555 0555
24     sed -i '/chown $(OWNER)/d' Makefile.am
26     # don't reply on implicitly defined `exit` function in `HAVE_VOID` test:
27     substituteInPlace configure.in \
28       --replace-fail '(void) exit (0)' '(void) (0)'
29   '';
31   # Regenerate `configure`; the checked in version was generated in 2002 and
32   # contains snippets like `main(){return(0);}` that modern compilers dislike.
33   nativeBuildInputs = [ autoreconfHook ];
35   makeFlags = [ "AR:=$(AR)" ];
37   passthru.tests.version = testers.testVersion {
38     package = finalAttrs.finalPackage;
39   };
41   meta = {
42     description = "Unix-unix cp over serial line, also includes cu program";
43     mainProgram = "uucp";
45     longDescription = ''
46       Taylor UUCP is a free implementation of UUCP and is the standard
47       UUCP used on the GNU system.  If you don't know what UUCP is chances
48       are, nowadays, that you won't need it.  If you do need it, you've
49       just found one of the finest UUCP implementations available.
50     '';
52     homepage = "https://www.gnu.org/software/uucp/uucp.html";
54     license = lib.licenses.gpl2Plus;
56     platforms = lib.platforms.all;
57     maintainers = [ ];
58   };