mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-13 21:32:23 +03:00
libexosip: add patch for openssl 1.1
This commit is contained in:
parent
a22429bf05
commit
0243ca52bc
@ -1,20 +1,27 @@
|
|||||||
{stdenv, fetchurl, libosip, openssl, pkgconfig }:
|
{ stdenv, fetchurl, libosip, openssl, pkgconfig, fetchpatch }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "libexosip2-${version}";
|
name = "libexosip2-${version}";
|
||||||
version = "4.1.0";
|
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 = "17cna8kpc8nk1si419vgr6r42k2lda0rdk50vlxrw8rzg0xp2xrw";
|
sha256 = "17cna8kpc8nk1si419vgr6r42k2lda0rdk50vlxrw8rzg0xp2xrw";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ pkgconfig ];
|
nativeBuildInputs = [ pkgconfig ];
|
||||||
buildInputs = [ libosip openssl ];
|
buildInputs = [ libosip openssl ];
|
||||||
|
|
||||||
|
patches = [
|
||||||
|
(fetchpatch {
|
||||||
|
url = "https://sources.debian.net/data/main/libe/libexosip2/4.1.0-2.1/debian/patches/openssl110.patch";
|
||||||
|
sha256 = "01q2dax7pwh197mn18r22y38mrsky85mvs9vbkn9fpcilrdayal6";
|
||||||
|
})
|
||||||
|
];
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
license = 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 =platforms.linux;
|
platforms = platforms.linux;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -11705,9 +11705,7 @@ in
|
|||||||
|
|
||||||
libexif = callPackage ../development/libraries/libexif { };
|
libexif = callPackage ../development/libraries/libexif { };
|
||||||
|
|
||||||
libexosip = callPackage ../development/libraries/exosip {
|
libexosip = callPackage ../development/libraries/exosip {};
|
||||||
openssl = openssl_1_0_2;
|
|
||||||
};
|
|
||||||
|
|
||||||
libextractor = callPackage ../development/libraries/libextractor {
|
libextractor = callPackage ../development/libraries/libextractor {
|
||||||
libmpeg2 = mpeg2dec;
|
libmpeg2 = mpeg2dec;
|
||||||
|
Loading…
Reference in New Issue
Block a user