Skip to content

Commit

Permalink
moq-relay: init at v0.6.2
Browse files Browse the repository at this point in the history
  • Loading branch information
therishidesai committed Oct 15, 2024
1 parent a30e284 commit cbcfefb
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions pkgs/by-name/mo/moq-relay/package.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
{
lib,
stdenv,
fetchFromGitHub,
libressl,
pkg-config,
rustPlatform,
}:

rustPlatform.buildRustPackage rec {
pname = "moq-relay";
version = "0.6.2";

src = fetchFromGitHub {
owner = "kixelated";
repo = "moq-rs";
rev = "moq-relay-v${version}";
hash = "sha256-/2+2785FGXErG0uNVuReaf/GCFv2gypMOnrAXrA4qvs=";
};

cargoHash = "sha256-ih1UXbTHQA3wjkmajT1rHN1BUlOE/nkD+EUay1R3twE=";

nativeBuildInputs = [ pkg-config ];

buildInputs = [ libressl ];

meta = {
description = "Media Over QUIC relay server";
mainProgram = "moq-relay";
homepage = "https://quic.video/";
license = lib.licenses.asl20;
changelog = "https://github.com/kixelated/moq-rs/releases/tag/moq-relay-v${version}";
maintainers = [ lib.maintainers.therishidesai ];
};
}

0 comments on commit cbcfefb

Please sign in to comment.