about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/dune-glob/default.nix
blob: 474fd4a52c633e7ef51214c0fd0d0ff54bc77ff2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ lib, buildDunePackage, dune_3, dune-private-libs }:

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

  duneVersion = "3";

  dontAddPrefix = true;

  propagatedBuildInputs = [ dune-private-libs ];

  preBuild = ''
    rm -r vendor/csexp
  '';

  meta = with lib; {
    inherit (dune_3.meta) homepage;
    description = "Glob string matching language supported by dune";
    maintainers = [ ];
    license = licenses.mit;
  };
}