forgejo-lts: 7.0.10 -> 7.0.11
[NixPkgs.git] / pkgs / development / ocaml-modules / tty / default.nix
blob649973df578be7591aa05c1da56ed612ef49e88e
1 { lib
2 , buildDunePackage
3 , fetchurl
4 , uutf
5 }:
7 buildDunePackage rec {
8   pname = "tty";
9   version = "0.0.2";
11   minimalOCamlVersion = "5.1";
13   src = fetchurl {
14     url = "https://github.com/leostera/tty/releases/download/${version}/tty-${version}.tbz";
15     hash = "sha256-eeD5Y+/QXZzFoEHvOSZj2Q74V8BK5j3Lu3Zsrj2YUUs=";
16   };
18   propagatedBuildInputs = [
19     uutf
20   ];
22   doCheck = true;
24   meta = {
25     description = "Library for interacting with teletype and terminal emulators";
26     homepage = "https://github.com/leostera/tty";
27     changelog = "https://github.com/leostera/tty/blob/${version}/CHANGES.md";
28     license = lib.licenses.mit;
29     maintainers = with lib.maintainers; [ sixstring982 ];
30   };