python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / compression / lziprecover / default.nix
blobe322a19059017bef2f165307763c12dad4db7045
1 { lib, stdenv, fetchurl, lzip }:
3 stdenv.mkDerivation rec {
4   pname = "lziprecover";
5   version = "1.23";
7   src = fetchurl {
8     url = "mirror://savannah/lzip/lziprecover/${pname}-${version}.tar.gz";
9     sha256 = "sha256-8pgEF38G3VHD+lJhWuGYp2ACts6Nlhw1dVRsN0D0tXI=";
10   };
12   configureFlags = [
13     "CPPFLAGS=-DNDEBUG"
14     "CFLAGS=-O3"
15     "CXXFLAGS=-O3"
16     "CXX=${stdenv.cc.targetPrefix}c++"
17   ];
19   doCheck = true;
20   checkInputs = [ lzip ];
22   enableParallelBuilding = true;
24   meta = with lib; {
25     homepage = "https://www.nongnu.org/lzip/lziprecover.html";
26     description = "Data recovery tool for lzip compressed files";
27     license = lib.licenses.gpl2Plus;
28     maintainers = with maintainers; [ vlaci ];
29     platforms = lib.platforms.all;
30   };