nixpkgs/pkgs/development/ocaml-modules/tezos-base58/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

29 lines
657 B
Nix
Raw Normal View History

2022-07-30 06:03:16 +00:00
{ 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";
2023-03-24 09:00:17 +00:00
duneVersion = "3";
2022-07-30 06:03:16 +00:00
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 ];
};
}