ocamlPackages.opam-format: init at 2.0.7
This commit is contained in:
parent
034395d0e5
commit
ee1ea8609c
21
pkgs/development/ocaml-modules/opam-format/default.nix
Normal file
21
pkgs/development/ocaml-modules/opam-format/default.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -682,6 +682,10 @@ let
|
|||||||
|
|
||||||
opam-file-format = callPackage ../development/ocaml-modules/opam-file-format { };
|
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 = callPackage ../development/ocaml-modules/opium { };
|
||||||
|
|
||||||
opium_kernel = callPackage ../development/ocaml-modules/opium_kernel { };
|
opium_kernel = callPackage ../development/ocaml-modules/opium_kernel { };
|
||||||
|
Loading…
Reference in New Issue
Block a user