53 lines
1.6 KiB
Nix
53 lines
1.6 KiB
Nix
{ stdenv, fetchFromGitHub, autoreconfHook, jdk
|
|
|
|
# Enable ECDSA pubkey recovery module
|
|
, enableRecovery ? true
|
|
|
|
# Enable ECDH shared secret computation (disabled by default because it is
|
|
# experimental)
|
|
, enableECDH ? false
|
|
|
|
# Enable libsecp256k1_jni (disabled by default because it requires a jdk,
|
|
# which is a large dependency)
|
|
, enableJNI ? false
|
|
|
|
}:
|
|
|
|
let inherit (stdenv.lib) optionals; in
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "secp256k1-${version}";
|
|
|
|
# I can't find any version numbers, so we're just using the date of the
|
|
# last commit.
|
|
version = "2016-11-27";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "bitcoin-core";
|
|
repo = "secp256k1";
|
|
rev = "2928420c1b8e1feee8c20dff4e3cc41a0de2fc22";
|
|
sha256 = "1djsr2vrhh88353czlwb8bwlyabf008w1f7xg0fs3q33rf42w5gm";
|
|
};
|
|
|
|
buildInputs = optionals enableJNI [ jdk ];
|
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
|
|
|
configureFlags =
|
|
optionals enableECDH [ "--enable-module-ecdh" "--enable-experimental" ] ++
|
|
optionals enableRecovery [ "--enable-module-recovery" ] ++
|
|
optionals enableJNI [ "--enable-jni" ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Optimized C library for EC operations on curve secp256k1";
|
|
longDescription = ''
|
|
Optimized C library for EC operations on curve secp256k1. Part of
|
|
Bitcoin Core. This library is a work in progress and is being used
|
|
to research best practices. Use at your own risk.
|
|
'';
|
|
homepage = https://github.com/bitcoin-core/secp256k1;
|
|
license = with licenses; [ mit ];
|
|
maintainers = with maintainers; [ chris-martin ];
|
|
platforms = with platforms; unix;
|
|
};
|
|
}
|