mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
dolphinEmu: format with nixpkgs-fmt
This commit is contained in:
parent
6fb46fd868
commit
a0739823bd
1 changed files with 73 additions and 15 deletions
|
@ -1,17 +1,44 @@
|
|||
{ stdenv, lib, fetchpatch, pkgconfig, cmake, bluez, ffmpeg, libao, gtk2, glib
|
||||
, libGLU, libGL , gettext, libpthreadstubs, libXrandr, libXext, readline
|
||||
, openal , libXdmcp, portaudio, fetchFromGitHub, libusb, libevdev
|
||||
, wxGTK30, soundtouch, miniupnpc, mbedtls, curl, lzo, sfml
|
||||
, libpulseaudio ? null }:
|
||||
{ stdenv
|
||||
, lib
|
||||
, fetchpatch
|
||||
, pkgconfig
|
||||
, cmake
|
||||
, bluez
|
||||
, ffmpeg
|
||||
, libao
|
||||
, gtk2
|
||||
, glib
|
||||
, libGLU
|
||||
, libGL
|
||||
, gettext
|
||||
, libpthreadstubs
|
||||
, libXrandr
|
||||
, libXext
|
||||
, readline
|
||||
, openal
|
||||
, libXdmcp
|
||||
, portaudio
|
||||
, fetchFromGitHub
|
||||
, libusb
|
||||
, libevdev
|
||||
, wxGTK30
|
||||
, soundtouch
|
||||
, miniupnpc
|
||||
, mbedtls
|
||||
, curl
|
||||
, lzo
|
||||
, sfml
|
||||
, libpulseaudio ? null
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "dolphin-emu";
|
||||
version = "5.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "dolphin-emu";
|
||||
repo = "dolphin";
|
||||
rev = version;
|
||||
owner = "dolphin-emu";
|
||||
repo = "dolphin";
|
||||
rev = version;
|
||||
sha256 = "07mlfnh0hwvk6xarcg315x7z2j0qbg9g7cm040df9c8psiahc3g6";
|
||||
};
|
||||
|
||||
|
@ -44,15 +71,46 @@ stdenv.mkDerivation rec {
|
|||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
nativeBuildInputs = [ pkgconfig ];
|
||||
buildInputs = [ cmake bluez ffmpeg libao libGLU libGL gtk2 glib
|
||||
gettext libpthreadstubs libXrandr libXext readline openal
|
||||
libevdev libXdmcp portaudio libusb libpulseaudio
|
||||
libevdev libXdmcp portaudio libusb libpulseaudio
|
||||
wxGTK30 soundtouch miniupnpc mbedtls curl lzo sfml ];
|
||||
nativeBuildInputs = [
|
||||
pkgconfig
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
cmake
|
||||
bluez
|
||||
ffmpeg
|
||||
libao
|
||||
libGLU
|
||||
libGL
|
||||
gtk2
|
||||
glib
|
||||
gettext
|
||||
libpthreadstubs
|
||||
libXrandr
|
||||
libXext
|
||||
readline
|
||||
openal
|
||||
libevdev
|
||||
libXdmcp
|
||||
portaudio
|
||||
libusb
|
||||
libpulseaudio
|
||||
libevdev
|
||||
libXdmcp
|
||||
portaudio
|
||||
libusb
|
||||
libpulseaudio
|
||||
wxGTK30
|
||||
soundtouch
|
||||
miniupnpc
|
||||
mbedtls
|
||||
curl
|
||||
lzo
|
||||
sfml
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
homepage = https://dolphin-emu.org/;
|
||||
homepage = "https://dolphin-emu.org/";
|
||||
description = "Gamecube/Wii/Triforce emulator for x86_64 and ARMv8";
|
||||
license = licenses.gpl2Plus;
|
||||
maintainers = with maintainers; [ MP2E ashkitten ];
|
||||
|
|
Loading…
Reference in a new issue