ocamlPackages.secp256k1: 0.4.0 → 0.4.1

This commit is contained in:
Vincent Laporte 2020-10-08 20:39:50 +02:00 committed by Vincent Laporte
parent d3b2419f1f
commit bbd0e25d64

View file

@ -1,17 +1,19 @@
{ stdenv, fetchFromGitHub, buildDunePackage, base, stdio, configurator, secp256k1 }:
{ stdenv, fetchFromGitHub, buildDunePackage, base, stdio, dune-configurator, secp256k1 }:
buildDunePackage {
buildDunePackage rec {
pname = "secp256k1";
version = "0.4.0";
version = "0.4.1";
useDune2 = true;
src = fetchFromGitHub {
owner = "dakk";
repo = "secp256k1-ml";
rev = "42c04c93e2ed9596f6378676e944c8cfabfa69d7";
sha256 = "1zw2kgg181a9lj1m8z0ybijs8gw9w1kk990avh1bp9x8kc1asffg";
rev = version;
sha256 = "0jkd7mc5kynhg0b76dfk70pww97qsq2jbd991634i16xf8qja9fj";
};
buildInputs = [ base stdio configurator secp256k1 ];
buildInputs = [ base stdio dune-configurator secp256k1 ];
meta = with stdenv.lib; {
homepage = "https://github.com/dakk/secp256k1-ml";