1{
2 lib,
3 buildDunePackage,
4 opam-core,
5 opam-file-format,
6}:
7
8buildDunePackage {
9 pname = "opam-format";
10
11 inherit (opam-core) src version;
12
13 # get rid of check for curl at configure time
14 # opam-format does not call curl at run time
15 configureFlags = [ "--disable-checks" ];
16
17 propagatedBuildInputs = [
18 opam-core
19 opam-file-format
20 ];
21
22 meta = opam-core.meta // {
23 description = "Definition of opam datastructures and its file interface";
24 maintainers = with lib.maintainers; [ sternenseemann ];
25 };
26}