2015-08-03 21:05:37 +00:00
|
|
|
{ stdenv, fetchurl, pkgconfig, glib, gupnp_igd, gst_all_1 }:
|
2009-12-27 14:22:00 +00:00
|
|
|
|
2012-03-13 19:06:24 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2015-08-03 21:05:37 +00:00
|
|
|
name = "libnice-0.1.13";
|
2013-02-23 21:20:42 +00:00
|
|
|
|
2009-12-27 14:22:00 +00:00
|
|
|
src = fetchurl {
|
2012-03-13 19:06:24 +00:00
|
|
|
url = "http://nice.freedesktop.org/releases/${name}.tar.gz";
|
2015-08-03 21:05:37 +00:00
|
|
|
sha256 = "1q8rhklbz1zla67r4mw0f7v3m5b32maj0prnr0kshcz97fgjs4b1";
|
2009-12-27 14:22:00 +00:00
|
|
|
};
|
|
|
|
|
2015-08-03 21:05:37 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [ gst_all_1.gstreamer gst_all_1.gst-plugins-base ];
|
|
|
|
propagatedBuildInputs = [ glib gupnp_igd ];
|
2009-12-27 14:22:00 +00:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = http://nice.freedesktop.org/wiki/;
|
2010-09-15 12:57:49 +00:00
|
|
|
description = "The GLib ICE implementation";
|
|
|
|
longDescription = ''
|
|
|
|
Libnice is an implementation of the IETF's Interactice Connectivity
|
|
|
|
Establishment (ICE) standard (RFC 5245) and the Session Traversal
|
|
|
|
Utilities for NAT (STUN) standard (RFC 5389).
|
|
|
|
|
|
|
|
It provides a GLib-based library, libnice and a Glib-free library,
|
|
|
|
libstun as well as GStreamer elements.'';
|
2009-12-27 14:22:00 +00:00
|
|
|
};
|
|
|
|
}
|