mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-12 14:16:55 -05:00
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:
parent
3c9294c05f
commit
cca5720f41
1 changed files with 2 additions and 2 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue