nixpkgs/pkgs/development/libraries/gssdp/default.nix

23 lines
616 B
Nix
Raw Normal View History

2015-08-03 21:32:11 +01:00
{ stdenv, fetchurl, pkgconfig, libsoup, glib }:
2017-03-13 00:41:00 +00:00
stdenv.mkDerivation rec {
name = "gssdp-${version}";
version = "1.0.1";
src = fetchurl {
2017-03-13 00:41:00 +00:00
url = "mirror://gnome/sources/gssdp/1.0/${name}.tar.xz";
sha256 = "1qfj4gir1qf6v86z70ryzmjb75ns30q6zi5p89vhd3621gs6f7b0";
};
2015-08-03 21:32:11 +01:00
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ libsoup ];
propagatedBuildInputs = [ glib ];
2017-03-13 00:41:00 +00:00
meta = with stdenv.lib; {
description = "GObject-based API for handling resource discovery and announcement over SSDP";
homepage = http://www.gupnp.org/;
2017-03-13 00:41:00 +00:00
license = licenses.lgpl2;
platforms = platforms.all;
};
}