tezos-base58: init at 1.0.0
This commit is contained in:
parent
c7e6458550
commit
38417e0e29
3 changed files with 35 additions and 0 deletions
|
@ -15274,6 +15274,12 @@
|
|||
fingerprint = "4384 B8E1 299F C028 1641 7B8F EC30 EFBE FA7E 84A4";
|
||||
}];
|
||||
};
|
||||
bezmuth = {
|
||||
email = "benkel97@protonmail.com";
|
||||
name = "Ben Kelly";
|
||||
github = "bezmuth";
|
||||
githubId = 31394095;
|
||||
};
|
||||
cafkafk = {
|
||||
email = "cafkafk@cafkafk.com";
|
||||
matrix = "@cafkafk:matrix.cafkafk.com";
|
||||
|
|
27
pkgs/development/ocaml-modules/tezos-base58/default.nix
Normal file
27
pkgs/development/ocaml-modules/tezos-base58/default.nix
Normal file
|
@ -0,0 +1,27 @@
|
|||
{ 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 ];
|
||||
};
|
||||
|
||||
}
|
|
@ -1421,6 +1421,8 @@ let
|
|||
|
||||
terminal_size = callPackage ../development/ocaml-modules/terminal_size { };
|
||||
|
||||
tezos-base58 = callPackage ../development/ocaml-modules/tezos-base58 { };
|
||||
|
||||
theora = callPackage ../development/ocaml-modules/theora { };
|
||||
|
||||
toml = callPackage ../development/ocaml-modules/toml { };
|
||||
|
|
Loading…
Reference in a new issue