coturn: don't build against openssl_1_1 anymore
This commit is contained in:
parent
6f6dbe2dcd
commit
c8528b82d2
2 changed files with 7 additions and 3 deletions
|
@ -38,6 +38,12 @@ stdenv.mkDerivation rec {
|
||||||
|
|
||||||
patches = [
|
patches = [
|
||||||
./pure-configure.patch
|
./pure-configure.patch
|
||||||
|
|
||||||
|
# fix build against openssl 3.x
|
||||||
|
(fetchpatch {
|
||||||
|
url = "https://github.com/coturn/coturn/commit/4ce784a8781ab086c150e2b9f5641b1a37fd9b31.patch";
|
||||||
|
hash = "sha256-Jx8XNXrgq0ockm1zjwRzfvSS3fVrVyVvQY1l0CpcR3Q=";
|
||||||
|
})
|
||||||
];
|
];
|
||||||
|
|
||||||
# Workaround build failure on -fno-common toolchains like upstream
|
# Workaround build failure on -fno-common toolchains like upstream
|
||||||
|
|
|
@ -4057,9 +4057,7 @@ with pkgs;
|
||||||
|
|
||||||
cot = with python3Packages; toPythonApplication cot;
|
cot = with python3Packages; toPythonApplication cot;
|
||||||
|
|
||||||
coturn = callPackage ../servers/coturn {
|
coturn = callPackage ../servers/coturn { };
|
||||||
openssl = openssl_1_1;
|
|
||||||
};
|
|
||||||
|
|
||||||
coursier = callPackage ../development/tools/coursier {};
|
coursier = callPackage ../development/tools/coursier {};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue