ocamlPackages.opam-format: init at 2.0.7

This commit is contained in:
sternenseemann 2020-05-20 23:26:32 +02:00 committed by Vincent Laporte
parent 034395d0e5
commit ee1ea8609c
2 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,21 @@
{ lib, buildDunePackage, unzip, opam-core, opam-file-format }:
buildDunePackage rec {
pname = "opam-format";
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 ];
};
}

View File

@ -682,6 +682,10 @@ let
opam-file-format = callPackage ../development/ocaml-modules/opam-file-format { };
opam-format = callPackage ../development/ocaml-modules/opam-format {
inherit (pkgs) unzip;
};
opium = callPackage ../development/ocaml-modules/opium { };
opium_kernel = callPackage ../development/ocaml-modules/opium_kernel { };