Skip to content
Snippets Groups Projects
Unverified Commit cca5720f authored by Leo Famulari's avatar Leo Famulari
Browse files

gnu: Fix fetching the linux-libre deblobbing script.

This is a followup to commit 105a0370.

* gnu/packages/linux.scm (linux-libre-deblob-scripts): Truncate the version in
the file-name, not the source URI.
parent 3c9294c0
No related branches found
No related tags found
No related merge requests found
...@@ -195,9 +195,9 @@ (define (linux-libre-deblob-scripts version ...@@ -195,9 +195,9 @@ (define (linux-libre-deblob-scripts version
(method url-fetch) (method url-fetch)
(uri (string-append "https://linux-libre.fsfla.org" (uri (string-append "https://linux-libre.fsfla.org"
"/pub/linux-libre/releases/" version "-gnu/" "/pub/linux-libre/releases/" version "-gnu/"
"deblob-" version)) "deblob-" (version-major+minor version)))
(file-name (string-append "linux-libre-deblob-" (file-name (string-append "linux-libre-deblob-"
(version-major+minor version))) version))
(sha256 deblob-hash)) (sha256 deblob-hash))
(origin (origin
(method url-fetch) (method url-fetch)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment