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