me
/
guix
Archived
1
0
Fork 0

net-base: Don't cross-compile.

net-base is pure data, so cross-compiling is pointless.

* gnu/packages/admin.scm
  (net-base)[arguments]<#:target>: Set to #f.
  (net-base)[arguments]<#:allowed-references>: Disallow all
  references.

Signed-off-by: Mathieu Othacehe <othacehe@gnu.org>
master
Maxime Devos 2021-07-14 13:12:51 +02:00 committed by Mathieu Othacehe
parent aaf9aa4824
commit f6e4fbad2d
No known key found for this signature in database
GPG Key ID: 8354763531769CA6
1 changed files with 5 additions and 0 deletions

View File

@ -937,6 +937,11 @@ to allow automatic login and starting any app.")
(build-system trivial-build-system)
(arguments
`(#:modules ((guix build utils))
;; This package consists solely of architecture-independent
;; tables. Cross-compilation is pointless! Make sure we'll
;; always get the same derivation.
#:target #f
#:allowed-references ()
#:builder (begin
(use-modules (guix build utils)
(srfi srfi-26))