nixpkgs/pkgs/by-name/ta/tarlz/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

31 lines
847 B
Nix
Raw Normal View History

2021-12-01 14:24:35 +00:00
{ lib, stdenv, fetchurl, lzip, lzlib, texinfo }:
stdenv.mkDerivation rec {
pname = "tarlz";
2024-01-05 18:10:27 +00:00
version = "0.25";
2021-12-01 14:24:35 +00:00
outputs = [ "out" "man" "info" ];
nativeBuildInputs = [ lzip texinfo ];
buildInputs = [ lzlib ];
src = fetchurl {
url = "mirror://savannah/lzip/${pname}/${pname}-${version}.tar.lz";
2024-01-05 18:10:27 +00:00
sha256 = "7d0bbe9c3a137bb93a10be56988fcf7362e4dbc65490639edc4255b704105fce";
2021-12-01 14:24:35 +00:00
};
enableParallelBuilding = true;
makeFlags = [ "CXX:=$(CXX)" ];
2023-09-24 17:53:07 +00:00
doCheck = false; # system clock issues
2021-12-01 14:24:35 +00:00
meta = with lib; {
homepage = "https://www.nongnu.org/lzip/${pname}.html";
description =
"Massively parallel combined implementation of the tar archiver and the lzip compressor";
license = licenses.gpl2Plus;
platforms = platforms.all;
maintainers = with maintainers; [ ehmry ];
2023-11-27 01:17:53 +00:00
mainProgram = "tarlz";
2021-12-01 14:24:35 +00:00
};
}