core/pkgs/by-name/lz/lzip/default.nix

49 lines
1.1 KiB
Nix
Raw Normal View History

2024-06-30 08:16:52 +00:00
{
lib,
stdenv,
fetchurl,
}:
2024-05-02 00:46:19 +00:00
# Note: this package is used for bootstrapping fetchurl, and thus
# cannot use fetchpatch! All mutable patches (generated by GitHub or
# cgit) that are needed here should be included directly in Nixpkgs as
# files.
stdenv.mkDerivation rec {
pname = "lzip";
version = "1.24.1";
2024-06-30 08:16:52 +00:00
outputs = [
"out"
"man"
"info"
];
2024-05-02 00:46:19 +00:00
src = fetchurl {
url = "mirror://savannah/lzip/${pname}-${version}.tar.gz";
hash = "sha256-MMnLagYF9HnElsN262KaSLChaW0WfjweCQxd76SBsWI=";
};
2024-06-30 08:16:52 +00:00
patches = lib.optionals stdenv.hostPlatform.isMinGW [ ./mingw-install-exe-file.patch ];
2024-05-02 00:46:19 +00:00
configureFlags = [
"CPPFLAGS=-DNDEBUG"
"CFLAGS=-O3"
"CXXFLAGS=-O3"
"CXX=${stdenv.cc.targetPrefix}c++"
];
setupHook = ./lzip-setup-hook.sh;
doCheck = true;
enableParallelBuilding = true;
meta = with lib; {
homepage = "https://www.nongnu.org/lzip/lzip.html";
description = "A lossless data compressor based on the LZMA algorithm";
license = lib.licenses.gpl2Plus;
maintainers = with maintainers; [ vlaci ];
platforms = lib.platforms.all;
mainProgram = "lzip";
};
}