biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / ocaml-modules / opam-format / default.nix
blobfdb8ba33d5eb3c3561dc4c5ee38c4cc002c9ae33
1 { lib, buildDunePackage, unzip, opam-core, opam-file-format }:
3 buildDunePackage rec {
4   pname = "opam-format";
6   useDune2 = true;
8   inherit (opam-core) src version;
10   minimumOCamlVersion = "4.02.3";
12   # get rid of check for curl at configure time
13   # opam-format does not call curl at run time
14   configureFlags = [ "--disable-checks" ];
16   nativeBuildInputs = [ unzip ];
17   propagatedBuildInputs = [ opam-core opam-file-format ];
19   meta = opam-core.meta // {
20     description = "Definition of opam datastructures and its file interface";
21     maintainers = with lib.maintainers; [ sternenseemann ];
22   };