mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 07:31:20 +00:00
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 { };
|
||||
|
||||
opam-core = callPackage ../development/ocaml-modules/opam-core {
|
||||
inherit (pkgs) opam unzip;
|
||||
};
|
||||
|
||||
opam-file-format = callPackage ../development/ocaml-modules/opam-file-format { };
|
||||
|
||||
opium = callPackage ../development/ocaml-modules/opium { };
|
||||
|
|
Loading…
Reference in a new issue