nixpkgs/pkgs/development/ocaml-modules/dune-glob/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

20 lines
434 B
Nix
Raw Normal View History

{ lib, buildDunePackage, dune_3, dune-private-libs }:
2020-08-20 11:20:00 +02:00
buildDunePackage rec {
pname = "dune-glob";
inherit (dune_3) src version;
2020-08-20 11:20:00 +02:00
duneVersion = "3";
2020-08-20 11:20:00 +02:00
dontAddPrefix = true;
propagatedBuildInputs = [ dune-private-libs ];
meta = with lib; {
inherit (dune_3.meta) homepage;
2020-08-20 11:20:00 +02:00
description = "Glob string matching language supported by dune";
maintainers = [ maintainers.marsam ];
license = licenses.mit;
};
}