Files
nixpkgs/pkgs/by-name/lr/lrzip/package.nix
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

62 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;
};
}