help-guix
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Simple configure-make-make_install with Guix


From: Jone
Subject: Re: Simple configure-make-make_install with Guix
Date: Fri, 25 May 2018 01:07:32 +0000

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? 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]