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.

24 lines
461 B
Nix
Raw Normal View History

{ lib, buildDunePackage, dune_3, dune-private-libs }:
2020-08-20 09:20:00 +00:00
buildDunePackage rec {
pname = "dune-glob";
inherit (dune_3) src version;
2020-08-20 09:20:00 +00:00
duneVersion = "3";
2020-08-20 09:20:00 +00:00
dontAddPrefix = true;
propagatedBuildInputs = [ dune-private-libs ];
preBuild = ''
rm -r vendor/csexp
'';
2020-08-20 09:20:00 +00:00
meta = with lib; {
inherit (dune_3.meta) homepage;
2020-08-20 09:20:00 +00:00
description = "Glob string matching language supported by dune";
2024-04-24 04:20:00 +00:00
maintainers = [ ];
2020-08-20 09:20:00 +00:00
license = licenses.mit;
};
}