evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / development / ocaml-modules / tezos-base58 / default.nix
blob1ed04a082d5b86d02141e1e4c2bf90fe4090ea63
1 { buildDunePackage, fetchurl, lib
2 , zarith, digestif, fmt
3 }:
5 buildDunePackage rec {
6   pname = "tezos-base58";
7   version = "1.0.0";
9   src = fetchurl {
10     url = "https://github.com/tarides/tezos-base58/releases/download/${version}/${pname}-${version}.tbz";
11     sha256 = "14w2pff5dy6mxnz588pxaf2k8xpkd51sbsys065wr51kbv1f36da";
12   };
14   minimalOCamlVersion = "4.08";
15   duneVersion = "3";
17   propagatedBuildInputs = [
18     zarith digestif fmt
19   ];
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   };