From mboxrd@z Thu Jan 1 00:00:00 1970 From: Mason Hock Subject: Re: Lilypond version Date: Mon, 04 Sep 2017 11:35:06 -0700 Message-ID: <1504550106.3138.7.camel@mason-x60.resnet.ucsb.edu> References: <1502744909.1818.7.camel@mason-x60.resnet.ucsb.edu> <8760dpgs1s.fsf@elephly.net> <1503081574.1829.2.camel@mason-x60.resnet.ucsb.edu> <8760dky18g.fsf@elephly.net> <1503131963.1911.0.camel@mason-x60.resnet.ucsb.edu> <87378nyb9y.fsf@elephly.net> <1503180987.1930.2.camel@mason-x60.resnet.ucsb.edu> <87ziauwyg8.fsf@elephly.net> <1504475879.2081.1.camel@mason-x60.resnet.ucsb.edu> <8760cyws5g.fsf@elephly.net> Mime-Version: 1.0 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:56133) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dowDL-0007z2-Lw for help-guix@gnu.org; Mon, 04 Sep 2017 14:35:20 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dowDG-0003cO-V2 for help-guix@gnu.org; Mon, 04 Sep 2017 14:35:15 -0400 Received: from mail-pg0-x234.google.com ([2607:f8b0:400e:c05::234]:38644) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1dowDG-0003bs-Ob for help-guix@gnu.org; Mon, 04 Sep 2017 14:35:10 -0400 Received: by mail-pg0-x234.google.com with SMTP id v66so3082295pgb.5 for ; Mon, 04 Sep 2017 11:35:10 -0700 (PDT) In-Reply-To: <8760cyws5g.fsf@elephly.net> 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: Ricardo Wurmus Cc: "help-guix@gnu.org" Running $ export GUIX_PACKAGE_PATH=~/Guix $ echo $GUIX_PACKAGE_PATH produces "/home//Guix". The file is saved as "/home//Guix/custom/packages/variants.scm". Then running $ guix package --install lilypond@2.18 or $ guix package --verbose --install lilypond@2.18 produces only that one error: "guix package: error: lilypond: package not found for version 2.18" Here's what I have in variants.scm, in case I did something wrong there: ------------------------------------------------------------------------ ;;; This file is not part of GNU Guix but is distributed under the same ;;; license as GNU Guix. (define-module (custom packages variants) #:use-module (guix utils) #:use-module (guix packages) #:use-module (guix download) #:use-module (gnu packages) #:use-module (gnu packages music)) (define lilypond-stable (package (inherit lilypond) (name "lilypond") (version "2.18.2") (source (origin (method url-fetch) (uri (string-append "http://download.linuxaudio.org/lilypond/sources/v" (version-major+minor version) "/" name "-" version ".tar.gz")) (sha256 (base32 "01xs9x2wjj7w9appaaqdhk15r1xvvdbz9qwahzhppfmhclvp779j")))))) ------------------------------------------------------------------------ On Mon, 2017-09-04 at 14:43 +0200, Ricardo Wurmus wrote: > Mason Hock writes: > > > Thank you. The first error is gone, but I still get > > > > guix package: error: lilypond: package not found for version 2.18 > > Are there any other error messages? It does work for me, so there are > probably other error messages that lead to a failure to evaluate the > custom module, or GUIX_PACKAGE_PATH is incorrect. > > -- > Ricardo > > GPG: BCA6 89B6 3655 3801 C3C6 2150 197A 5888 235F ACAC > https://elephly.net >