5e7c2d6cef
GitOrigin-RevId: f99e5f03cc0aa231ab5950a15ed02afec45ed51a
104 lines
3.7 KiB
Nix
104 lines
3.7 KiB
Nix
{ autoPatchelfHook, fetchurl, lib, stdenv }:
|
|
|
|
let
|
|
skip_tests = [
|
|
# Test flaky on ofborg
|
|
"channels"
|
|
|
|
# Test flaky because of our RPATH patching
|
|
# https://github.com/NixOS/nixpkgs/pull/230965#issuecomment-1545336489
|
|
"compiler/codegen"
|
|
] ++ lib.optionals stdenv.isDarwin [
|
|
# Test flaky on ofborg
|
|
"FileWatching"
|
|
# Test requires pbcopy
|
|
"InteractiveUtils"
|
|
# Test requires network access
|
|
"Sockets"
|
|
] ++ lib.optionals (stdenv.isDarwin && stdenv.isx86_64) [
|
|
# Test Failed at $out/share/julia/stdlib/v1.8/LinearAlgebra/test/blas.jl:702
|
|
"LinearAlgebra/blas"
|
|
# Test Failed at $out/share/julia/test/misc.jl:724
|
|
"misc"
|
|
];
|
|
in
|
|
stdenv.mkDerivation rec {
|
|
pname = "julia-bin";
|
|
version = "1.9.3";
|
|
|
|
src = {
|
|
x86_64-linux = fetchurl {
|
|
url = "https://julialang-s3.julialang.org/bin/linux/x64/${lib.versions.majorMinor version}/julia-${version}-linux-x86_64.tar.gz";
|
|
sha256 = "d76670cc9ba3e0fd4c1545dd3d00269c0694976a1176312795ebce1692d323d1";
|
|
};
|
|
aarch64-linux = fetchurl {
|
|
url = "https://julialang-s3.julialang.org/bin/linux/aarch64/${lib.versions.majorMinor version}/julia-${version}-linux-aarch64.tar.gz";
|
|
sha256 = "55437879f6b98470d96c4048b922501b643dfffb8865abeb90c7333a83df7524";
|
|
};
|
|
x86_64-darwin = fetchurl {
|
|
url = "https://julialang-s3.julialang.org/bin/mac/x64/${lib.versions.majorMinor version}/julia-${version}-mac64.tar.gz";
|
|
sha256 = "6eea87748424488226090d1e7d553e72ab106a873d63c732fc710a3d080abb97";
|
|
};
|
|
aarch64-darwin = fetchurl {
|
|
url = "https://julialang-s3.julialang.org/bin/mac/aarch64/${lib.versions.majorMinor version}/julia-${version}-macaarch64.tar.gz";
|
|
sha256 = "f518e38d7bd5b37766fb051916bd295993aa4b52a47018f4c98b5fde721ced87";
|
|
};
|
|
}.${stdenv.hostPlatform.system} or (throw "Unsupported system: ${stdenv.hostPlatform.system}");
|
|
|
|
patches = [
|
|
# https://github.com/JuliaLang/julia/commit/f5eeba35d9bf20de251bb9160cc935c71e8b19ba
|
|
./patches/1.9-bin/0001-allow-skipping-internet-required-tests.patch
|
|
];
|
|
|
|
postPatch = ''
|
|
# Julia fails to pick up our Certification Authority root certificates, but
|
|
# it provides its own so we can simply disable the test. Patching in the
|
|
# dynamic path to ours require us to rebuild the Julia system image.
|
|
substituteInPlace share/julia/stdlib/v${lib.versions.majorMinor version}/NetworkOptions/test/runtests.jl \
|
|
--replace '@test ca_roots_path() != bundled_ca_roots()' \
|
|
'@test_skip ca_roots_path() != bundled_ca_roots()'
|
|
'';
|
|
|
|
nativeBuildInputs = lib.optionals stdenv.isLinux [
|
|
autoPatchelfHook
|
|
# https://github.com/JuliaLang/julia/blob/v1.9.0/NEWS.md#external-dependencies
|
|
stdenv.cc.cc
|
|
];
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
cp -r . $out
|
|
runHook postInstall
|
|
'';
|
|
|
|
# Breaks backtraces, etc.
|
|
dontStrip = true;
|
|
|
|
doInstallCheck = true;
|
|
preInstallCheck = ''
|
|
export JULIA_TEST_USE_MULTIPLE_WORKERS=true
|
|
# Some tests require read/write access to $HOME.
|
|
export HOME="$TMPDIR"
|
|
'';
|
|
installCheckPhase = ''
|
|
runHook preInstallCheck
|
|
# Command lifted from `test/Makefile`.
|
|
$out/bin/julia \
|
|
--check-bounds=yes \
|
|
--startup-file=no \
|
|
--depwarn=error \
|
|
$out/share/julia/test/runtests.jl \
|
|
--skip internet_required ${toString skip_tests}
|
|
runHook postInstallCheck
|
|
'';
|
|
|
|
meta = {
|
|
description = "High-level, high-performance, dynamic language for technical computing";
|
|
homepage = "https://julialang.org";
|
|
# Bundled and linked with various GPL code, although Julia itself is MIT.
|
|
license = lib.licenses.gpl2Plus;
|
|
maintainers = with lib.maintainers; [ raskin nickcao wegank ];
|
|
platforms = [ "x86_64-linux" "aarch64-linux" "x86_64-darwin" "aarch64-darwin" ];
|
|
mainProgram = "julia";
|
|
};
|
|
}
|