mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 04:02:55 +03:00
ocamlPackages.ocaml-r: init at 0.2.0
This commit is contained in:
parent
5853515f6c
commit
8e686bacc4
31
pkgs/development/ocaml-modules/ocaml-r/default.nix
Normal file
31
pkgs/development/ocaml-modules/ocaml-r/default.nix
Normal file
@ -0,0 +1,31 @@
|
||||
{ lib, fetchFromGitHub, buildDunePackage, pkg-config, configurator, stdio, R }:
|
||||
|
||||
buildDunePackage rec {
|
||||
pname = "ocaml-r";
|
||||
version = "0.2.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "pveber";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "09gljccwjsw9693m1hm9hcyvgp3p2fvg3cfn18yyidpc2f81a4fy";
|
||||
};
|
||||
|
||||
# Without the following patch, stub generation fails with:
|
||||
# > Fatal error: exception (Failure "not supported: osVersion")
|
||||
preConfigure = ''
|
||||
substituteInPlace stubgen/stubgen.ml --replace \
|
||||
'failwithf "not supported: %s" name ()' \
|
||||
'sprintf "(* not supported: %s *)" name'
|
||||
'';
|
||||
|
||||
buildInputs = [ configurator pkg-config R stdio ];
|
||||
|
||||
meta = {
|
||||
description = "OCaml bindings for the R interpreter";
|
||||
inherit (src.meta) homepage;
|
||||
license = lib.licenses.gpl3;
|
||||
maintainers = [ lib.maintainers.bcdarwin ];
|
||||
};
|
||||
|
||||
}
|
@ -615,6 +615,8 @@ let
|
||||
|
||||
pgocaml_ppx = callPackage ../development/ocaml-modules/pgocaml/ppx.nix {};
|
||||
|
||||
ocaml-r = callPackage ../development/ocaml-modules/ocaml-r { };
|
||||
|
||||
ocaml-sat-solvers = callPackage ../development/ocaml-modules/ocaml-sat-solvers { };
|
||||
|
||||
ocamlscript = callPackage ../development/tools/ocaml/ocamlscript { };
|
||||
|
Loading…
Reference in New Issue
Block a user