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
parent
3c9294c05f
commit
cca5720f41
|
@ -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)
|
||||
|
|
Reference in New Issue