Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
57 lines
986 B
Nix
57 lines
986 B
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
fetchpatch,
|
|
buildDunePackage,
|
|
pkg-config,
|
|
dune-configurator,
|
|
stdio,
|
|
R,
|
|
alcotest,
|
|
}:
|
|
|
|
buildDunePackage rec {
|
|
pname = "ocaml-r";
|
|
version = "0.6.0";
|
|
|
|
duneVersion = "3";
|
|
|
|
minimalOCamlVersion = "4.08";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "pveber";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-jPyVMxjeh9+xu0dD1gelAxcOhxouKczyvzVoKZ5oSrs=";
|
|
};
|
|
|
|
# Finds R and Rmathlib separately
|
|
patches = [
|
|
(fetchpatch {
|
|
url = "https://github.com/pveber/ocaml-r/commit/aa96dc5.patch";
|
|
sha256 = "sha256-xW33W2ciesyUkDKEH08yfOXv0wP0V6X80or2/n2Nrb4=";
|
|
})
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
R
|
|
];
|
|
buildInputs = [
|
|
dune-configurator
|
|
stdio
|
|
R
|
|
];
|
|
|
|
doCheck = true;
|
|
checkInputs = [ alcotest ];
|
|
|
|
meta = {
|
|
description = "OCaml bindings for the R interpreter";
|
|
inherit (src.meta) homepage;
|
|
license = lib.licenses.gpl3;
|
|
maintainers = [ lib.maintainers.bcdarwin ];
|
|
};
|
|
|
|
}
|