lziprecover: init at 1.22

Companion package to `lzip`
This commit is contained in:
László Vaskó 2022-01-04 15:03:45 +01:00
parent beac526f0d
commit 8c3f139a9a
2 changed files with 33 additions and 0 deletions

View File

@ -0,0 +1,31 @@
{ lib, stdenv, fetchurl, lzip }:
stdenv.mkDerivation rec {
pname = "lziprecover";
version = "1.22";
src = fetchurl {
url = "mirror://savannah/lzip/lziprecover/${pname}-${version}.tar.gz";
sha256 = "sha256-/ZWKCXX3cpxE87eE5WaJH3NsPcaDdNvSFJ7mkqFtCGI=";
};
configureFlags = [
"CPPFLAGS=-DNDEBUG"
"CFLAGS=-O3"
"CXXFLAGS=-O3"
"CXX=${stdenv.cc.targetPrefix}c++"
];
doCheck = true;
checkInputs = [ lzip ];
enableParallelBuilding = true;
meta = with lib; {
homepage = "https://www.nongnu.org/lzip/lziprecover.html";
description = "Data recovery tool for lzip compressed files";
license = lib.licenses.gpl2Plus;
maintainers = with maintainers; [ vlaci ];
platforms = lib.platforms.all;
};
}

View File

@ -7544,6 +7544,8 @@ with pkgs;
lzip = callPackage ../tools/compression/lzip { };
lziprecover = callPackage ../tools/compression/lziprecover { };
luxcorerender = callPackage ../tools/graphics/luxcorerender {
openimagedenoise = openimagedenoise_1_2_x;
};