From edc99a3deb39e2c9e4395f59dbf69b9f5b1721ba Mon Sep 17 00:00:00 2001 From: Raghav Gururajan Date: Fri, 3 Jan 2020 10:38:26 -0500 Subject: [PATCH] gnu: Add gssdp. * gnu/packages/gnome.scm (gssdp): New variable. --- gnu/packages/gnome.scm | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index 1e713d4fe1..b32fc43eec 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -246,6 +246,35 @@ Desktop. It is designed to be as simple as possible and has some unique features to enable users to create their discs easily and quickly.") (license license:gpl2+))) +(define-public gssdp + (package + (name "gssdp") + (version "1.2.2") + (source (origin + (method url-fetch) + (uri (string-append "mirror://gnome/sources/" name "/" + (version-major+minor version) "/" + name "-" version ".tar.xz")) + (sha256 + (base32 + "195hi10vrsvh6i927mm6rm1ld5sxah3h5sr3bsjm90vb8lxrxfya")))) + (build-system meson-build-system) + (native-inputs + `(("gettext" ,gettext-minimal) + ("glib:bin" ,glib "bin") + ("pkg-config" ,pkg-config))) + (inputs + `(("gtk-doc" ,gtk-doc) + ("gobject-introspection" ,gobject-introspection) + ("gtk+" ,gtk+) + ("libsoup" ,libsoup) + ("vala" ,vala))) + (synopsis "GObject-based API over SSDP for GNOME desktop") + (description "A GObject-based API for handling resource discovery +and announcement over SSDP.") + (home-page "https://gitlab.gnome.org/GNOME/gssdp") + (license license:gpl2))) + (define-public libmediaart (package (name "libmediaart") -- 2.24.1