bcc04c75f8
Semi-automatic update. These checks were performed: - built on NixOS - ran `/nix/store/y8gzi68gamcb4wjrhm075vg5xv3gjfam-lzip-1.20/bin/lzip -h` got 0 exit code - ran `/nix/store/y8gzi68gamcb4wjrhm075vg5xv3gjfam-lzip-1.20/bin/lzip --help` got 0 exit code - ran `/nix/store/y8gzi68gamcb4wjrhm075vg5xv3gjfam-lzip-1.20/bin/lzip -V` and found version 1.20 - ran `/nix/store/y8gzi68gamcb4wjrhm075vg5xv3gjfam-lzip-1.20/bin/lzip --version` and found version 1.20 - ran `/nix/store/y8gzi68gamcb4wjrhm075vg5xv3gjfam-lzip-1.20/bin/lzip -h` and found version 1.20 - ran `/nix/store/y8gzi68gamcb4wjrhm075vg5xv3gjfam-lzip-1.20/bin/lzip --help` and found version 1.20 - found 1.20 with grep in /nix/store/y8gzi68gamcb4wjrhm075vg5xv3gjfam-lzip-1.20 - found 1.20 in filename of file in /nix/store/y8gzi68gamcb4wjrhm075vg5xv3gjfam-lzip-1.20
27 lines
749 B
Nix
27 lines
749 B
Nix
{ stdenv, fetchurl, texinfo }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "lzip-${version}";
|
|
version = "1.20";
|
|
|
|
buildInputs = [ texinfo ];
|
|
|
|
src = fetchurl {
|
|
url = "mirror://savannah/lzip/${name}.tar.gz";
|
|
sha256 = "0319q59kb8g324wnj7xzbr7vvlx5bcs13lr34j0zb3kqlyjq2fy9";
|
|
};
|
|
|
|
configureFlags = "CPPFLAGS=-DNDEBUG CFLAGS=-O3 CXXFLAGS=-O3" + stdenv.lib.optionalString stdenv.isCross " CXX=${stdenv.cc.targetPrefix}c++";
|
|
|
|
setupHook = ./lzip-setup-hook.sh;
|
|
|
|
doCheck = true;
|
|
enableParallelBuilding = true;
|
|
|
|
meta = {
|
|
homepage = http://www.nongnu.org/lzip/lzip.html;
|
|
description = "A lossless data compressor based on the LZMA algorithm";
|
|
license = stdenv.lib.licenses.gpl3Plus;
|
|
platforms = stdenv.lib.platforms.unix;
|
|
};
|
|
}
|