lol
1{ stdenv, fetchurl, pkgconfig, libsoup, glib }:
2
3stdenv.mkDerivation rec {
4 name = "gssdp-${version}";
5 version = "1.0.1";
6
7 src = fetchurl {
8 url = "mirror://gnome/sources/gssdp/1.0/${name}.tar.xz";
9 sha256 = "1qfj4gir1qf6v86z70ryzmjb75ns30q6zi5p89vhd3621gs6f7b0";
10 };
11
12 nativeBuildInputs = [ pkgconfig ];
13 buildInputs = [ libsoup ];
14 propagatedBuildInputs = [ glib ];
15
16 meta = with stdenv.lib; {
17 description = "GObject-based API for handling resource discovery and announcement over SSDP";
18 homepage = http://www.gupnp.org/;
19 license = licenses.lgpl2;
20 platforms = platforms.all;
21 };
22}