depot/third_party/nixpkgs/pkgs/development/ocaml-modules/notty/default.nix
Default email b450903751 Project import generated by Copybara.
GitOrigin-RevId: 74a1793c659d09d7cf738005308b1f86c90cb59b
2022-09-09 16:08:57 +02:00

27 lines
636 B
Nix

{ lib, buildDunePackage, fetchurl, cppo
, uutf
, lwt
}:
buildDunePackage rec {
version = "0.2.3";
pname = "notty";
minimalOCamlVersion = "4.08";
src = fetchurl {
url = "https://github.com/pqwy/notty/releases/download/v${version}/notty-${version}.tbz";
sha256 = "sha256-dGWfsUBz20Q4mJiRqyTyS++Bqkl9rBbZpn+aHJwgCCQ=";
};
nativeBuildInputs = [ cppo ];
propagatedBuildInputs = [ lwt uutf ];
meta = with lib; {
homepage = "https://github.com/pqwy/notty";
description = "Declarative terminal graphics for OCaml";
license = licenses.isc;
maintainers = with maintainers; [ sternenseemann ];
};
}