mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 15:03:28 +00:00
ocamlPackages.dune-action-plugin: init at 2.7.0
This commit is contained in:
parent
41ae05a202
commit
bc00ecedfa
@ -0,0 +1,19 @@
|
||||
{ lib, buildDunePackage, dune_2, dune-glob, dune-private-libs }:
|
||||
|
||||
buildDunePackage rec {
|
||||
pname = "dune-action-plugin";
|
||||
inherit (dune_2) src version;
|
||||
|
||||
useDune2 = true;
|
||||
|
||||
dontAddPrefix = true;
|
||||
|
||||
propagatedBuildInputs = [ dune-glob dune-private-libs ];
|
||||
|
||||
meta = with lib; {
|
||||
inherit (dune_2.meta) homepage;
|
||||
description = "API for writing dynamic Dune actions";
|
||||
maintainers = [ maintainers.marsam ];
|
||||
license = licenses.mit;
|
||||
};
|
||||
}
|
@ -226,6 +226,8 @@ let
|
||||
then pkgs.dune_2
|
||||
else throw "dune_2 is not available for OCaml ${ocaml.version}";
|
||||
|
||||
dune-action-plugin = callPackage ../development/ocaml-modules/dune-action-plugin { };
|
||||
|
||||
dune-build-info = callPackage ../development/ocaml-modules/dune-build-info { };
|
||||
|
||||
dune-configurator = callPackage ../development/ocaml-modules/dune-configurator { };
|
||||
|
Loading…
Reference in New Issue
Block a user