1 { lib, buildDunePackage, unzip
2 , opam, ocamlgraph, re, cppo }:
7 inherit (opam) src version;
11 nativeBuildInputs = [ unzip cppo ];
12 propagatedBuildInputs = [ ocamlgraph re ];
14 # get rid of check for curl at configure time
15 # opam-core does not call curl at run time
16 configureFlags = [ "--disable-checks" ];
19 description = "Small standard library extensions, and generic system interaction modules used by opam";
20 maintainers = with lib.maintainers; [ sternenseemann ];