1{ buildDunePackage, fetchurl, lib
2, zarith, digestif, fmt
3}:
4
5buildDunePackage rec {
6 pname = "tezos-base58";
7 version = "1.0.0";
8
9 src = fetchurl {
10 url = "https://github.com/tarides/tezos-base58/releases/download/${version}/${pname}-${version}.tbz";
11 sha256 = "14w2pff5dy6mxnz588pxaf2k8xpkd51sbsys065wr51kbv1f36da";
12 };
13
14 minimalOCamlVersion = "4.08";
15 duneVersion = "3";
16
17 propagatedBuildInputs = [
18 zarith digestif fmt
19 ];
20
21 meta = with lib; {
22 description = "Base58 encoding for Tezos";
23 homepage = "https://github.com/tarides/tezos-base58/";
24 license = licenses.mit;
25 maintainers = with maintainers; [ bezmuth ];
26 };
27
28}