lol

lrzip: enable asm on x86 and fix build on darwin

Enable compilation of native assembly code on x86 systems, instead of
disabling it for all systems. On darwin ensure the format is set to
macho64.

The ASM/x86 directory is compiled whether "--enable-asm" is configured
or not, but it creates an empty archive, which fails on darwin, so
ensure it is not compiled on darwin to fix the build.

+14 -2
+14 -2
pkgs/tools/compression/lrzip/default.nix
··· 1 1 { lib, stdenv, fetchFromGitHub, autoreconfHook, zlib, lzo, bzip2, lz4, nasm, perl }: 2 2 3 + let 4 + inherit (stdenv.hostPlatform) isx86; 5 + in 3 6 stdenv.mkDerivation rec { 4 7 pname = "lrzip"; 5 8 version = "0.641"; ··· 11 14 sha256 = "sha256-253CH6TiHWyr13C76y9PXjyB7gj2Bhd2VRgJ5r+cm/g="; 12 15 }; 13 16 14 - nativeBuildInputs = [ autoreconfHook nasm perl ]; 17 + postPatch = lib.optionalString stdenv.isDarwin '' 18 + # Building the ASM/x86 directory creates an empty archive, 19 + # which fails on darwin, so remove it 20 + # https://github.com/ckolivas/lrzip/issues/193 21 + # https://github.com/Homebrew/homebrew-core/pull/85360 22 + substituteInPlace lzma/Makefile.am --replace "SUBDIRS = C ASM/x86" "SUBDIRS = C" 23 + substituteInPlace configure.ac --replace "-f elf64" "-f macho64" 24 + ''; 25 + 26 + nativeBuildInputs = [ autoreconfHook perl ] ++ lib.optionals isx86 [ nasm ]; 15 27 16 28 buildInputs = [ zlib lzo bzip2 lz4 ]; 17 29 18 - configureFlags = [ 30 + configureFlags = lib.optionals (!isx86) [ 19 31 "--disable-asm" 20 32 ]; 21 33