python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / libraries / libb2 / default.nix
blobb142a0a415650267e750c2e3c071d6248423f08d
1 { lib, stdenv, fetchFromGitHub, autoconf, automake, libtool, pkg-config }:
3 stdenv.mkDerivation rec {
4   pname = "libb2";
5   version = "0.98.1";
7   src = fetchFromGitHub {
8     owner = "BLAKE2";
9     repo = "libb2";
10     rev = "v${version}";
11     sha256 = "0qj8aaqvfcavj1vj5asm4pqm03ap7q8x4c2fy83cqggvky0frgya";
12   };
14   preConfigure = ''
15     patchShebangs autogen.sh
16     ./autogen.sh
17   '';
19   configureFlags = lib.optional stdenv.hostPlatform.isx86 "--enable-fat=yes";
21   nativeBuildInputs = [ autoconf automake libtool pkg-config ];
23   doCheck = true;
25   meta = with lib; {
26     description = "The BLAKE2 family of cryptographic hash functions";
27     homepage = "https://blake2.net/";
28     platforms = platforms.all;
29     maintainers = with maintainers; [ dfoxfranke dotlambda ];
30     license = licenses.cc0;
31   };