Merge pull request #310531 from rrbutani/fix/uucp-darwin

uucp: fix on Darwin (and with `pkgsLLVM`)
This commit is contained in:
Weijia Wang 2024-05-11 10:44:08 +02:00 committed by GitHub
commit c03c17e027
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,11 +1,11 @@
{ lib, stdenv, fetchurl }:
{ lib, stdenv, fetchurl, autoreconfHook, testers }:
stdenv.mkDerivation rec {
stdenv.mkDerivation (finalAttrs: {
pname = "uucp";
version = "1.07";
src = fetchurl {
url = "mirror://gnu/uucp/uucp-${version}.tar.gz";
url = "mirror://gnu/uucp/uucp-${finalAttrs.version}.tar.gz";
sha256 = "0b5nhl9vvif1w3wdipjsk8ckw49jj1w85xw1mmqi3zbcpazia306";
};
@ -13,15 +13,28 @@ stdenv.mkDerivation rec {
prePatch = ''
# do not set sticky bit in nix store
substituteInPlace Makefile.in \
--replace 4555 0555
sed -i '/chown $(OWNER)/d' Makefile.in
substituteInPlace Makefile.am \
--replace-fail 4555 0555
sed -i '/chown $(OWNER)/d' Makefile.am
# don't reply on implicitly defined `exit` function in `HAVE_VOID` test:
substituteInPlace configure.in \
--replace-fail '(void) exit (0)' '(void) (0)'
'';
# Regenerate `configure`; the checked in version was generated in 2002 and
# contains snippets like `main(){return(0);}` that modern compilers dislike.
nativeBuildInputs = [ autoreconfHook ];
makeFlags = [ "AR:=$(AR)" ];
passthru.tests.version = testers.testVersion {
package = finalAttrs.finalPackage;
};
meta = {
description = "Unix-unix cp over serial line, also includes cu program";
mainProgram = "uucp";
longDescription =
'' Taylor UUCP is a free implementation of UUCP and is the standard
@ -37,4 +50,4 @@ stdenv.mkDerivation rec {
platforms = lib.platforms.all;
maintainers = [ ];
};
}
})