ocamlPackages.stog_asy: init at 1.0.0

This commit is contained in:
Vincent Laporte 2024-03-21 07:38:00 +01:00 committed by Vincent Laporte
parent 472c35cbac
commit b4c92ba59d
2 changed files with 15 additions and 0 deletions

View File

@ -0,0 +1,14 @@
{ buildDunePackage, stog, ocf_ppx }:
buildDunePackage {
pname = "stog_asy";
inherit (stog) version src;
buildInputs = [ ocf_ppx ];
propagatedBuildInputs = [ stog ];
meta = stog.meta // {
description = "Stog plugin to include Asymptote results in documents";
};
}

View File

@ -1724,6 +1724,7 @@ let
stdune = callPackage ../development/ocaml-modules/stdune { };
stog = callPackage ../applications/misc/stog { };
stog_asy = callPackage ../applications/misc/stog/asy.nix { };
stringext = callPackage ../development/ocaml-modules/stringext { };