1{ stdenv, fetchurl, glib, openssl, pkgconfig }:
2
3stdenv.mkDerivation rec {
4 name = "sofia-sip-1.12.11";
5
6 src = fetchurl {
7 url = "mirror://sourceforge/sofia-sip/${name}.tar.gz";
8 sha256 = "10bwsdfijpbk9ahlfpk94kzdapxiahl9mljpgwghvq1630pbq09b";
9 };
10
11 buildInputs = [ glib openssl ];
12 nativeBuildInputs = [ pkgconfig ];
13
14 meta = {
15 platforms = stdenv.lib.platforms.linux;
16 };
17}