summary refs log tree commit diff
path: root/pkgs/development/libraries/ccrtp/default.nix
blob: 1b00e52a5b6bd323c1b21cb2f4268d7e57c156c8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ stdenv, fetchurl, openssl, pkgconfig, libgcrypt, commoncpp2 }:

stdenv.mkDerivation {
  name = "ccrtp-1.7.2";

  src = fetchurl {
    url = mirror://gnu/ccrtp/ccrtp-1.7.2.tar.gz;
    sha256 = "1vz759f0342ih95sc7vmzx8als7y2ddr0s3jaaj03x22r7xaqzwy";
  };

  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 = [ stdenv.lib.maintainers.marcweber ];
    platforms = stdenv.lib.platforms.linux;
  };
}