mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-09 06:23:36 +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.
43 lines
1.1 KiB
Nix
43 lines
1.1 KiB
Nix
{ lib, stdenv, fetchurl }:
|
|
|
|
# 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";
|
|
outputs = [ "out" "man" "info" ];
|
|
|
|
src = fetchurl {
|
|
url = "mirror://savannah/lzip/${pname}-${version}.tar.gz";
|
|
hash = "sha256-MMnLagYF9HnElsN262KaSLChaW0WfjweCQxd76SBsWI=";
|
|
};
|
|
|
|
patches = lib.optionals stdenv.hostPlatform.isMinGW [
|
|
./mingw-install-exe-file.patch
|
|
];
|
|
|
|
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 = "Lossless data compressor based on the LZMA algorithm";
|
|
license = lib.licenses.gpl2Plus;
|
|
maintainers = with maintainers; [ vlaci ];
|
|
platforms = lib.platforms.all;
|
|
mainProgram = "lzip";
|
|
};
|
|
}
|