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