Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / ocaml-modules / notty / default.nix
blob9bab0482668e7e0c4249b26bc4fd4613df759514
1 { lib, buildDunePackage, fetchurl, cppo
2 , uutf
3 , lwt
4 }:
6 buildDunePackage rec {
7   version = "0.2.3";
8   pname = "notty";
10   minimalOCamlVersion = "4.08";
12   src = fetchurl {
13     url = "https://github.com/pqwy/notty/releases/download/v${version}/notty-${version}.tbz";
14     sha256 = "sha256-dGWfsUBz20Q4mJiRqyTyS++Bqkl9rBbZpn+aHJwgCCQ=";
15   };
17   nativeBuildInputs = [ cppo ];
19   propagatedBuildInputs = [ lwt uutf ];
21   meta = with lib; {
22     homepage = "https://github.com/pqwy/notty";
23     description = "Declarative terminal graphics for OCaml";
24     license = licenses.isc;
25     maintainers = with maintainers; [ sternenseemann ];
26   };