python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / libraries / libksi / default.nix
blob015121811710b28c9ddceb17abe507f308da5a6d
1 { lib, stdenv, fetchFromGitHub, autoreconfHook, openssl, curl }:
3 stdenv.mkDerivation rec {
4   pname = "libksi";
5   version = "3.20.3025";
7   src = fetchFromGitHub {
8     owner = "Guardtime";
9     repo = pname;
10     rev = "v${version}";
11     sha256 = "0cagysr8j92r6g7f0mwrlkpn9xz9ncz2v3jymh47j3ljxmfbagpz";
12   };
14   nativeBuildInputs = [ autoreconfHook ];
15   buildInputs = [ openssl curl ];
17   configureFlags = [
18     "--with-openssl=${openssl.dev}"
19     "--with-cafile=/etc/ssl/certs/ca-certificates.crt"
20   ];
22   meta = with lib; {
23     homepage = "https://github.com/GuardTime/libksi";
24     description = "Keyless Signature Infrastructure API library";
25     license = licenses.asl20;
26     platforms = platforms.all;
27   };