~ruther/guix-cross-shells

ref: 2248828c058fcc718ddb614635622994ab63d089 guix-cross-shells/examples/cross-shell-u-boot.scm -rw-r--r-- 318 bytes
2248828c — Rutherther fix: respect host-system for native-inputs and target-inputs 2 months 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