summary refs log tree commit diff
path: root/pkgs/development/libraries/srtp/linphone.nix
blob: 9108be5e30c9e1bdd791818690ed963796601866 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ 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 ];
}