1 { lib, buildDunePackage, opam-core, opam-file-format }:
6 inherit (opam-core) src version;
8 # get rid of check for curl at configure time
9 # opam-format does not call curl at run time
10 configureFlags = [ "--disable-checks" ];
12 propagatedBuildInputs = [ opam-core opam-file-format ];
14 meta = opam-core.meta // {
15 description = "Definition of opam datastructures and its file interface";
16 maintainers = with lib.maintainers; [ sternenseemann ];