1 { lib, stdenv, fetchurl, libosip, openssl, pkg-config }:
3 stdenv.mkDerivation rec {
8 url = "mirror://savannah/exosip/${pname}-${version}.tar.gz";
9 sha256 = "09bj7cm6mk8yr68y5a09a625x10ql6an3zi4pj6y1jbkhpgqibp3";
12 nativeBuildInputs = [ pkg-config ];
13 buildInputs = [ libosip openssl ];
16 license = licenses.gpl2Plus;
17 description = "Library that hides the complexity of using the SIP protocol";
18 platforms = platforms.linux;