nixpkgs/pkgs/development/libraries/ccrtp/default.nix
Ludovic Courtès 68369c5475 GNU ccrtp 1.7.1.
svn path=/nixpkgs/trunk/; revision=21054
2010-04-13 08:56:18 +00:00

20 lines
562 B
Nix

args: with args;
stdenv.mkDerivation {
name = "ccrtp-1.7.1";
src = fetchurl {
url = mirror://gnu/ccrtp/ccrtp-1.7.1.tar.gz;
sha256 = "0psi91r0fgawpa5x4jiq7lkr180agdi25gi0mfriqcmykxg7r1jn";
};
buildInputs = [openssl pkgconfig libgcrypt commoncpp2];
meta = {
description = "GNU ccRTP is an implementation of RTP, the real-time transport protocol from the IETF";
homepage = "http://www.gnu.org/software/ccrtp/";
license = "GPLv2";
maintainers = [args.lib.maintainers.marcweber];
platforms = args.lib.platforms.linux;
};
}