1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-04 19:45:54 +00:00
nixpkgs/pkgs/applications/misc/moonlight-qt/default.nix

62 lines
997 B
Nix
Raw Normal View History

2021-03-22 19:45:45 +00:00
{ stdenv
, lib
, fetchFromGitHub
, wrapQtAppsHook
, pkg-config
, qmake
, qtquickcontrols2
, SDL2
, SDL2_ttf
, libva
, libvdpau
, libxkbcommon
, alsa-lib
2021-03-22 19:45:45 +00:00
, libpulseaudio
, openssl
, libopus
, ffmpeg
, wayland
2021-03-22 19:45:45 +00:00
}:
stdenv.mkDerivation rec {
pname = "moonlight-qt";
2021-07-10 09:58:29 +01:00
version = "3.1.4";
2021-03-22 19:45:45 +00:00
src = fetchFromGitHub {
owner = "moonlight-stream";
repo = pname;
rev = "v${version}";
2021-07-10 09:58:29 +01:00
sha256 = "1sg8svb6xvkczp9slqnlm0b6k0z3bzdi4zzvwzzy21kpj6im9002";
2021-03-22 19:45:45 +00:00
fetchSubmodules = true;
};
nativeBuildInputs = [
wrapQtAppsHook
pkg-config
qmake
];
buildInputs = [
qtquickcontrols2
SDL2
SDL2_ttf
libva
libvdpau
libxkbcommon
alsa-lib
2021-03-22 19:45:45 +00:00
libpulseaudio
openssl
libopus
ffmpeg
wayland
2021-03-22 19:45:45 +00:00
];
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;
};
}