Skip to content

Commit 24b075a

Browse files
committed
actually revert "use original version of secp256k1 for kevm"
1 parent e8d8911 commit 24b075a

File tree

1 file changed

+2
-15
lines changed

1 file changed

+2
-15
lines changed

nix/pkgs/kevm.nix

Lines changed: 2 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,6 @@
1-
{ lib, stdenv, fetchFromGitHub, dockerTools, autoreconfHook, gmp5, mpfr, zlib }:
1+
{ lib, stdenv, fetchFromGitHub, dockerTools, autoreconfHook, gmp5, mpfr, zlib, secp256k1 }:
22
let
3-
libPath = lib.makeLibraryPath [ secp gmp5 mpfr zlib ];
4-
5-
secp = stdenv.mkDerivation {
6-
name = "secp256k1";
7-
8-
src = fetchFromGitHub {
9-
owner = "bitcoin-core";
10-
repo = "secp256k1";
11-
rev = "f532bdc9f77f7bbf7e93faabfbe9c483f0a9f75f";
12-
sha256 = "sha256-PyqNZGER9VypH35S/aU4EBeepieI3BGXrYsJ141os24=";
13-
};
14-
15-
nativeBuildInputs = [ autoreconfHook ];
16-
};
3+
libPath = lib.makeLibraryPath [ secp256k1 gmp5 mpfr zlib ];
174
in stdenv.mkDerivation {
185
name = "kevm";
196

0 commit comments

Comments
 (0)