2017-06-20 06:12:32 +01:00
|
|
|
{ stdenv, fetchurl, pkgconfig, glib, gupnp_igd, gst_all_1, gnutls }:
|
2009-12-27 14:22:00 +00:00
|
|
|
|
2012-03-13 19:06:24 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2017-06-20 06:12:32 +01:00
|
|
|
name = "libnice-0.1.14";
|
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";
|
2017-06-20 06:12:32 +01:00
|
|
|
sha256 = "17404z0fr6z3k7s2pkyyh9xp5gv7yylgyxx01mpl7424bnlhn4my";
|
2009-12-27 14:22:00 +00:00
|
|
|
};
|
|
|
|
|
2015-08-03 22:05:37 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2017-06-20 06:12:32 +01:00
|
|
|
buildInputs = [ gst_all_1.gstreamer gst_all_1.gst-plugins-base gnutls ];
|
2015-08-03 22:05:37 +01:00
|
|
|
propagatedBuildInputs = [ glib gupnp_igd ];
|
2009-12-27 14:22:00 +00:00
|
|
|
|
|
|
|
meta = {
|
2017-08-02 22:50:51 +01:00
|
|
|
homepage = https://nice.freedesktop.org/wiki/;
|
2010-09-15 13:57:49 +01: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.'';
|
2016-08-02 18:50:55 +01:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2009-12-27 14:22:00 +00:00
|
|
|
};
|
|
|
|
}
|