lol

julia_110: 1.10.3 -> 1.10.4

Nick Cao e0399f66 ab880c58

+2 -37
+2 -3
pkgs/development/compilers/julia/default.nix
··· 50 50 { }); 51 51 julia_110 = wrapJulia (callPackage 52 52 (import ./generic.nix { 53 - version = "1.10.3"; 54 - hash = "sha256-2JKyEjvmTaz50F5My61/F5f2v4fDl6dIBLARyHUPbI8="; 53 + version = "1.10.4"; 54 + hash = "sha256-8y5Sd/XYKmOCSILN6/rBWBmbuEgUw8AZo/7MNgFYYZE="; 55 55 patches = [ 56 - ./patches/1.10/0001-skip-building-docs-as-it-requires-network-access.patch 57 56 ./patches/1.10/0002-skip-failing-and-flaky-tests.patch 58 57 ]; 59 58 })
-34
pkgs/development/compilers/julia/patches/1.10/0001-skip-building-docs-as-it-requires-network-access.patch
··· 1 - From da7e7b2c622bcfdc3e6484a64ade50d22d52c4dd Mon Sep 17 00:00:00 2001 2 - From: Nick Cao <nickcao@nichi.co> 3 - Date: Wed, 10 Jan 2024 19:48:19 -0500 4 - Subject: [PATCH 1/2] skip building docs as it requires network access 5 - 6 - --- 7 - Makefile | 4 +--- 8 - 1 file changed, 1 insertion(+), 3 deletions(-) 9 - 10 - diff --git a/Makefile b/Makefile 11 - index 1565014a0f..edd5c65244 100644 12 - --- a/Makefile 13 - +++ b/Makefile 14 - @@ -265,7 +265,7 @@ define stringreplace 15 - endef 16 - 17 - 18 - -install: $(build_depsbindir)/stringreplace docs 19 - +install: $(build_depsbindir)/stringreplace 20 - @$(MAKE) $(QUIET_MAKE) $(JULIA_BUILD_MODE) 21 - @for subdir in $(bindir) $(datarootdir)/julia/stdlib/$(VERSDIR) $(docdir) $(man1dir) $(includedir)/julia $(libdir) $(private_libdir) $(sysconfdir) $(private_libexecdir); do \ 22 - mkdir -p $(DESTDIR)$$subdir; \ 23 - @@ -368,8 +368,6 @@ endif 24 - cp -R -L $(JULIAHOME)/base/* $(DESTDIR)$(datarootdir)/julia/base 25 - cp -R -L $(JULIAHOME)/test/* $(DESTDIR)$(datarootdir)/julia/test 26 - cp -R -L $(build_datarootdir)/julia/* $(DESTDIR)$(datarootdir)/julia 27 - - # Copy documentation 28 - - cp -R -L $(BUILDROOT)/doc/_build/html $(DESTDIR)$(docdir)/ 29 - # Remove various files which should not be installed 30 - -rm -f $(DESTDIR)$(datarootdir)/julia/base/version_git.sh 31 - -rm -f $(DESTDIR)$(datarootdir)/julia/test/Makefile 32 - -- 33 - 2.43.0 34 -