1{
2 lib,
3 buildDunePackage,
4 opam,
5 jsonm,
6 ocamlgraph,
7 re,
8 sha,
9 swhid_core,
10 uutf,
11 patch,
12}:
13
14buildDunePackage {
15 pname = "opam-core";
16
17 inherit (opam) src version;
18
19 propagatedBuildInputs = [
20 jsonm
21 ocamlgraph
22 uutf
23 re
24 sha
25 swhid_core
26 patch
27 ];
28
29 # get rid of check for curl at configure time
30 # opam-core does not call curl at run time
31 configureFlags = [ "--disable-checks" ];
32
33 meta = opam.meta // {
34 description = "Small standard library extensions, and generic system interaction modules used by opam";
35 maintainers = with lib.maintainers; [ sternenseemann ];
36 };
37}