-
Notifications
You must be signed in to change notification settings - Fork 64
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
802270b
commit 00cc580
Showing
7 changed files
with
56 additions
and
88 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -170,27 +170,21 @@ FILE-NAME found in ./patches relative to the current file." | |
|
||
;; END of the newer rustc versions copied over from the current Guix master. | ||
|
||
(let ((is_gui (getenv "IS_GUI"))) | ||
(concatenate-manifests | ||
(list | ||
(specifications->manifest | ||
(append | ||
(list | ||
"rust:cargo" | ||
"coreutils-minimal" | ||
"patchelf" | ||
"[email protected]") | ||
;; Additional dependencies for building the GUI. | ||
(if | ||
(string=? is_gui "1") | ||
(list "pkg-config" | ||
"eudev" | ||
"fontconfig") | ||
'()))) | ||
;; The GUI's MSRV is 1.70 and the daemon's 1.63. We just use the same rustc version for | ||
;; both. | ||
;; FIXME: be able to compile against a specified glibc (or musl) instead of having to | ||
;; resort to backporting the newer rustc releases here. Also have proper Guix packages | ||
;; for the two projects. | ||
(packages->manifest | ||
`(,rust-1.71))))) | ||
(concatenate-manifests | ||
(list | ||
(specifications->manifest | ||
(list | ||
"rust:cargo" | ||
"coreutils-minimal" | ||
"patchelf" | ||
"[email protected]" | ||
"pkg-config" | ||
"eudev" | ||
"fontconfig")) | ||
;; The GUI's MSRV is 1.70 and the daemon's 1.63. We just use the same rustc version for | ||
;; both. | ||
;; FIXME: be able to compile against a specified glibc (or musl) instead of having to | ||
;; resort to backporting the newer rustc releases here. Also have proper Guix packages | ||
;; for the two projects. | ||
(packages->manifest | ||
`(,rust-1.71)))) |