From cc072bee92f5eefcc7d03dda97c98e3cb33a8485 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ludovic=20Court=C3=A8s?= Date: Mon, 30 May 2011 21:49:56 +0000 Subject: [PATCH] GNU ccRTP 2.0.0. svn path=/nixpkgs/trunk/; revision=27330 --- pkgs/development/libraries/ccrtp/default.nix | 20 +++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) diff --git a/pkgs/development/libraries/ccrtp/default.nix b/pkgs/development/libraries/ccrtp/default.nix index 26e7050a60d..27827d7b697 100644 --- a/pkgs/development/libraries/ccrtp/default.nix +++ b/pkgs/development/libraries/ccrtp/default.nix @@ -1,20 +1,22 @@ -{ stdenv, fetchurl, openssl, pkgconfig, libgcrypt, commoncpp2 }: +{ stdenv, fetchurl, openssl, pkgconfig, libgcrypt, ucommon }: stdenv.mkDerivation { - name = "ccrtp-1.8.0"; + name = "ccrtp-2.0.0"; src = fetchurl { - url = mirror://gnu/ccrtp/ccrtp-1.8.0.tar.gz; - sha256 = "0wr4dandlfajhmg90nqyvwv61ikn9vdycji001310y3c4zfysprn"; + url = mirror://gnu/ccrtp/ccrtp-2.0.0.tar.gz; + sha256 = "1gx3jsywvihwkhk69xkcpq2plb6lbylpz0gpg55c5dx7xg1796b2"; }; - buildInputs = [ openssl pkgconfig libgcrypt commoncpp2 ]; + buildInputs = [ openssl pkgconfig libgcrypt ucommon ]; - meta = { - description = "GNU ccRTP is an implementation of RTP, the real-time transport protocol from the IETF"; - homepage = "http://www.gnu.org/software/ccrtp/"; + doCheck = true; + + meta = { + description = "GNU ccRTP, an implementation of the IETF real-time transport protocol (RTP)"; + homepage = http://www.gnu.org/software/ccrtp/; license = "GPLv2"; - maintainers = [ stdenv.lib.maintainers.marcweber ]; + maintainers = with stdenv.lib.maintainers; [ marcweber ludo ]; platforms = stdenv.lib.platforms.linux; }; }