nixpkgs/pkgs/development/libraries/srtp/linphone.nix
Lluís Batlle i Rossell 169c8ce3f7 Linphone 3.6.1
Lots of updates and new/old libs to get the latest linphone

It segfaults on running.
2013-06-29 16:59:08 +02:00

16 lines
370 B
Nix

{ stdenv, fetchgit, automake, autoconf, libtool }:
stdenv.mkDerivation {
name = "srtp-linphone-git-20130530-1c9bd9065";
src = fetchgit {
url = git://git.linphone.org/srtp.git;
rev = "1c9bd9065";
sha256 = "0r4wbrih8bggs69fnfmzm17z1pp1zp8x9qwcckcq6wc54b16d9g3";
};
preConfigure = "autoreconf -vfi";
buildInputs = [ automake autoconf libtool ];
}