mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
62 lines
997 B
Nix
62 lines
997 B
Nix
{ stdenv
|
|
, lib
|
|
, fetchFromGitHub
|
|
, wrapQtAppsHook
|
|
, pkg-config
|
|
, qmake
|
|
, qtquickcontrols2
|
|
, SDL2
|
|
, SDL2_ttf
|
|
, libva
|
|
, libvdpau
|
|
, libxkbcommon
|
|
, alsa-lib
|
|
, libpulseaudio
|
|
, openssl
|
|
, libopus
|
|
, ffmpeg
|
|
, wayland
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "moonlight-qt";
|
|
version = "3.1.4";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "moonlight-stream";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "1sg8svb6xvkczp9slqnlm0b6k0z3bzdi4zzvwzzy21kpj6im9002";
|
|
fetchSubmodules = true;
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
wrapQtAppsHook
|
|
pkg-config
|
|
qmake
|
|
];
|
|
|
|
buildInputs = [
|
|
qtquickcontrols2
|
|
SDL2
|
|
SDL2_ttf
|
|
libva
|
|
libvdpau
|
|
libxkbcommon
|
|
alsa-lib
|
|
libpulseaudio
|
|
openssl
|
|
libopus
|
|
ffmpeg
|
|
wayland
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Play your PC games on almost any device";
|
|
homepage = "https://moonlight-stream.org";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = with maintainers; [ luc65r ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|