2021-01-11 10:27:59 +00:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, fetchFromGitHub
|
|
|
|
, fetchpatch
|
|
|
|
, openssl
|
|
|
|
, libevent
|
|
|
|
, pkg-config
|
|
|
|
, libprom
|
|
|
|
, libpromhttp
|
|
|
|
, libmicrohttpd
|
2022-08-30 03:51:38 +00:00
|
|
|
, sqlite
|
2021-07-03 07:33:39 +00:00
|
|
|
, nixosTests
|
2021-01-11 10:27:59 +00:00
|
|
|
}:
|
2016-06-21 10:59:29 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "coturn";
|
2022-12-05 07:13:25 +00:00
|
|
|
version = "4.6.1";
|
2016-06-21 10:59:29 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "coturn";
|
|
|
|
repo = "coturn";
|
2022-12-05 08:17:34 +00:00
|
|
|
rev = "refs/tags/${version}";
|
|
|
|
hash = "sha256-ckqPxG3ieqA0H9g1GfE8hYs6tUsZfzt6/yYR1qlgoxE=";
|
2016-06-21 10:59:29 +00:00
|
|
|
};
|
|
|
|
|
2022-12-05 08:17:34 +00:00
|
|
|
nativeBuildInputs = [
|
|
|
|
pkg-config
|
|
|
|
];
|
|
|
|
|
2021-01-11 10:27:59 +00:00
|
|
|
buildInputs = [
|
|
|
|
openssl
|
2022-12-14 21:30:55 +00:00
|
|
|
(libevent.override { inherit openssl; })
|
2021-01-11 10:27:59 +00:00
|
|
|
libprom
|
|
|
|
libpromhttp
|
|
|
|
libmicrohttpd
|
2022-08-30 03:51:38 +00:00
|
|
|
sqlite.dev
|
2021-01-11 10:27:59 +00:00
|
|
|
];
|
2016-06-21 10:59:29 +00:00
|
|
|
|
2020-04-28 23:11:43 +00:00
|
|
|
patches = [
|
|
|
|
./pure-configure.patch
|
2022-12-14 21:31:17 +00:00
|
|
|
|
|
|
|
# fix build against openssl 3.x
|
|
|
|
(fetchpatch {
|
|
|
|
url = "https://github.com/coturn/coturn/commit/4ce784a8781ab086c150e2b9f5641b1a37fd9b31.patch";
|
|
|
|
hash = "sha256-Jx8XNXrgq0ockm1zjwRzfvSS3fVrVyVvQY1l0CpcR3Q=";
|
|
|
|
})
|
2020-04-28 23:11:43 +00:00
|
|
|
];
|
2016-06-21 10:59:29 +00:00
|
|
|
|
2022-06-05 17:51:08 +00:00
|
|
|
# Workaround build failure on -fno-common toolchains like upstream
|
|
|
|
# gcc-10. Otherwise build fails as:
|
|
|
|
# ld: ...-libprom-0.1.1/include/prom_collector_registry.h:37: multiple definition of
|
|
|
|
# `PROM_COLLECTOR_REGISTRY_DEFAULT'; ...-libprom-0.1.1/include/prom_collector_registry.h:37: first defined here
|
|
|
|
# Should be fixed in libprom-1.2.0 and later: https://github.com/digitalocean/prometheus-client-c/pull/25
|
2023-02-19 19:23:32 +00:00
|
|
|
env.NIX_CFLAGS_COMPILE = "-fcommon";
|
2022-06-05 17:51:08 +00:00
|
|
|
|
2021-07-03 07:33:39 +00:00
|
|
|
passthru.tests.coturn = nixosTests.coturn;
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2022-12-05 08:17:34 +00:00
|
|
|
description = "A TURN server";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://coturn.net/";
|
2022-12-05 08:18:14 +00:00
|
|
|
changelog = "https://github.com/coturn/coturn/blob/${version}/ChangeLog";
|
2016-06-21 10:59:29 +00:00
|
|
|
license = with licenses; [ bsd3 ];
|
|
|
|
platforms = platforms.all;
|
2021-01-11 10:27:59 +00:00
|
|
|
maintainers = with maintainers; [ ralith _0x4A6F ];
|
2022-12-05 08:17:34 +00:00
|
|
|
broken = stdenv.isDarwin; # 2018-10-21
|
2016-06-21 10:59:29 +00:00
|
|
|
};
|
|
|
|
}
|