Skip to content

Commit

Permalink
moq-relay: init at v0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
therishidesai committed Sep 17, 2024
1 parent 5219e20 commit c75a5a3
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.0";

src = fetchFromGitHub {
owner = "kixelated";
repo = "moq-rs";
rev = "moq-relay-v${version}";
hash = "sha256-J9f+opePgvtsi7LfK7cH0kScB5xfZttY0Nrg89cypMs=";
};

cargoHash = "sha256-34bvlV7IJ0bn6Ghr6qH8Yh08xt2v17Mnj2Ej0h1pHM4=";

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 c75a5a3

Please sign in to comment.