-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.scm
More file actions
35 lines (32 loc) · 954 Bytes
/
manifest.scm
File metadata and controls
35 lines (32 loc) · 954 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
(use-modules (guix packages)
(guix search-paths)
(gnu packages rust)
(gnu packages commencement)
(gnu packages tls)
(gnu packages base))
(define openssl-with-dir
(package
(inherit openssl)
(native-search-paths
(cons (search-path-specification
(variable "OPENSSL_DIR")
(files '("."))
(file-type 'directory)
(separator #f))
(package-native-search-paths openssl)))))
(define gcc-toolchain-with-cc
(package
(inherit gcc-toolchain)
(native-search-paths
(cons (search-path-specification
(variable "CC")
(files '("bin/gcc"))
(file-type 'regular)
(separator #f))
(package-native-search-paths gcc-toolchain)))))
(packages->manifest
(list rust
(list rust "cargo")
rust-analyzer
gcc-toolchain-with-cc
openssl-with-dir))