commit
f979844051
1 changed files with 48 additions and 0 deletions
48
pkgs/by-name/xi/xiu/package.nix
Normal file
48
pkgs/by-name/xi/xiu/package.nix
Normal file
|
@ -0,0 +1,48 @@
|
||||||
|
{ lib
|
||||||
|
, cmake
|
||||||
|
, darwin
|
||||||
|
, fetchFromGitHub
|
||||||
|
, libopus
|
||||||
|
, openssl
|
||||||
|
, pkg-config
|
||||||
|
, rustPlatform
|
||||||
|
, stdenv
|
||||||
|
}:
|
||||||
|
|
||||||
|
rustPlatform.buildRustPackage rec {
|
||||||
|
pname = "xiu";
|
||||||
|
version = "0.10.0";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "harlanc";
|
||||||
|
repo = "xiu";
|
||||||
|
rev = "v${version}";
|
||||||
|
hash = "sha256-wJXVxkW+jbqc2zFOn8RGUVI9G0+oow+eFGtF4Nsj5pA=";
|
||||||
|
};
|
||||||
|
|
||||||
|
cargoHash = "sha256-gpPEHe/RDmEapkioXq7TicrFRrJlcRqiilY+munQKws=";
|
||||||
|
|
||||||
|
nativeBuildInputs = [
|
||||||
|
cmake
|
||||||
|
pkg-config
|
||||||
|
];
|
||||||
|
|
||||||
|
buildInputs = [
|
||||||
|
libopus
|
||||||
|
] ++ lib.optionals stdenv.isLinux [
|
||||||
|
openssl
|
||||||
|
] ++ lib.optionals stdenv.isDarwin [
|
||||||
|
darwin.apple_sdk.frameworks.Security
|
||||||
|
];
|
||||||
|
|
||||||
|
OPENSSL_NO_VENDOR = 1;
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "A simple, high performance and secure live media server in pure Rust (RTMP[cluster]/RTSP/WebRTC[whip/whep]/HTTP-FLV/HLS";
|
||||||
|
homepage = "https://github.com/harlanc/xiu";
|
||||||
|
changelog = "https://github.com/harlanc/xiu/releases/tag/v${version}";
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = with maintainers; [ marsam ];
|
||||||
|
mainProgram = "xiu";
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue