biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / ocaml-modules / tty / default.nix
blob8c5c1b47524afe1d4245c7d3fbbf2d2e67a7254b
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 = "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   };