From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jone Subject: Re: Simple configure-make-make_install with Guix Date: Fri, 25 May 2018 01:07:32 +0000 Message-ID: <87fu2g7dbf.fsf@gmail.com> References: <20180524215337.3ae1ffe0@lepiller.eu> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:55539) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fLyOX-0007qR-4T for help-guix@gnu.org; Thu, 24 May 2018 18:07:44 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fLyOR-0000ew-CW for help-guix@gnu.org; Thu, 24 May 2018 18:07:36 -0400 Received: from mail-wr0-x241.google.com ([2a00:1450:400c:c0c::241]:36972) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1fLyOQ-0000e1-Tj for help-guix@gnu.org; Thu, 24 May 2018 18:07:31 -0400 Received: by mail-wr0-x241.google.com with SMTP id i12-v6so5797825wrc.4 for ; Thu, 24 May 2018 15:07:30 -0700 (PDT) In-Reply-To: <20180524215337.3ae1ffe0@lepiller.eu> (message from Julien Lepiller on Thu, 24 May 2018 21:53:36 +0200) 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: Julien Lepiller Cc: help-guix@gnu.org Thanks, Julien. Minimal working variant: (use-modules (ice-9 match) (srfi srfi-1) (guix gexp) (guix licenses) (guix build-system gnu) (guix packages) (gnu packages) (gnu packages gettext) (gnu packages pkg-config) (gnu packages glib) (gnu packages gtk) (gnu packages linux) (gnu packages audio)) (define-public gvolwheel (package (name "gvolwheel") (version "-1.0") (source (local-file "/home/jone/Desktop/gvolwheel-1.0" #:recursive? #t)) (build-system gnu-build-system) ;; see https://github.com/pjotrp/guix-notes/blob/master/HACKING.org (arguments '(#:phases (modify-phases %standard-phases (delete 'check)))) (native-inputs `(("pkg-config" ,pkg-config) ("intltool" ,intltool) ("gettext" ,gettext-minimal))) (inputs `(("alsa-lib" ,alsa-lib) ("gtk+" ,gtk+))) (synopsis "Volume control") (description "ALSA mixer") (home-page "https://sourceforge.net/projects/gvolwheel") (license gpl2))) gvolwheel What else should I fix in this package definition?