evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / development / ocaml-modules / opam-format / default.nix
blob00d0b146fb71fc5f6845f2fcfd3a22824a85fe49
1 { lib, buildDunePackage, opam-core, opam-file-format }:
3 buildDunePackage rec {
4   pname = "opam-format";
6   inherit (opam-core) src version;
8   # get rid of check for curl at configure time
9   # opam-format does not call curl at run time
10   configureFlags = [ "--disable-checks" ];
12   propagatedBuildInputs = [ opam-core opam-file-format ];
14   meta = opam-core.meta // {
15     description = "Definition of opam datastructures and its file interface";
16     maintainers = with lib.maintainers; [ sternenseemann ];
17   };