Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

57 lines
1.2 KiB
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
lib,
stdenv,
fetchFromGitHub,
autoreconfHook,
pkg-config,
testers,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "bzip3";
version = "1.5.3";
outputs = [
"bin"
"dev"
"out"
];
src = fetchFromGitHub {
owner = "iczelia";
repo = "bzip3";
tag = finalAttrs.version;
hash = "sha256-SOouMUctxsAJdkt84rJBaCbK23GKmXRH9nVgGdDodsk=";
};
postPatch = ''
echo -n "${finalAttrs.version}" > .tarball-version
patchShebangs build-aux
# build-aux/ax_subst_man_date.m4 calls git if the file exists
rm .gitignore
'';
nativeBuildInputs = [
autoreconfHook
pkg-config
];
configureFlags = [
"--disable-arch-native"
]
++ lib.optionals stdenv.hostPlatform.isDarwin [ "--disable-link-time-optimization" ];
passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage;
meta = {
description = "Better and stronger spiritual successor to BZip2";
homepage = "https://github.com/iczelia/bzip3";
changelog = "https://github.com/iczelia/bzip3/blob/${finalAttrs.src.tag}/NEWS";
license = lib.licenses.lgpl3Plus;
maintainers = with lib.maintainers; [ dotlambda ];
pkgConfigModules = [ "bzip3" ];
platforms = lib.platforms.unix;
};
})