depot/third_party/nixpkgs/pkgs/development/ocaml-modules/tezos-base58/default.nix
Default email 7bc014aa9c Project import generated by Copybara.
GitOrigin-RevId: c97e777ff06fcb8d37dcdf5e21e9eff1f34f0e90
2022-09-11 12:47:08 -03:00

27 lines
636 B
Nix

{ 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 ];
};
}