1
0
Fork 1
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:
sternenseemann 2020-05-17 12:00:32 +02:00 committed by Vincent Laporte
parent cd8e099ffe
commit 034395d0e5
2 changed files with 24 additions and 0 deletions

View 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 ];
};
}

View file

@ -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 { };