python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / archivers / snzip / default.nix
blobf3a9400687348e47fda8e648ed7740906f6e5299
1 { lib, stdenv, fetchFromGitHub
2 , autoreconfHook
3 , pkg-config
4 , snappy
5 }:
7 stdenv.mkDerivation rec {
8   pname = "snzip";
9   version = "1.0.4";
11   src = fetchFromGitHub {
12     owner = "kubo";
13     repo = "snzip";
14     rev = version;
15     sha256 = "1v8li1zv9f2g31iyi9y9zx42rjvwkaw221g60pmkbv53y667i325";
16   };
18   buildInputs = [ snappy ];
19   # We don't use a release tarball so we don't have a `./configure` script to
20   # run. That's why we generate it.
21   nativeBuildInputs = [ autoreconfHook pkg-config ];
23   meta = with lib; {
24     description = "A compression/decompression tool based on snappy";
25     homepage = "https://github.com/kubo/snzip";
26     maintainers = with maintainers; [ doronbehar ];
27     license = licenses.bsd2;
28     platforms = platforms.linux;
29   };