Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / ocaml-modules / opam-core / default.nix
blob3106fe83fd70f7b936db078a250c3dc29144b747
1 { lib, buildDunePackage, unzip
2 , opam, ocamlgraph, re, cppo }:
4 buildDunePackage rec {
5   pname = "opam-core";
7   inherit (opam) src version;
9   useDune2 = true;
11   nativeBuildInputs = [ unzip cppo ];
12   propagatedBuildInputs = [ ocamlgraph re ];
14   # get rid of check for curl at configure time
15   # opam-core does not call curl at run time
16   configureFlags = [ "--disable-checks" ];
18   meta = opam.meta // {
19     description = "Small standard library extensions, and generic system interaction modules used by opam";
20     maintainers = with lib.maintainers; [ sternenseemann ];
21   };