coturn: don't build against openssl_1_1 anymore

This commit is contained in:
ajs124 2022-12-14 22:31:17 +01:00
parent 6f6dbe2dcd
commit c8528b82d2
2 changed files with 7 additions and 3 deletions

View file

@ -38,6 +38,12 @@ stdenv.mkDerivation rec {
patches = [
./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

View file

@ -4057,9 +4057,7 @@ with pkgs;
cot = with python3Packages; toPythonApplication cot;
coturn = callPackage ../servers/coturn {
openssl = openssl_1_1;
};
coturn = callPackage ../servers/coturn { };
coursier = callPackage ../development/tools/coursier {};