1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/development/libraries/ccrtp/default.nix

24 lines
662 B
Nix
Raw Normal View History

{ stdenv, fetchurl, openssl, pkgconfig, libgcrypt, ucommon }:
stdenv.mkDerivation {
2013-12-18 12:46:14 +00:00
name = "ccrtp-2.0.6";
src = fetchurl {
2013-12-18 12:46:14 +00:00
url = mirror://gnu/ccrtp/ccrtp-2.0.6.tar.gz;
sha256 = "06rqwk2w5sikfb3l5bcpxszhq4g7ra840gqx1f011xrmhvclrzir";
};
buildInputs = [ openssl pkgconfig libgcrypt ];
propagatedBuildInputs = [ ucommon ];
doCheck = true;
meta = {
description = "An implementation of the IETF real-time transport protocol (RTP)";
homepage = http://www.gnu.org/software/ccrtp/;
license = stdenv.lib.licenses.gpl2;
2013-08-16 22:44:33 +01:00
maintainers = with stdenv.lib.maintainers; [ marcweber ];
platforms = stdenv.lib.platforms.linux;
};
}