lol
1{ lib
2, buildDunePackage
3, fetchurl
4, uutf
5}:
6
7buildDunePackage 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}