2012-03-14 23:44:52 +01:00
|
|
|
{ stdenv, fetchurl, pkgconfig, glib, gupnp_igd, gstreamer, gst_plugins_base }:
|
2009-12-27 15:22:00 +01:00
|
|
|
|
2012-03-13 20:06:24 +01:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "libnice-0.1.1";
|
2009-12-27 15:22:00 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2012-03-13 20:06:24 +01:00
|
|
|
url = "http://nice.freedesktop.org/releases/${name}.tar.gz";
|
|
|
|
sha256 = "0jcpb953jn7c3ng2vbkljybzh63x6mg4m6rjxj1s1iccm3fi6qki";
|
2009-12-27 15:22:00 +01:00
|
|
|
};
|
|
|
|
|
2012-03-14 23:44:52 +01:00
|
|
|
buildInputs = [ pkgconfig glib gupnp_igd gstreamer gst_plugins_base ];
|
2009-12-27 15:22:00 +01:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = http://nice.freedesktop.org/wiki/;
|
2010-09-15 14:57:49 +02: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 15:22:00 +01:00
|
|
|
};
|
|
|
|
}
|