1 { lib, stdenv, fetchurl, lzip, lzlib, texinfo }:
3 stdenv.mkDerivation rec {
6 outputs = [ "out" "man" "info" ];
8 nativeBuildInputs = [ lzip texinfo ];
9 buildInputs = [ lzlib ];
12 url = "mirror://savannah/lzip/tarlz/tarlz-${version}.tar.lz";
13 hash = "sha256-fQu+nDoTe7k6EL5WmI/Pc2Lk28ZUkGOe3EJVtwQQX84=";
16 enableParallelBuilding = true;
17 makeFlags = [ "CXX:=$(CXX)" ];
19 doCheck = false; # system clock issues
22 homepage = "https://www.nongnu.org/lzip/tarlz.html";
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";