about summary refs log tree commit diff
path: root/pkgs/tools/security/secp256k1
diff options
context:
space:
mode:
authorLas Safin <me@las.rs>2022-02-07 22:48:12 +0000
committerJonathan Ringer <jonringer@users.noreply.github.com>2022-02-08 09:58:49 -0800
commitfc7550d33c5eaac554ac4f2cb8d345d1df1be7cb (patch)
treed4d889f847b3763a8a2ec3cfb5ff730ce775873e /pkgs/tools/security/secp256k1
parent7b2317da1b38d48b6a17327c035bd9c504ae6e2c (diff)
secp256k1: unstable-2021-06-06 -> unstable-2022-02-06
Diffstat (limited to 'pkgs/tools/security/secp256k1')
-rw-r--r--pkgs/tools/security/secp256k1/default.nix8
1 files changed, 3 insertions, 5 deletions
diff --git a/pkgs/tools/security/secp256k1/default.nix b/pkgs/tools/security/secp256k1/default.nix
index e88187f846514..890518126d848 100644
--- a/pkgs/tools/security/secp256k1/default.nix
+++ b/pkgs/tools/security/secp256k1/default.nix
@@ -7,15 +7,13 @@
 stdenv.mkDerivation {
   pname = "secp256k1";
 
-  # I can't find any version numbers, so we're just using the date of the
-  # last commit.
-  version = "unstable-2021-06-06";
+  version = "unstable-2022-02-06";
 
   src = fetchFromGitHub {
     owner = "bitcoin-core";
     repo = "secp256k1";
-    rev = "7973576f6e3ab27d036a09397152b124d747f4ae";
-    sha256 = "0vjk55dv0mkph4k6bqgkykmxn05ngzvhc4rzjnvn33xzi8dzlvah";
+    rev = "5dcc6f8dbdb1850570919fc9942d22f728dbc0af";
+    sha256 = "x9qG2S6tBSRseWaFIN9N2fRpY1vkv8idT3d3rfJnmaU=";
   };
 
   nativeBuildInputs = [ autoreconfHook ];