mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-12 00:33:10 +00:00
36 lines
997 B
Nix
36 lines
997 B
Nix
{ lib, stdenv, fetchFromGitHub, cmake, perl
|
|
, alsa-lib, libevdev, libopus, udev, SDL2
|
|
, ffmpeg, pkg-config, xorg, libvdpau, libpulseaudio, libcec
|
|
, curl, expat, avahi, libuuid, libva
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "moonlight-embedded";
|
|
version = "2.6.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "moonlight-stream";
|
|
repo = "moonlight-embedded";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-57gD8vyUk4+eJB+QkD+hZzyzM+Lhvue1mY7xSApYWn8=";
|
|
fetchSubmodules = true;
|
|
};
|
|
|
|
outputs = [ "out" "man" ];
|
|
|
|
nativeBuildInputs = [ cmake perl pkg-config ];
|
|
buildInputs = [
|
|
alsa-lib libevdev libopus udev SDL2
|
|
ffmpeg xorg.libxcb libvdpau libpulseaudio libcec
|
|
xorg.libpthreadstubs curl expat avahi libuuid libva
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Open source implementation of NVIDIA's GameStream";
|
|
homepage = "https://github.com/moonlight-stream/moonlight-embedded";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = [];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|