2021-01-20 22:24:04 +00:00
|
|
|
{ lib, stdenv, fetchurl, libosip, openssl, pkg-config }:
|
2011-01-13 20:49:58 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "libexosip2";
|
2021-01-20 22:24:04 +00:00
|
|
|
version = "5.2.0";
|
2017-04-29 11:38:59 +01:00
|
|
|
|
2017-03-12 19:44:58 +00:00
|
|
|
src = fetchurl {
|
2021-01-20 22:24:04 +00:00
|
|
|
url = "mirror://savannah/exosip/${pname}-${version}.tar.gz";
|
|
|
|
sha256 = "09bj7cm6mk8yr68y5a09a625x10ql6an3zi4pj6y1jbkhpgqibp3";
|
2011-01-13 20:49:58 +00:00
|
|
|
};
|
2017-04-29 11:38:59 +01:00
|
|
|
|
2021-01-19 06:50:56 +00:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2017-09-05 22:26:13 +01:00
|
|
|
buildInputs = [ libosip openssl ];
|
2017-04-29 11:38:59 +01:00
|
|
|
|
2021-01-21 17:00:13 +00:00
|
|
|
meta = with lib; {
|
2017-03-12 19:44:58 +00:00
|
|
|
license = licenses.gpl2Plus;
|
2011-01-13 20:49:58 +00:00
|
|
|
description = "Library that hides the complexity of using the SIP protocol";
|
2017-04-29 11:38:59 +01:00
|
|
|
platforms = platforms.linux;
|
2011-01-13 20:49:58 +00:00
|
|
|
};
|
|
|
|
}
|