ocamlPackages.opam-core: init at 2.0.7
This commit is contained in:
parent
cd8e099ffe
commit
034395d0e5
20
pkgs/development/ocaml-modules/opam-core/default.nix
Normal file
20
pkgs/development/ocaml-modules/opam-core/default.nix
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
{ lib, buildDunePackage, unzip
|
||||||
|
, opam, ocamlgraph, re, cppo }:
|
||||||
|
|
||||||
|
buildDunePackage rec {
|
||||||
|
pname = "opam-core";
|
||||||
|
|
||||||
|
inherit (opam) src version;
|
||||||
|
|
||||||
|
nativeBuildInputs = [ unzip cppo ];
|
||||||
|
propagatedBuildInputs = [ ocamlgraph re ];
|
||||||
|
|
||||||
|
# get rid of check for curl at configure time
|
||||||
|
# opam-core does not call curl at run time
|
||||||
|
configureFlags = [ "--disable-checks" ];
|
||||||
|
|
||||||
|
meta = opam.meta // {
|
||||||
|
description = "Small standard library extensions, and generic system interaction modules used by opam";
|
||||||
|
maintainers = with lib.maintainers; [ sternenseemann ];
|
||||||
|
};
|
||||||
|
}
|
@ -676,6 +676,10 @@ let
|
|||||||
|
|
||||||
omd = callPackage ../development/ocaml-modules/omd { };
|
omd = callPackage ../development/ocaml-modules/omd { };
|
||||||
|
|
||||||
|
opam-core = callPackage ../development/ocaml-modules/opam-core {
|
||||||
|
inherit (pkgs) opam unzip;
|
||||||
|
};
|
||||||
|
|
||||||
opam-file-format = callPackage ../development/ocaml-modules/opam-file-format { };
|
opam-file-format = callPackage ../development/ocaml-modules/opam-file-format { };
|
||||||
|
|
||||||
opium = callPackage ../development/ocaml-modules/opium { };
|
opium = callPackage ../development/ocaml-modules/opium { };
|
||||||
|
Loading…
Reference in New Issue
Block a user