From mboxrd@z Thu Jan 1 00:00:00 1970 From: mikadoZero Subject: Build package for multiple platforms Date: Fri, 22 Mar 2019 13:08:32 -0400 Message-ID: Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([209.51.188.92]:53499) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1h7NmI-0003hw-Qf for help-guix@gnu.org; Fri, 22 Mar 2019 13:16:23 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1h7NfK-0008U7-4G for help-guix@gnu.org; Fri, 22 Mar 2019 13:09:11 -0400 Received: from forward105p.mail.yandex.net ([77.88.28.108]:40361) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1h7NfI-0008G6-Ag for help-guix@gnu.org; Fri, 22 Mar 2019 13:09:10 -0400 Received: from mxback22g.mail.yandex.net (mxback22g.mail.yandex.net [IPv6:2a02:6b8:0:1472:2741:0:8b7:322]) by forward105p.mail.yandex.net (Yandex) with ESMTP id 0F4CE4D40AB7 for ; Fri, 22 Mar 2019 20:09:06 +0300 (MSK) List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-guix-bounces+gcggh-help-guix=m.gmane.org@gnu.org Sender: "Help-Guix" To: Help Guix I am preparing a patch for a package. I am following the manual section "14.6 Submitting Patches". The fifth suggestion is to build the package for multiple platforms. I have added these to the system configuration file: module: virtualization package: qemu service (taken from 14.6 Submitting Patches): (service qemu-binfmt-service-type (qemu-binfmt-configuration (platforms (lookup-qemu-platforms "arm" "aarch64" "ppc" "mips64el")) (guix-support? #t))) When I try to do a system reconfigure I get this error: error: qemu-binfmt-service-type: unbound variable hint: Did you forget a `use-modules' form? The closest package I can find using `guix package -s` is proot but adding the module linux and the package proot does not solve this error message. What should I do to get the system reconfiguration to work?