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.
This commit is contained in:
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

View file

@ -195,9 +195,9 @@ (define (linux-libre-deblob-scripts version
(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)