~ruther/guix-cross-shells

guix-cross-shells/examples/cross-shell-u-boot.scm -rw-r--r-- 318 bytes
121e12b3 — Rutherther chore: Make this a channel 5 days ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
(use-modules
 (gnu packages gcc)
 (gnu packages bootloaders)
 (cross-shells cross-profile))

(define profile
  (cross-profile
  (target-system "aarch64-linux-gnu")
  ;; (inputs (list gcc))
  (inputs-from (list u-boot-orangepi-zero2w))))

(define profile-package (make-cross-profile-package
 profile))

profile-package