1 { lib, stdenv, fetchFromGitHub, autoreconfHook, openssl, curl }:
3 stdenv.mkDerivation rec {
7 src = fetchFromGitHub {
11 sha256 = "0cagysr8j92r6g7f0mwrlkpn9xz9ncz2v3jymh47j3ljxmfbagpz";
14 nativeBuildInputs = [ autoreconfHook ];
15 buildInputs = [ openssl curl ];
18 "--with-openssl=${openssl.dev}"
19 "--with-cafile=/etc/ssl/certs/ca-certificates.crt"
23 homepage = "https://github.com/GuardTime/libksi";
24 description = "Keyless Signature Infrastructure API library";
25 license = licenses.asl20;
26 platforms = platforms.all;