summary refs log tree commit diff
path: root/pkgs/tools/security/secp256k1
diff options
context:
space:
mode:
authorLorenzo Manacorda <lorenzo@mailbox.org>2017-12-21 03:16:13 +0100
committerLorenzo Manacorda <lorenzo@mailbox.org>2017-12-21 03:16:20 +0100
commit141688e7355757bcb11c306c3ed83d16a8447ac6 (patch)
tree8112fe26ba1b62f7c1b2ec1ca9aca8361ac6e71a /pkgs/tools/security/secp256k1
parent61da89bc8a5490c06642f6ff4b9a6ea61e5dc13b (diff)
downloadnixpkgs-141688e7355757bcb11c306c3ed83d16a8447ac6.tar
nixpkgs-141688e7355757bcb11c306c3ed83d16a8447ac6.tar.gz
nixpkgs-141688e7355757bcb11c306c3ed83d16a8447ac6.tar.bz2
nixpkgs-141688e7355757bcb11c306c3ed83d16a8447ac6.tar.lz
nixpkgs-141688e7355757bcb11c306c3ed83d16a8447ac6.tar.xz
nixpkgs-141688e7355757bcb11c306c3ed83d16a8447ac6.tar.zst
nixpkgs-141688e7355757bcb11c306c3ed83d16a8447ac6.zip
secp256k1: 2016-11-27 -> 2017-12-18
Also, disable benchmarks and tests, since we don't run them.
Diffstat (limited to 'pkgs/tools/security/secp256k1')
-rw-r--r--pkgs/tools/security/secp256k1/default.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/tools/security/secp256k1/default.nix b/pkgs/tools/security/secp256k1/default.nix
index 83a23744c2e..fd03e6bebab 100644
--- a/pkgs/tools/security/secp256k1/default.nix
+++ b/pkgs/tools/security/secp256k1/default.nix
@@ -20,13 +20,13 @@ stdenv.mkDerivation rec {
 
   # I can't find any version numbers, so we're just using the date of the
   # last commit.
-  version = "2016-11-27";
+  version = "2017-12-18";
 
   src = fetchFromGitHub {
     owner = "bitcoin-core";
     repo = "secp256k1";
-    rev = "2928420c1b8e1feee8c20dff4e3cc41a0de2fc22";
-    sha256 = "1djsr2vrhh88353czlwb8bwlyabf008w1f7xg0fs3q33rf42w5gm";
+    rev = "f54c6c5083307b18224c953cf5870ea7ffce070b";
+    sha256 = "0bxqmimm627g9klalg1vdbspmn52588v4a6cli3p8bn84ibsnzbm";
   };
 
   buildInputs = optionals enableJNI [ jdk ];
@@ -34,6 +34,7 @@ stdenv.mkDerivation rec {
   nativeBuildInputs = [ autoreconfHook ];
 
   configureFlags =
+    [ "--enable-benchmark=no" "--enable-tests=no" "--enable-exhaustive-tests=no" ] ++
     optionals enableECDH [ "--enable-module-ecdh" "--enable-experimental" ] ++
     optionals enableRecovery [ "--enable-module-recovery" ] ++
     optionals enableJNI [ "--enable-jni" ];