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
16 propagatedBuildInputs = [
17 zarith digestif fmt
18 ];
19
20 meta = with lib; {
21 description = "Base58 encoding for Tezos";
22 homepage = "https://github.com/tarides/tezos-base58/";
23 license = licenses.mit;
24 maintainers = with maintainers; [ bezmuth ];
25 };
26
27}