forgejo-lts: 7.0.10 -> 7.0.11
[NixPkgs.git] / pkgs / development / ocaml-modules / terml / default.nix
blobb70371e623fc2fd3425732d3d09da87d73be058d
2   buildDunePackage,
3   fetchFromGitHub,
4   lib,
5   uutf,
6 }:
8 buildDunePackage rec {
9   pname = "terml";
10   version = "0.0.1";
12   src = fetchFromGitHub {
13     owner = "wllfaria";
14     repo = "terml";
15     rev = "${version}";
16     hash = "sha256-2ifMfUaYYsCFOACgXgJ5IuoSEicHyIqumLpun2ZqcDc=";
17   };
19   propagatedBuildInputs = [ uutf ];
21   minimalOCamlVersion = "4.13";
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   };