ocamlPackages.notty-community: init at 0.2.4

This commit is contained in:
Vincent Laporte
2026-05-04 22:45:53 +02:00
parent 5ea52b935a
commit 043cf6cd41
2 changed files with 36 additions and 0 deletions
@@ -0,0 +1,34 @@
{
lib,
fetchurl,
buildDunePackage,
cppo,
uutf,
lwt,
}:
buildDunePackage (finalAttrs: {
pname = "notty-community";
version = "0.2.4";
src = fetchurl {
url = "https://github.com/ocaml-community/notty-community/releases/download/v${finalAttrs.version}/notty-community-${finalAttrs.version}.tar.gz";
hash = "sha256-FrA3wGX4lQZtrwXked1K/8LLvXel8xYIZ57gEmxX/d8=";
};
nativeBuildInputs = [ cppo ];
propagatedBuildInputs = [
lwt
uutf
];
doCheck = true;
meta = {
description = "A declarative terminal library for OCaml";
homepage = "https://github.com/ocaml-community/notty-community";
license = lib.licenses.isc;
maintainers = [ lib.maintainers.vbgl ];
};
})
+2
View File
@@ -1444,6 +1444,8 @@ let
notty = callPackage ../development/ocaml-modules/notty { };
notty-community = callPackage ../development/ocaml-modules/notty-community { };
npy = callPackage ../development/ocaml-modules/npy {
inherit (pkgs.python3Packages) numpy;
};