mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-29 09:04:17 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
40 lines
1.2 KiB
Nix
40 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;
|
|
};
|
|
}
|