tezos-base58: init at 1.0.0

This commit is contained in:
bezmuth 2022-07-30 07:03:16 +01:00 committed by Vincent Laporte
parent c7e6458550
commit 38417e0e29
3 changed files with 35 additions and 0 deletions

View file

@ -15274,6 +15274,12 @@
fingerprint = "4384 B8E1 299F C028 1641 7B8F EC30 EFBE FA7E 84A4";
}];
};
bezmuth = {
email = "benkel97@protonmail.com";
name = "Ben Kelly";
github = "bezmuth";
githubId = 31394095;
};
cafkafk = {
email = "cafkafk@cafkafk.com";
matrix = "@cafkafk:matrix.cafkafk.com";

View file

@ -0,0 +1,27 @@
{ buildDunePackage, fetchurl, lib
, zarith, digestif, fmt
}:
buildDunePackage rec {
pname = "tezos-base58";
version = "1.0.0";
src = fetchurl {
url = "https://github.com/tarides/tezos-base58/releases/download/${version}/${pname}-${version}.tbz";
sha256 = "14w2pff5dy6mxnz588pxaf2k8xpkd51sbsys065wr51kbv1f36da";
};
minimalOCamlVersion = "4.08";
propagatedBuildInputs = [
zarith digestif fmt
];
meta = with lib; {
description = "Base58 encoding for Tezos";
homepage = "https://github.com/tarides/tezos-base58/";
license = licenses.mit;
maintainers = with maintainers; [ bezmuth ];
};
}

View file

@ -1421,6 +1421,8 @@ let
terminal_size = callPackage ../development/ocaml-modules/terminal_size { };
tezos-base58 = callPackage ../development/ocaml-modules/tezos-base58 { };
theora = callPackage ../development/ocaml-modules/theora { };
toml = callPackage ../development/ocaml-modules/toml { };