libfmvoice: 0-unstable-2024-11-08 -> 0-unstable-2024-12-11 (#364919)
[NixPkgs.git] / pkgs / development / ocaml-modules / notty / default.nix
blob26ed24c5f322b29f01787aea025d54b9f2fa1bcb
2   lib,
3   buildDunePackage,
4   fetchurl,
5   cppo,
6   uutf,
7   lwt,
8 }:
10 buildDunePackage rec {
11   version = "0.2.3";
12   pname = "notty";
14   minimalOCamlVersion = "4.08";
16   src = fetchurl {
17     url = "https://github.com/pqwy/notty/releases/download/v${version}/notty-${version}.tbz";
18     sha256 = "sha256-dGWfsUBz20Q4mJiRqyTyS++Bqkl9rBbZpn+aHJwgCCQ=";
19   };
21   nativeBuildInputs = [ cppo ];
23   propagatedBuildInputs = [
24     lwt
25     uutf
26   ];
28   meta = with lib; {
29     homepage = "https://github.com/pqwy/notty";
30     description = "Declarative terminal graphics for OCaml";
31     license = licenses.isc;
32     maintainers = with maintainers; [ sternenseemann ];
33   };