
This reverts commit 65a333600d5c88a98d674f637d092807cfc12253. This wasn't tested for correctness with something like fodwatch [0], and should not have been (self-)merged so quickly, especially without further review. It also resulted in the breakage of at least one package [1] (and that's the one we know of and was caught). A few packages that were updated in between this commit and this revert were not reverted back to using `rev`, but other than that, this is a 1:1 revert. [0]: https://codeberg.org/raphaelr/fodwatch [1]: https://github.com/NixOS/nixpkgs/pull/396904 / 758551e4587d75882aebc21a04bee960418f8ce9
61 lines
1.3 KiB
Nix
61 lines
1.3 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
autoreconfHook,
|
|
zlib,
|
|
lzo,
|
|
bzip2,
|
|
lz4,
|
|
nasm,
|
|
perl,
|
|
}:
|
|
|
|
let
|
|
inherit (stdenv.hostPlatform) isx86;
|
|
in
|
|
stdenv.mkDerivation rec {
|
|
pname = "lrzip";
|
|
version = "0.651";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ckolivas";
|
|
repo = "lrzip";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-Mb324ojtLV0S10KhL7Vjf3DhSOtCy1pFMTzvLkTnpXM=";
|
|
};
|
|
|
|
postPatch = lib.optionalString stdenv.hostPlatform.isDarwin ''
|
|
# Building the ASM/x86 directory creates an empty archive,
|
|
# which fails on darwin, so remove it
|
|
# https://github.com/ckolivas/lrzip/issues/193
|
|
# https://github.com/Homebrew/homebrew-core/pull/85360
|
|
substituteInPlace lzma/Makefile.am --replace "SUBDIRS = C ASM/x86" "SUBDIRS = C"
|
|
substituteInPlace configure.ac --replace "-f elf64" "-f macho64"
|
|
'';
|
|
|
|
nativeBuildInputs = [
|
|
autoreconfHook
|
|
perl
|
|
] ++ lib.optionals isx86 [ nasm ];
|
|
|
|
buildInputs = [
|
|
zlib
|
|
lzo
|
|
bzip2
|
|
lz4
|
|
];
|
|
|
|
configureFlags = lib.optionals (!isx86) [
|
|
"--disable-asm"
|
|
];
|
|
|
|
meta = with lib; {
|
|
homepage = "http://ck.kolivas.org/apps/lrzip/";
|
|
description = "CK LRZIP compression program (LZMA + RZIP)";
|
|
maintainers = [ ];
|
|
license = licenses.gpl2Plus;
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|