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