mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-28 06:14:26 +03:00
ocamlPackages.dune-glob: init at 2.7.0
This commit is contained in:
parent
548bd1e04f
commit
41ae05a202
19
pkgs/development/ocaml-modules/dune-glob/default.nix
Normal file
19
pkgs/development/ocaml-modules/dune-glob/default.nix
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
{ lib, buildDunePackage, dune_2, dune-private-libs }:
|
||||||
|
|
||||||
|
buildDunePackage rec {
|
||||||
|
pname = "dune-glob";
|
||||||
|
inherit (dune_2) src version;
|
||||||
|
|
||||||
|
useDune2 = true;
|
||||||
|
|
||||||
|
dontAddPrefix = true;
|
||||||
|
|
||||||
|
propagatedBuildInputs = [ dune-private-libs ];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
inherit (dune_2.meta) homepage;
|
||||||
|
description = "Glob string matching language supported by dune";
|
||||||
|
maintainers = [ maintainers.marsam ];
|
||||||
|
license = licenses.mit;
|
||||||
|
};
|
||||||
|
}
|
@ -230,6 +230,8 @@ let
|
|||||||
|
|
||||||
dune-configurator = callPackage ../development/ocaml-modules/dune-configurator { };
|
dune-configurator = callPackage ../development/ocaml-modules/dune-configurator { };
|
||||||
|
|
||||||
|
dune-glob = callPackage ../development/ocaml-modules/dune-glob { };
|
||||||
|
|
||||||
dune-private-libs = callPackage ../development/ocaml-modules/dune-private-libs { };
|
dune-private-libs = callPackage ../development/ocaml-modules/dune-private-libs { };
|
||||||
|
|
||||||
dune-release = callPackage ../development/tools/ocaml/dune-release {
|
dune-release = callPackage ../development/tools/ocaml/dune-release {
|
||||||
|
Loading…
Reference in New Issue
Block a user