Skip to content

Commit 8bffa39

Browse files
authored
Merge pull request #1575 from wingtk/nasm-mirror
Fix nasm download server is down
2 parents e2fec06 + d2403ed commit 8bffa39

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

gvsbuild/tools.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -137,14 +137,14 @@ def __init__(self):
137137
self,
138138
"nasm",
139139
version="2.16.03",
140-
archive_url="https://www.nasm.us/pub/nasm/releasebuilds/{version}/win64/nasm-{version}-win64.zip",
140+
archive_url="https://github.com/xmake-mirror/nasm/releases/download/nasm-{version}/nasm-{version}-win64.zip",
141141
hash="3ee4782247bcb874378d02f7eab4e294a84d3d15f3f6ee2de2f47a46aa7226e6",
142142
dir_part="nasm-{version}",
143143
exe_name="nasm.exe",
144144
)
145145

146146
def unpack(self):
147-
# We download directly the exe file so we copy it on the tool directory ...
147+
# We directly download the exe file, so we copy it on the tool directory
148148
self.mark_deps = extract_exec(
149149
self.archive_file,
150150
self.builder.opts.tools_root_dir,

0 commit comments

Comments
 (0)