exosip: 4.0.0 -> 4.1.0
This commit is contained in:
parent
45cfd3969a
commit
e86bb4da9d
@ -1,18 +1,20 @@
|
|||||||
{stdenv, fetchurl, libosip, openssl, pkgconfig }:
|
{stdenv, fetchurl, libosip, openssl, pkgconfig }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
version = "4.0.0";
|
name = "libexosip2-${version}";
|
||||||
|
version = "4.1.0";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "mirror://savannah/exosip/libeXosip2-${version}.tar.gz";
|
url = "mirror://savannah/exosip/libeXosip2-${version}.tar.gz";
|
||||||
sha256 = "1rdjr3x7s992w004cqf4xji1522an9rpzsr9wvyhp685khmahrsj";
|
sha256 = "17cna8kpc8nk1si419vgr6r42k2lda0rdk50vlxrw8rzg0xp2xrw";
|
||||||
};
|
};
|
||||||
name = "libexosip2-${version}";
|
|
||||||
|
|
||||||
|
nativeBuildInputs = [ pkgconfig ];
|
||||||
buildInputs = [ libosip openssl pkgconfig ];
|
buildInputs = [ libosip openssl pkgconfig ];
|
||||||
|
|
||||||
meta = {
|
meta = with stdenv.lib; {
|
||||||
license = stdenv.lib.licenses.gpl2Plus;
|
license = licenses.gpl2Plus;
|
||||||
description = "Library that hides the complexity of using the SIP protocol";
|
description = "Library that hides the complexity of using the SIP protocol";
|
||||||
platforms = stdenv.lib.platforms.linux;
|
platforms =platforms.linux;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user