me
/
guix
Archived
1
0
Fork 0

gnu: Fix fetching the linux-libre deblobbing script.

This is a followup to commit 105a037090.

* gnu/packages/linux.scm (linux-libre-deblob-scripts): Truncate the version in
the file-name, not the source URI.
master
Leo Famulari 2020-09-15 19:57:48 -04:00
parent 3c9294c05f
commit cca5720f41
No known key found for this signature in database
GPG Key ID: 2646FA30BACA7F08
1 changed files with 2 additions and 2 deletions

View File

@ -195,9 +195,9 @@ defconfig. Return the appropriate make target if applicable, otherwise return
(method url-fetch)
(uri (string-append "https://linux-libre.fsfla.org"
"/pub/linux-libre/releases/" version "-gnu/"
"deblob-" version))
"deblob-" (version-major+minor version)))
(file-name (string-append "linux-libre-deblob-"
(version-major+minor version)))
version))
(sha256 deblob-hash))
(origin
(method url-fetch)