8 stdenv.mkDerivation rec {
13 src = fetchFromGitHub {
14 owner = "bitcoin-core";
17 sha256 = "sha256-pCSNUSrPyN/lLYZm7zK/b9LICkThXOr6JAyFvHZSPW0=";
20 nativeBuildInputs = [ autoreconfHook ];
23 "--enable-benchmark=no"
24 "--enable-module-recovery"
30 description = "Optimized C library for EC operations on curve secp256k1";
32 Optimized C library for EC operations on curve secp256k1. Part of
33 Bitcoin Core. This library is a work in progress and is being used
34 to research best practices. Use at your own risk.
36 homepage = "https://github.com/bitcoin-core/secp256k1";
37 license = with licenses; [ mit ];
39 platforms = with platforms; all;