lol

ocamlPackages.tty: init at 0.0.2

authored by

Trent Small and committed by
Vincent Laporte
d17d1a37 f7448957

+33
+31
pkgs/development/ocaml-modules/tty/default.nix
··· 1 + { lib 2 + , buildDunePackage 3 + , fetchurl 4 + , uutf 5 + }: 6 + 7 + buildDunePackage rec { 8 + pname = "tty"; 9 + version = "0.0.2"; 10 + 11 + minimalOCamlVersion = "5.1"; 12 + 13 + src = fetchurl { 14 + url = "https://github.com/leostera/tty/releases/download/${version}/tty-${version}.tbz"; 15 + hash = "sha256-eeD5Y+/QXZzFoEHvOSZj2Q74V8BK5j3Lu3Zsrj2YUUs="; 16 + }; 17 + 18 + propagatedBuildInputs = [ 19 + uutf 20 + ]; 21 + 22 + doCheck = true; 23 + 24 + meta = { 25 + description = "A 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 + }; 31 + }
+2
pkgs/top-level/ocaml-packages.nix
··· 1783 1783 1784 1784 tsort = callPackage ../development/ocaml-modules/tsort { }; 1785 1785 1786 + tty = callPackage ../development/ocaml-modules/tty { }; 1787 + 1786 1788 tuntap = callPackage ../development/ocaml-modules/tuntap { }; 1787 1789 1788 1790 twt = callPackage ../development/ocaml-modules/twt { };