summary refs log blame commit diff
path: root/pkgs/development/ocaml-modules/opam-format/default.nix
blob: fdb8ba33d5eb3c3561dc4c5ee38c4cc002c9ae33 (plain) (tree)
1
2
3
4
5
6
7




                                                              

                  















                                                                             
{ lib, buildDunePackage, unzip, opam-core, opam-file-format }:

buildDunePackage rec {
  pname = "opam-format";

  useDune2 = true;

  inherit (opam-core) src version;

  minimumOCamlVersion = "4.02.3";

  # get rid of check for curl at configure time
  # opam-format does not call curl at run time
  configureFlags = [ "--disable-checks" ];

  nativeBuildInputs = [ unzip ];
  propagatedBuildInputs = [ opam-core opam-file-format ];

  meta = opam-core.meta // {
    description = "Definition of opam datastructures and its file interface";
    maintainers = with lib.maintainers; [ sternenseemann ];
  };
}