From c03ec2982833564dbf0e30c85ac9a03d1d0ab096 Mon Sep 17 00:00:00 2001 From: Tyson Whitehead Date: Wed, 28 Nov 2018 21:59:52 -0500 Subject: [PATCH] JuliaCall: Update to 0.14 to resolve libjulia.so location issues --- temporary/r-modules.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/temporary/r-modules.nix b/temporary/r-modules.nix index ad9000e..24bcb29 100644 --- a/temporary/r-modules.nix +++ b/temporary/r-modules.nix @@ -1,3 +1,9 @@ pkgs: self: super: with self; { + # OTRS 40979 (0.13.0 has issues locating libjulia.so) + JuliaCall = super.JuliaCall.override { + version = "0.14.0"; + sha256 = "1zrj1jn55qxxg95h1rfbfgzd7dn3hxm7gkwbin6zkcxi8qdc3690"; + depends = [R6 Rcpp]; + }; }