67 lines
1.1 KiB
Nix
67 lines
1.1 KiB
Nix
|
{ stdenv
|
||
|
, fetchurl
|
||
|
, meson
|
||
|
, ninja
|
||
|
, pkgconfig
|
||
|
, gobject-introspection
|
||
|
, vala
|
||
|
, gtk-doc
|
||
|
, docbook_xsl
|
||
|
, docbook_xml_dtd_412
|
||
|
, libsoup
|
||
|
, gtk3
|
||
|
, glib
|
||
|
, gnome3
|
||
|
}:
|
||
|
|
||
|
stdenv.mkDerivation rec {
|
||
|
pname = "gssdp";
|
||
|
version = "1.2.2";
|
||
|
|
||
|
outputs = [ "out" "bin" "dev" "devdoc" ];
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = "mirror://gnome/sources/gssdp/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
||
|
sha256 = "195hi10vrsvh6i927mm6rm1ld5sxah3h5sr3bsjm90vb8lxrxfya";
|
||
|
};
|
||
|
|
||
|
nativeBuildInputs = [
|
||
|
meson
|
||
|
ninja
|
||
|
pkgconfig
|
||
|
gobject-introspection
|
||
|
vala
|
||
|
gtk-doc
|
||
|
docbook_xsl
|
||
|
docbook_xml_dtd_412
|
||
|
];
|
||
|
|
||
|
buildInputs = [
|
||
|
libsoup
|
||
|
gtk3
|
||
|
];
|
||
|
|
||
|
propagatedBuildInputs = [
|
||
|
glib
|
||
|
];
|
||
|
|
||
|
mesonFlags = [
|
||
|
"-Dgtk_doc=true"
|
||
|
];
|
||
|
|
||
|
doCheck = true;
|
||
|
|
||
|
passthru = {
|
||
|
updateScript = gnome3.updateScript {
|
||
|
packageName = pname;
|
||
|
};
|
||
|
};
|
||
|
|
||
|
meta = with stdenv.lib; {
|
||
|
description = "GObject-based API for handling resource discovery and announcement over SSDP";
|
||
|
homepage = "http://www.gupnp.org/";
|
||
|
license = licenses.lgpl2Plus;
|
||
|
platforms = platforms.all;
|
||
|
};
|
||
|
}
|