mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 05:00:16 +00:00
add libnice
svn path=/nixpkgs/trunk/; revision=19134
This commit is contained in:
parent
2dc9c266e7
commit
c9e8b92980
16
pkgs/development/libraries/libnice/default.nix
Normal file
16
pkgs/development/libraries/libnice/default.nix
Normal file
|
@ -0,0 +1,16 @@
|
|||
{stdenv, fetchurl, pkgconfig, glib}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "libnice-0.0.10";
|
||||
|
||||
src = fetchurl {
|
||||
url = http://nice.freedesktop.org/releases/libnice-0.0.10.tar.gz;
|
||||
sha256 = "04r7syk67ihw8gzy83f603kmwvqv2dpd1mrfzpk4p72vjqrqidl6";
|
||||
};
|
||||
|
||||
buildInputs = [ pkgconfig glib ];
|
||||
|
||||
meta = {
|
||||
homepage = http://nice.freedesktop.org/wiki/;
|
||||
};
|
||||
}
|
|
@ -3886,6 +3886,11 @@ let
|
|||
inherit stdenv fetchurl perl;
|
||||
};
|
||||
|
||||
libnice = import ../development/libraries/libnice {
|
||||
inherit stdenv fetchurl pkgconfig;
|
||||
inherit (gnome) glib;
|
||||
};
|
||||
|
||||
libQGLViewer = import ../development/libraries/libqglviewer {
|
||||
inherit fetchurl stdenv;
|
||||
inherit qt4;
|
||||
|
|
Loading…
Reference in a new issue