Merge pull request #18737 from chris-martin/secp256k1-flags

secp256k1: configure with more feature flags
This commit is contained in:
Alexey Shmalko 2016-12-07 16:42:42 -08:00 committed by GitHub
commit 1c50bdd928
1 changed files with 30 additions and 13 deletions

View File

@ -1,32 +1,49 @@
{ stdenv, fetchFromGitHub, autoconf, automake, libtool, ... }: { 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 { stdenv.mkDerivation rec {
name = "secp256k1-${version}"; name = "secp256k1-${version}";
# I can't find any version numbers, so we're just using the date # I can't find any version numbers, so we're just using the date of the
# of the last commit. # last commit.
version = "2016-05-30"; version = "2016-11-27";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "bitcoin-core"; owner = "bitcoin-core";
repo = "secp256k1"; repo = "secp256k1";
rev = "b3be8521e694eaf45dd29baea035055183c42fe2"; rev = "2928420c1b8e1feee8c20dff4e3cc41a0de2fc22";
sha256 = "1pgsy72w87yxbiqn96hnm8alsfx3rj7d9jlzdsypyf6i1rf6w4bq"; sha256 = "1djsr2vrhh88353czlwb8bwlyabf008w1f7xg0fs3q33rf42w5gm";
}; };
buildInputs = [ autoconf automake libtool ]; buildInputs = optionals enableJNI [ jdk ];
configureFlags = [ "--enable-module-recovery" ]; nativeBuildInputs = [ autoreconfHook ];
preConfigure = "./autogen.sh"; configureFlags =
optionals enableECDH [ "--enable-module-ecdh" "--enable-experimental" ] ++
optionals enableRecovery [ "--enable-module-recovery" ] ++
optionals enableJNI [ "--enable-jni" ];
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = "Optimized C library for EC operations on curve secp256k1"; description = "Optimized C library for EC operations on curve secp256k1";
longDescription = '' longDescription = ''
Optimized C library for EC operations on curve secp256k1. Optimized C library for EC operations on curve secp256k1. Part of
Part of Bitcoin Core. This library is a work in progress Bitcoin Core. This library is a work in progress and is being used
and is being used to research best practices. Use at your to research best practices. Use at your own risk.
own risk.
''; '';
homepage = https://github.com/bitcoin-core/secp256k1; homepage = https://github.com/bitcoin-core/secp256k1;
license = with licenses; [ mit ]; license = with licenses; [ mit ];