Files
nixpkgs/pkgs/by-name/lz/lzo/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

45 lines
1.2 KiB
Nix

{
lib,
stdenv,
fetchurl,
updateAutotoolsGnuConfigScriptsHook,
}:
stdenv.mkDerivation rec {
pname = "lzo";
version = "2.10";
src = fetchurl {
url = "https://www.oberhumer.com/opensource/lzo/download/${pname}-${version}.tar.gz";
sha256 = "0wm04519pd3g8hqpjqhfr72q8qmbiwqaxcs3cndny9h86aa95y60";
};
nativeBuildInputs = [ updateAutotoolsGnuConfigScriptsHook ];
configureFlags = lib.optional (!stdenv.hostPlatform.isStatic) "--enable-shared";
enableParallelBuilding = true;
doCheck = true; # not cross;
strictDeps = true;
meta = with lib; {
description = "Real-time data (de)compression library";
longDescription = ''
LZO is a portable lossless data compression library written in ANSI C.
Both the source code and the compressed data format are designed to be
portable across platforms.
LZO offers pretty fast compression and *extremely* fast decompression.
While it favours speed over compression ratio, it includes slower
compression levels achieving a quite competitive compression ratio
while still decompressing at this very high speed.
'';
homepage = "http://www.oberhumer.com/opensource/lzo";
license = licenses.gpl2Plus;
platforms = platforms.all;
};
}