ocamlPackages.terml: init at 0.0.1
This commit is contained in:
parent
0194608765
commit
c40c276804
30
pkgs/development/ocaml-modules/terml/default.nix
Normal file
30
pkgs/development/ocaml-modules/terml/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user