python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / archivers / zarchive / default.nix
blob442257779c89f6efba4d6ded3f1d3bf09ba409e6
1 { lib, stdenv, fetchFromGitHub, cmake, zstd }:
3 stdenv.mkDerivation rec {
4   pname = "zarchive";
5   version = "0.1.2";
7   src = fetchFromGitHub {
8     owner = "Exzap";
9     repo = "ZArchive";
10     rev = "v${version}";
11     hash = "sha256-hX637O/mVLTzmG0a9swJu9w+3o26VHo+K/9RhMuf1lI=";
12   };
14   nativeBuildInputs = [ cmake ];
15   buildInputs = [ zstd ];
17   meta = with lib; {
18     description = "File archive format supporting random-access reads";
19     homepage = "https://github.com/Exzap/ZArchive";
20     license = licenses.mit0;
21     maintainers = with maintainers; [ zhaofengli ];
22   };