(define-module (guile-xyz) #:use-module (guix gexp) #:use-module (guix packages) #:use-module (guix licenses) #:use-module (guix git-download) #:use-module (guix build-system gnu) #:use-module ((guix build utils) #:select (with-directory-excursion)) #:use-module (gnu packages) #:use-module (gnu packages autotools) #:use-module (gnu packages guile) #:use-module (gnu packages pkg-config) #:use-module (gnu packages gnome) #:use-module (gnu packages texinfo)) (define-public guile-libnotify (package (name "guile-libnotify") (version "0.1.0") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/ekaitz-zarraga/guile-libnotify") (commit version))) (file-name (git-file-name name version)) (sha256 (base32 "1x5jzjri3ffb8vccphav6kd92q1qqpaj46mwhdcblxpc5xk6cbs4")))) (build-system gnu-build-system) (native-inputs (list autoconf automake pkg-config #;texinfo)) (inputs (list guile-3.0-latest libnotify)) (synopsis "Guile bindings for libnotify") (description "Provides bindings for GNOME's libnotify C library to Guile") (home-page "https://github.com/ekaitz-zarraga/guile-libnotify") (license gpl3+)))