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

stdenv.mkDerivation rec {
  name = "libzrtpcpp-2.3.4";

  src = fetchurl {
    url = "mirror://gnu/ccrtp/${name}.tar.gz";
    sha256 = "020hfyrh8qdwkqdg1r1n65wdzj5i01ba9dzjghbm9lbz93gd9r83";
  };

  # We disallow 'lib64', or pkgconfig will not find it.
  prePatch = ''
    sed -i s/lib64/lib/ CMakeLists.txt
  '';

  nativeBuildInputs = [ cmake pkgconfig ];
  buildInputs = [ openssl ccrtp ];

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