me
/
guix
Archived
1
0
Fork 0

gnu: rust-devise-core-0.2: Build the package.

* gnu/packages/crates-io.scm (rust-devise-core-0.2)[arguments]: Don't
skip the build.  Add a phase to set RUSTC_BOOTSTRAP.

Signed-off-by: Aaron Covrig <aaron.covrig.us@ieee.org>
Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
Change-Id: Icf22ff4a1151c6f872be1bd86d34b402619b6f90
master
Aaron Covrig 2024-04-05 20:44:33 -04:00 committed by Efraim Flashner
parent b438073aad
commit 70c5530114
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 9 additions and 6 deletions

View File

@ -21054,12 +21054,15 @@ procedural macros.")
(sha256
(base32 "0wr3jdzzibpafz73hcca83wnzdgjinvm7axmxnyfkbasbnfkw1fi"))))
(arguments
`(#:skip-build? #t
#:cargo-inputs
(("rust-bitflags" ,rust-bitflags-1)
("rust-proc-macro2" ,rust-proc-macro2-0.4)
("rust-quote" ,rust-quote-0.6)
("rust-syn" ,rust-syn-0.15))))))
`(#:cargo-inputs (("rust-bitflags" ,rust-bitflags-1)
("rust-proc-macro2" ,rust-proc-macro2-0.4)
("rust-quote" ,rust-quote-0.6)
("rust-syn" ,rust-syn-0.15))
#:phases (modify-phases %standard-phases
;; Enable using nightly/dev features
(add-after 'unpack 'enable-unstable-features
(lambda _
(setenv "RUSTC_BOOTSTRAP" "1"))))))))
(define-public rust-dhcproto-0.9
(package