bzip3 1.3.2 -> 1.4.0 https://repology.org/project/bzip3/versions attrpath: bzip3 Checking auto update branch... No auto update branch exists Old version 1.3.2" not present in master derivation file with contents: { lib , stdenv , fetchFromGitHub , autoreconfHook , pkg-config , testers }: stdenv.mkDerivation (finalAttrs: { pname = "bzip3"; version = "1.4.0"; outputs = [ "bin" "dev" "out" ]; src = fetchFromGitHub { owner = "kspalaiologos"; repo = "bzip3"; rev = finalAttrs.version; hash = "sha256-UVCZWcjlueKSGYqdm7oiJ5i7/irkWv7IOyeCWT2r4sk="; }; 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.isDarwin [ "--disable-link-time-optimization" ]; passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; meta = { description = "A better and stronger spiritual successor to BZip2"; homepage = "https://github.com/kspalaiologos/bzip3"; changelog = "https://github.com/kspalaiologos/bzip3/blob/${finalAttrs.src.rev}/NEWS"; license = lib.licenses.lgpl3Plus; maintainers = with lib.maintainers; [ dotlambda ]; pkgConfigModules = [ "bzip3" ]; platforms = lib.platforms.unix; }; })