coturn: add changelog to meta

This commit is contained in:
Fabian Affolter 2022-12-05 09:17:34 +01:00 committed by GitHub
parent 26f0929fb7
commit 3ee2983103
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -19,11 +19,14 @@ stdenv.mkDerivation rec {
src = fetchFromGitHub {
owner = "coturn";
repo = "coturn";
rev = version;
sha256 = "sha256-ckqPxG3ieqA0H9g1GfE8hYs6tUsZfzt6/yYR1qlgoxE=";
rev = "refs/tags/${version}";
hash = "sha256-ckqPxG3ieqA0H9g1GfE8hYs6tUsZfzt6/yYR1qlgoxE=";
};
nativeBuildInputs = [ pkg-config ];
nativeBuildInputs = [
pkg-config
];
buildInputs = [
openssl
libevent
@ -47,11 +50,12 @@ stdenv.mkDerivation rec {
passthru.tests.coturn = nixosTests.coturn;
meta = with lib; {
homepage = "https://coturn.net/";
license = with licenses; [ bsd3 ];
description = "A TURN server";
homepage = "https://coturn.net/";
changelog = "https://github.com/coturn/coturn/blob/${version}/ChangeLog",
license = with licenses; [ bsd3 ];
platforms = platforms.all;
broken = stdenv.isDarwin; # 2018-10-21
maintainers = with maintainers; [ ralith _0x4A6F ];
broken = stdenv.isDarwin; # 2018-10-21
};
}