nixpkgs/pkgs/development/libraries/libnice/default.nix
Yury G. Kudryashov fe1115caf4 Make nixpkgs ready for gst_all attrset removal
svn path=/nixpkgs/trunk/; revision=33092
2012-03-14 22:44:52 +00:00

25 lines
830 B
Nix

{ stdenv, fetchurl, pkgconfig, glib, gupnp_igd, gstreamer, gst_plugins_base }:
stdenv.mkDerivation rec {
name = "libnice-0.1.1";
src = fetchurl {
url = "http://nice.freedesktop.org/releases/${name}.tar.gz";
sha256 = "0jcpb953jn7c3ng2vbkljybzh63x6mg4m6rjxj1s1iccm3fi6qki";
};
buildInputs = [ pkgconfig glib gupnp_igd gstreamer gst_plugins_base ];
meta = {
homepage = http://nice.freedesktop.org/wiki/;
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.'';
};
}