Skip to content

Commit

Permalink
actually revert "use original version of secp256k1 for kevm"
Browse files Browse the repository at this point in the history
  • Loading branch information
manveru committed Apr 9, 2021
1 parent e8d8911 commit 24b075a
Showing 1 changed file with 2 additions and 15 deletions.
17 changes: 2 additions & 15 deletions nix/pkgs/kevm.nix
Original file line number Diff line number Diff line change
@@ -1,19 +1,6 @@
{ lib, stdenv, fetchFromGitHub, dockerTools, autoreconfHook, gmp5, mpfr, zlib }:
{ lib, stdenv, fetchFromGitHub, dockerTools, autoreconfHook, gmp5, mpfr, zlib, secp256k1 }:
let
libPath = lib.makeLibraryPath [ secp gmp5 mpfr zlib ];

secp = stdenv.mkDerivation {
name = "secp256k1";

src = fetchFromGitHub {
owner = "bitcoin-core";
repo = "secp256k1";
rev = "f532bdc9f77f7bbf7e93faabfbe9c483f0a9f75f";
sha256 = "sha256-PyqNZGER9VypH35S/aU4EBeepieI3BGXrYsJ141os24=";
};

nativeBuildInputs = [ autoreconfHook ];
};
libPath = lib.makeLibraryPath [ secp256k1 gmp5 mpfr zlib ];
in stdenv.mkDerivation {
name = "kevm";

Expand Down

0 comments on commit 24b075a

Please sign in to comment.