moonlight-embedded: init at 2.2.1 (#17414)

This commit is contained in:
Robin Gloster 2016-08-01 18:46:13 +02:00 committed by Franz Pletz
parent 9c15bb7031
commit 5341b8b1f8
2 changed files with 36 additions and 0 deletions

View file

@ -0,0 +1,34 @@
{ 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.2.1";
# fetchgit used to ensure submodules are available
src = fetchgit {
url = "git://github.com/irtimmer/moonlight-embedded";
rev = "refs/tags/v${version}";
sha256 = "0m1114dsz44rvq402b4v5ib2cwj2vbasir0l8vi0q5iymwmsvxj4";
};
outputs = [ "out" "doc" ];
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;
};
}

View file

@ -13893,6 +13893,8 @@ in
inherit (gnome) libgnomecanvas glib;
};
moonlight-embedded = callPackage ../applications/misc/moonlight-embedded { };
mop = callPackage ../applications/misc/mop { };
mopidy = callPackage ../applications/audio/mopidy { };