biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / by-name / ta / tarlz / package.nix
blob636c921d6c5a0fb19f6ca34a09cd60295e4287f1
1 { lib, stdenv, fetchurl, lzip, lzlib, texinfo }:
3 stdenv.mkDerivation rec {
4   pname = "tarlz";
5   version = "0.25";
6   outputs = [ "out" "man" "info" ];
8   nativeBuildInputs = [ lzip texinfo ];
9   buildInputs = [ lzlib ];
11   src = fetchurl {
12     url = "mirror://savannah/lzip/tarlz/tarlz-${version}.tar.lz";
13     hash = "sha256-fQu+nDoTe7k6EL5WmI/Pc2Lk28ZUkGOe3EJVtwQQX84=";
14   };
16   enableParallelBuilding = true;
17   makeFlags = [ "CXX:=$(CXX)" ];
19   doCheck = false; # system clock issues
21   meta = with lib; {
22     homepage = "https://www.nongnu.org/lzip/tarlz.html";
23     description =
24       "Massively parallel combined implementation of the tar archiver and the lzip compressor";
25     license = licenses.gpl2Plus;
26     platforms = platforms.all;
27     maintainers = with maintainers; [ ehmry ];
28     mainProgram = "tarlz";
29   };