From mboxrd@z Thu Jan 1 00:00:00 1970 From: Mark H Weaver Subject: Re: [Patch] gst-plugins-base Date: Wed, 30 Mar 2016 17:57:24 -0400 Message-ID: <87lh4z1vej.fsf@netris.org> References: <20160330183809.29bd3b17@debian-netbook> <87shz71vlh.fsf@netris.org> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:50227) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1alO7L-0001pX-Dr for guix-devel@gnu.org; Wed, 30 Mar 2016 17:57:36 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1alO7H-0000zp-DC for guix-devel@gnu.org; Wed, 30 Mar 2016 17:57:35 -0400 Received: from world.peace.net ([50.252.239.5]:41550) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1alO7H-0000zl-A6 for guix-devel@gnu.org; Wed, 30 Mar 2016 17:57:31 -0400 In-Reply-To: <87shz71vlh.fsf@netris.org> (Mark H. Weaver's message of "Wed, 30 Mar 2016 17:53:14 -0400") List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: Efraim Flashner Cc: guix-devel@gnu.org Mark H Weaver writes: > Here's one way to do it: > > (inputs > `(("cdparanoia" ,cdparanoia) > ,@(if (any (cute string-prefix? <> (or (%current-target-system) > (%current-system))) > '("arm" "mips")) > '() > `(("orc" ,orc))) > > You'll need to import (srfi srfi-1) for 'any' and (srfi srfi-26) for > 'cute'. > > What do you think? Can you send an updated patch? One more thing: please add a comment containing the string "FIXME", explaining that we are omitting "orc" on arm and mips, and the reason why. Thanks! Mark