mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
28 lines
657 B
Nix
28 lines
657 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";
|
|
duneVersion = "3";
|
|
|
|
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 ];
|
|
};
|
|
|
|
}
|