mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: Do not truncate the version of the linux-libre deblobbing script file names.
* gnu/packages/linux.scm (linux-libre-deblob-scripts): Use VERSION instead of VERSION-MAJOR+MINOR.
This commit is contained in:
parent
99a9aa8f55
commit
105a037090
1 changed files with 2 additions and 3 deletions
|
@ -195,7 +195,7 @@ (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-major+minor version)))
|
||||
"deblob-" version))
|
||||
(file-name (string-append "linux-libre-deblob-"
|
||||
(version-major+minor version)))
|
||||
(sha256 deblob-hash))
|
||||
|
@ -204,8 +204,7 @@ (define (linux-libre-deblob-scripts version
|
|||
(uri (string-append "https://linux-libre.fsfla.org"
|
||||
"/pub/linux-libre/releases/" version "-gnu/"
|
||||
"deblob-check"))
|
||||
(file-name (string-append "linux-libre-deblob-check-"
|
||||
(version-major+minor version)))
|
||||
(file-name (string-append "linux-libre-deblob-check-" version))
|
||||
(sha256 deblob-check-hash))))
|
||||
|
||||
(define deblob-scripts-5.8
|
||||
|
|
Loading…
Reference in a new issue