From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ricardo Wurmus Subject: Re: [PATCH 2/2] gnu: Add AlsaModularSynth. Date: Wed, 04 Mar 2015 08:08:59 +0100 Message-ID: <87zj7t8cj8.fsf@mango.localdomain> References: <1424552053-17323-1-git-send-email-rekado@elephly.net> <1424552053-17323-2-git-send-email-rekado@elephly.net> <878ufr6kf0.fsf@mango.localdomain> <87h9udbraa.fsf@mango.localdomain> <871tlexf9r.fsf@gnu.org> <87twy9abtb.fsf@mango.localdomain> <87lhjk61nb.fsf@gnu.org> <87h9u4akv7.fsf@mango.localdomain> <87h9u40vus.fsf@netris.org> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:36578) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YT3Qi-0007FB-6X for guix-devel@gnu.org; Wed, 04 Mar 2015 02:09:17 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YT3Qg-0007y7-LB for guix-devel@gnu.org; Wed, 04 Mar 2015 02:09:16 -0500 In-reply-to: <87h9u40vus.fsf@netris.org> 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: Mark H Weaver Cc: guix-devel@gnu.org Mark H Weaver writes: >> From dbf194fdfd5baf9b79ebc7ba3c60835421cce12a Mon Sep 17 00:00:00 2001 >> From: Ricardo Wurmus >> Date: Sun, 1 Mar 2015 13:35:06 +0100 >> Subject: [PATCH 1/2] gnu: Add clalsadrv. >> >> * gnu/packages/audio.scm (clalsadrv): New variable. >> --- >> gnu/packages/audio.scm | 43 +++++++++++++++++++++++++++++++++++++++++++ >> 1 file changed, 43 insertions(+) >> [...] >> + (alist-cons-after >> + 'install >> + 'install-symlink >> + (lambda _ >> + (symlink "libclalsadrv.so" >> + (string-append (assoc-ref %outputs "out") >> + "/lib/libclalsadrv.so.2"))) > > On Hydra, this 'symlink' call is failing on both x86_64 and mips64el. > See: > > http://hydra.gnu.org/build/263381/log/tail-reload > http://hydra.gnu.org/build/263382/log/tail-reload > > Can you look into it? The problem here is that the library is not installed to /lib, but to /lib64 or /libmips64. I'll see if I can coerce it to install the library to /lib on all platforms. ~~ Ricardo