nixpkgs/pkgs/development/ocaml-modules/secp256k1/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
640 B
Nix
Raw Normal View History

{ lib, fetchFromGitHub, buildDunePackage, base, stdio, dune-configurator, secp256k1 }:
2019-08-02 15:34:38 +00:00
buildDunePackage rec {
2019-08-02 15:34:38 +00:00
pname = "secp256k1";
version = "0.4.4";
2019-08-02 15:34:38 +00:00
minimalOCamlVersion = "4.07";
2023-05-02 04:08:44 +00:00
2019-08-02 15:34:38 +00:00
src = fetchFromGitHub {
owner = "dakk";
repo = "secp256k1-ml";
rev = version;
hash = "sha256-22+dZb3MC1W5Qvsz3+IHV1/XiGCRmJHTH+6IW2QX2hU=";
2019-08-02 15:34:38 +00:00
};
buildInputs = [ base stdio dune-configurator secp256k1 ];
2019-08-02 15:34:38 +00:00
meta = with lib; {
homepage = "https://github.com/dakk/secp256k1-ml";
2019-08-02 15:34:38 +00:00
description = "Elliptic curve library secp256k1 wrapper for Ocaml";
license = licenses.mit;
maintainers = [ maintainers.vyorkin ];
};
}