mirror of
https://https.git.savannah.gnu.org/git/guix.git/
synced 2025-07-15 19:40:46 +02:00
gnu: Add guile-taglib.
* gnu/packages/guile-xyz.scm (guile-taglib): New variable. Change-Id: I68cb1945104b64f621c9e6a1689b63f66c59144e Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
cf10268a77
commit
c8d0cfe38c
1 changed files with 36 additions and 0 deletions
|
@ -104,6 +104,7 @@
|
||||||
#:use-module (gnu packages man)
|
#:use-module (gnu packages man)
|
||||||
#:use-module (gnu packages maths)
|
#:use-module (gnu packages maths)
|
||||||
#:use-module (gnu packages mes)
|
#:use-module (gnu packages mes)
|
||||||
|
#:use-module (gnu packages mp3)
|
||||||
#:use-module (gnu packages multiprecision)
|
#:use-module (gnu packages multiprecision)
|
||||||
#:use-module (gnu packages ncurses)
|
#:use-module (gnu packages ncurses)
|
||||||
#:use-module (gnu packages networking)
|
#:use-module (gnu packages networking)
|
||||||
|
@ -1062,6 +1063,41 @@ manager. It can be used to query Sway, assign keybindings and listen to
|
||||||
events in Guile.")
|
events in Guile.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public guile-taglib
|
||||||
|
(let ((commit "c056ac9eb375459c53284aa20f35b0778cfa3cea")
|
||||||
|
(version "0")
|
||||||
|
(revision "0"))
|
||||||
|
(package
|
||||||
|
(name "guile-taglib")
|
||||||
|
(version (git-version version revision commit))
|
||||||
|
(home-page "https://github.com/sbarbit/guile-taglib")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/sbarbit/guile-taglib")
|
||||||
|
(commit commit)))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32 "07z65hqxjm6rd9cdk2b9dcxj8hgz7c9dg4iprr19jrvj4ymzrbff"))))
|
||||||
|
(build-system guile-build-system)
|
||||||
|
(native-inputs (list guile-3.0))
|
||||||
|
(propagated-inputs (list taglib))
|
||||||
|
(arguments
|
||||||
|
(list
|
||||||
|
#:phases
|
||||||
|
#~(modify-phases %standard-phases
|
||||||
|
(add-after 'unpack 'fix-taglib-path
|
||||||
|
(lambda* (#:key inputs #:allow-other-keys)
|
||||||
|
(substitute* "taglib.scm"
|
||||||
|
(("libtag_c.so")
|
||||||
|
(search-input-file inputs "/lib/libtag_c.so"))))))))
|
||||||
|
(synopsis "Guile bindings for the taglib library")
|
||||||
|
(description
|
||||||
|
"This package provides Guile bindings for the taglib C library.
|
||||||
|
It can be used to access and modify metadata for audio files.")
|
||||||
|
(license license:gpl2+))))
|
||||||
|
|
||||||
(define-public guile-syntax-highlight
|
(define-public guile-syntax-highlight
|
||||||
(package
|
(package
|
||||||
(name "guile-syntax-highlight")
|
(name "guile-syntax-highlight")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue