ocamlPackages.picasso: init at 0.4

This commit is contained in:
Vincent Laporte
2026-07-15 15:17:52 +02:00
parent 5637900bd8
commit ef4335d401
2 changed files with 28 additions and 0 deletions
@@ -0,0 +1,26 @@
{
lib,
fetchFromGitHub,
buildDunePackage,
apronext,
}:
buildDunePackage (finalAttrs: {
pname = "picasso";
version = "0.4";
src = fetchFromGitHub {
owner = "ghilesZ";
repo = "picasso";
tag = finalAttrs.version;
hash = "sha256-VYrN77IVXPdzPV1CNe5N4D2jgrVIHJFMvfRP6cQq/eI=";
};
propagatedBuildInputs = [ apronext ];
meta = {
description = "An Abstract element drawing library";
license = lib.licenses.lgpl2Plus;
homepage = "https://github.com/ghilesZ/picasso";
};
})
+2
View File
@@ -1765,6 +1765,8 @@ let
piaf = callPackage ../development/ocaml-modules/piaf { };
picasso = callPackage ../development/ocaml-modules/picasso { };
piqi = callPackage ../development/ocaml-modules/piqi { };
piqi-ocaml = callPackage ../development/ocaml-modules/piqi-ocaml { };