mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: yosys: Don't use unstable tarball.
* gnu/packages/fpga.scm (yosys)[source]: Use GIT-FETCH and GIT-FILE-NAME.
This commit is contained in:
parent
becee7029f
commit
21fc352bad
1 changed files with 7 additions and 6 deletions
|
@ -121,14 +121,15 @@ For synthesis, the compiler generates netlists in the desired format.")
|
||||||
(name "yosys")
|
(name "yosys")
|
||||||
(version "0.7")
|
(version "0.7")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method git-fetch)
|
||||||
(uri
|
(uri (git-reference
|
||||||
(string-append "https://github.com/cliffordwolf/yosys/archive/"
|
(url "https://github.com/cliffordwolf/yosys.git")
|
||||||
name "-" version ".tar.gz"))
|
(commit (string-append "yosys-" version))
|
||||||
|
(recursive? #t))) ; for the ‘iverilog’ submodule
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0vkfdn4phvkjqlnpqlr6q5f97bgjc3312vj5jf0vf85zqv88dy9x"))
|
"1ssrpgw0j9qlm52g1hsbb9fsww4vnwi0l7zvvky7a8w7wamddky0"))
|
||||||
(file-name (string-append name "-" version "-checkout.tar.gz"))
|
(file-name (git-file-name name version))
|
||||||
(modules '((guix build utils)))
|
(modules '((guix build utils)))
|
||||||
(snippet
|
(snippet
|
||||||
'(begin
|
'(begin
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue