ocamlPackages.terml: init at 0.0.1

This commit is contained in:
PhilVoel 2024-09-09 06:45:50 +02:00 committed by Vincent Laporte
parent 0194608765
commit c40c276804
2 changed files with 32 additions and 0 deletions

View File

@ -0,0 +1,30 @@
{
buildDunePackage,
fetchFromGitHub,
lib,
uutf,
}:
buildDunePackage rec {
pname = "terml";
version = "0.0.1";
src = fetchFromGitHub {
owner = "wllfaria";
repo = "terml";
rev = "${version}";
hash = "sha256-2ifMfUaYYsCFOACgXgJ5IuoSEicHyIqumLpun2ZqcDc=";
};
propagatedBuildInputs = [ uutf ];
minimalOCamlVersion = "4.13";
meta = {
changelog = "https://github.com/wllfaria/terml/blob/${version}/CHANGES.md";
description = "Terminal manipulation library in pure Ocaml";
homepage = "https://github.com/wllfaria/terml";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.PhilVoel ];
};
}

View File

@ -1784,6 +1784,8 @@ let
terminal_size = callPackage ../development/ocaml-modules/terminal_size { };
terml = callPackage ../development/ocaml-modules/terml { };
tezos-base58 = callPackage ../development/ocaml-modules/tezos-base58 { };
tezt = callPackage ../development/ocaml-modules/tezt { };