mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: rust: Update to 1.37.0.
* gnu/packages/rust.scm (rust): Rename to... (rust-1.36): ...this. (rust): New variable.
This commit is contained in:
parent
c3e59de9b1
commit
02c61278f1
1 changed files with 18 additions and 1 deletions
|
@ -1073,7 +1073,7 @@ (define-public rust-1.35
|
|||
(("bins::check") "//bins::check"))
|
||||
#t)))))))))
|
||||
|
||||
(define-public rust
|
||||
(define-public rust-1.36
|
||||
(let ((base-rust
|
||||
(rust-bootstrapped-package rust-1.35 "1.36.0"
|
||||
"06xv2p6zq03lidr0yaf029ii8wnjjqa894nkmrm6s0rx47by9i04")))
|
||||
|
@ -1084,3 +1084,20 @@ (define-public rust
|
|||
((#:phases phases)
|
||||
`(modify-phases ,phases
|
||||
(delete 'patch-process-docs-rev-cmd))))))))
|
||||
|
||||
(define-public rust
|
||||
(let ((base-rust
|
||||
(rust-bootstrapped-package rust-1.36 "1.37.0"
|
||||
"1hrqprybhkhs6d9b5pjskfnc5z9v2l2gync7nb39qjb5s0h703hj")))
|
||||
(package
|
||||
(inherit base-rust)
|
||||
(arguments
|
||||
(substitute-keyword-arguments (package-arguments base-rust)
|
||||
((#:phases phases)
|
||||
`(modify-phases ,phases
|
||||
(add-before 'configure 'configure-cargo-home
|
||||
(lambda _
|
||||
(let ((cargo-home (string-append (getcwd) "/.cargo")))
|
||||
(mkdir-p cargo-home)
|
||||
(setenv "CARGO_HOME" cargo-home)
|
||||
#t))))))))))
|
||||
|
|
Loading…
Reference in a new issue