1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
|
{
lib,
stdenv,
fetchFromGitHub,
cmake,
perl,
alsa-lib,
libevdev,
libopus,
udev,
SDL2,
ffmpeg,
pkg-config,
libpthread-stubs,
libxcb,
libvdpau,
libpulseaudio,
libcec,
curl,
expat,
avahi,
libuuid,
libva,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "moonlight-embedded";
version = "2.7.1";
src = fetchFromGitHub {
owner = "moonlight-stream";
repo = "moonlight-embedded";
tag = "v${finalAttrs.version}";
hash = "sha256-h+hI9TQUGMI8VDzvnuRGDjxm8D7GuC/L4/0rwTFocgA=";
fetchSubmodules = true;
};
outputs = [
"out"
"man"
];
nativeBuildInputs = [
cmake
perl
pkg-config
];
buildInputs = [
alsa-lib
libevdev
libopus
udev
SDL2
ffmpeg
libxcb
libvdpau
libpulseaudio
libcec
libpthread-stubs
curl
expat
avahi
libuuid
libva
];
meta = {
description = "Open source implementation of NVIDIA's GameStream";
homepage = "https://github.com/moonlight-stream/moonlight-embedded";
license = lib.licenses.gpl3Plus;
maintainers = [ ];
mainProgram = "moonlight";
platforms = lib.platforms.linux;
};
})
|