1ff422aa23
Because man & info pages won't be going to $doc after the next commit. Scripted change for the files having one-package-per-file.
35 lines
1.0 KiB
Nix
35 lines
1.0 KiB
Nix
{ stdenv, fetchgit, cmake, perl
|
|
, alsaLib, libevdev, libopus, libudev, SDL2
|
|
, ffmpeg, pkgconfig, xorg, libvdpau, libpulseaudio, libcec
|
|
, curl, expat, avahi, enet, libuuid
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "moonlight-embedded-${version}";
|
|
version = "2.4.2";
|
|
|
|
# fetchgit used to ensure submodules are available
|
|
src = fetchgit {
|
|
url = "git://github.com/irtimmer/moonlight-embedded";
|
|
rev = "refs/tags/v${version}";
|
|
sha256 = "0khdbwfclvpjgyk5ar1fs4j66zsjikaj422wlvrvqhyzi1v5arpr";
|
|
};
|
|
|
|
outputs = [ "out" "man" ];
|
|
|
|
nativeBuildInputs = [ cmake perl ];
|
|
buildInputs = [
|
|
alsaLib libevdev libopus libudev SDL2
|
|
ffmpeg pkgconfig xorg.libxcb libvdpau libpulseaudio libcec
|
|
xorg.libpthreadstubs curl expat avahi enet libuuid
|
|
];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Open source implementation of NVIDIA's GameStream";
|
|
homepage = https://github.com/irtimmer/moonlight-embedded;
|
|
license = licenses.gpl3;
|
|
maintainers = [ maintainers.globin ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|