mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 13:58:15 -05:00
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>
This commit is contained in:
parent
aaf9aa4824
commit
f6e4fbad2d
1 changed files with 5 additions and 0 deletions
|
@ -937,6 +937,11 @@ (define-public net-base
|
|||
(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))
|
||||
|
|
Loading…
Reference in a new issue