1{
2 buildDunePackage,
3 fetchFromGitHub,
4 lib,
5 uutf,
6}:
7
8buildDunePackage rec {
9 pname = "terml";
10 version = "0.0.1";
11
12 src = fetchFromGitHub {
13 owner = "wllfaria";
14 repo = "terml";
15 rev = "${version}";
16 hash = "sha256-2ifMfUaYYsCFOACgXgJ5IuoSEicHyIqumLpun2ZqcDc=";
17 };
18
19 propagatedBuildInputs = [ uutf ];
20
21 minimalOCamlVersion = "4.13";
22
23 meta = {
24 changelog = "https://github.com/wllfaria/terml/blob/${version}/CHANGES.md";
25 description = "Terminal manipulation library in pure Ocaml";
26 homepage = "https://github.com/wllfaria/terml";
27 license = lib.licenses.mit;
28 maintainers = [ lib.maintainers.PhilVoel ];
29 };
30}