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

22 lines
598 B
Nix
Raw Normal View History

2015-08-03 20:32:11 +00:00
{ stdenv, fetchurl, pkgconfig, libsoup, glib }:
stdenv.mkDerivation {
2015-08-03 20:32:11 +00:00
name = "gssdp-0.14.11";
src = fetchurl {
2015-08-03 20:32:11 +00:00
url = mirror://gnome/sources/gssdp/0.14/gssdp-0.14.11.tar.xz;
sha256 = "0njkqr2y7c6linnw4wkc4y2vq5dfkpryqcinbzn0pzhr46psxxbv";
};
2015-08-03 20:32:11 +00:00
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ libsoup ];
propagatedBuildInputs = [ glib ];
meta = {
description = "GObject-based API for handling resource discovery and announcement over SSDP";
homepage = http://www.gupnp.org/;
license = stdenv.lib.licenses.lgpl2;
platforms = stdenv.lib.platforms.all;
};
}