aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/ocaml-modules/dune-glob/default.nix
blob: c7c6f9be4ee0da6dc95f51a858a263942aa587b4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ lib, buildDunePackage, dune_2, dune-private-libs }:

buildDunePackage rec {
  pname = "dune-glob";
  inherit (dune_2) src version patches;

  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;
  };
}