lzlib: 1.12 -> 1.13

This commit is contained in:
Emery Hemingway 2022-01-29 18:14:06 +01:00
parent 0be46d0515
commit 0706c5651c

View file

@ -1,18 +1,18 @@
{ lib, stdenv, fetchurl, texinfo }: { lib, stdenv, fetchurl, texinfo, lzip }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "lzlib"; pname = "lzlib";
version = "1.12"; version = "1.13";
outputs = [ "out" "info" ]; outputs = [ "out" "info" ];
nativeBuildInputs = [ texinfo ]; nativeBuildInputs = [ texinfo lzip ];
src = fetchurl { src = fetchurl {
url = "mirror://savannah/lzip/${pname}/${pname}-${version}.tar.gz"; url = "mirror://savannah/lzip/${pname}/${pname}-${version}.tar.lz";
sha256 = "sha256-jl2EJC61LPHcyY5YvZuo7xrvpQFDGr3QJzoiv0zjN7E="; sha256 = "sha256-3ea9WzJTXxeyjJrCS2ZgfgJQUGrBQypBEso8c/XWYsM=";
}; };
makeFlags = [ "AR:=$(AR)" "CC:=$(CC)" ]; makeFlags = [ "CC:=$(CC)" ];
doCheck = true; doCheck = true;
meta = with lib; { meta = with lib; {