mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 23:13:19 +00:00
2641d97cbf
Reproduction script: # Bulk rewrite ./maintainers/scripts/sha-to-sri.py pkgs/by-name # Revert some packages which will need manual intervention for n in amdvlk azure-cli cargo-profiler corefonts flatito fluxcd gist perf_data_converter protoc-gen-js solana-cli swt verible; do git checkout -- "pkgs/by-name/${n:0:2}/${n}" done
31 lines
823 B
Nix
31 lines
823 B
Nix
{ lib, stdenv, fetchurl, lzip, lzlib, texinfo }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "tarlz";
|
|
version = "0.25";
|
|
outputs = [ "out" "man" "info" ];
|
|
|
|
nativeBuildInputs = [ lzip texinfo ];
|
|
buildInputs = [ lzlib ];
|
|
|
|
src = fetchurl {
|
|
url = "mirror://savannah/lzip/tarlz/tarlz-${version}.tar.lz";
|
|
hash = "sha256-fQu+nDoTe7k6EL5WmI/Pc2Lk28ZUkGOe3EJVtwQQX84=";
|
|
};
|
|
|
|
enableParallelBuilding = true;
|
|
makeFlags = [ "CXX:=$(CXX)" ];
|
|
|
|
doCheck = false; # system clock issues
|
|
|
|
meta = with lib; {
|
|
homepage = "https://www.nongnu.org/lzip/tarlz.html";
|
|
description =
|
|
"Massively parallel combined implementation of the tar archiver and the lzip compressor";
|
|
license = licenses.gpl2Plus;
|
|
platforms = platforms.all;
|
|
maintainers = with maintainers; [ ehmry ];
|
|
mainProgram = "tarlz";
|
|
};
|
|
}
|