summary refs log tree commit diff
path: root/pkgs/development/libraries/ccrtp/default.nix
blob: 5424e7a73def95a090f53e4105bdcfe694a32297 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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;
  };
}