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?
