mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 22:38:07 -05:00
gnu: Add gupnp-av.
* gnu/packages/gnome.scm (gupnp-av): New variable. Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org>
This commit is contained in:
parent
291a85b29b
commit
1b4cb6288a
1 changed files with 29 additions and 0 deletions
|
@ -397,6 +397,35 @@ (define-public gupnp
|
|||
(home-page "https://gitlab.gnome.org/GNOME/gupnp")
|
||||
(license license:lgpl2.0+)))
|
||||
|
||||
(define-public gupnp-av
|
||||
(package
|
||||
(name "gupnp-av")
|
||||
(version "0.12.11")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "mirror://gnome/sources/" name "/"
|
||||
(version-major+minor version) "/"
|
||||
name "-" version ".tar.xz"))
|
||||
(sha256
|
||||
(base32
|
||||
"1p3grslwqm9bc8rmpn4l48d7v9s84nina4r9xbd932dbj8acz7b8"))))
|
||||
(build-system gnu-build-system)
|
||||
(native-inputs
|
||||
`(("gettext" ,gettext-minimal)
|
||||
("glib:bin" ,glib "bin")
|
||||
("gobject-introspection" ,gobject-introspection)
|
||||
("gtk-doc" ,gtk-doc)
|
||||
("libxml" ,libxml2)
|
||||
("pkg-config" ,pkg-config)))
|
||||
(inputs
|
||||
`(("gtk+" ,gtk+)
|
||||
("gupnp" ,gupnp)))
|
||||
(synopsis "GUPnP A/V for GNOME")
|
||||
(description "This package provides a small library for handling
|
||||
and implementation of UPnP A/V profiles.")
|
||||
(home-page "https://gitlab.gnome.org/GNOME/gupnp-av")
|
||||
(license license:lgpl2.0+)))
|
||||
|
||||
(define-public libmediaart
|
||||
(package
|
||||
(name "libmediaart")
|
||||
|
|
Loading…
Reference in a new issue