summary refs log tree commit diff
path: root/pkgs/development/libraries/libzrtpcpp/default.nix
blob: a57f7135cdb577dc677cd9892426ade79d7c2d31 (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 = "libzrtpcpp-1.4.1.tar";

  src = fetchurl {
    url = mirror://gnu/ccrtp/libzrtpcpp-1.4.1.tar.gz;
    sha256 = "0gj5xiv15xnxdbppa06fy02j8jg0zm1capva4nhbpgzg08n7p8y0";
  };

  buildInputs = [commoncpp2 openssl pkgconfig ccrtp];

  meta = { 
    description = "GNU RTP stack for the zrtp protocol developed by Phil Zimmermann";
    homepage = "http://www.gnutelephony.org/index.php/GNU_ZRTP";
    license = "GPLv2";
    maintainers = [args.lib.maintainers.marcweber];
    platforms = args.lib.platforms.linux;
  };
}