about summary refs log tree commit diff
path: root/pkgs/misc/emulators
diff options
context:
space:
mode:
authorIvarWithoutBones <ivar.scholten@protonmail.com>2021-02-03 23:23:49 +0100
committerIvarWithoutBones <ivar.scholten@protonmail.com>2021-02-03 23:23:49 +0100
commit83494a62d3002cc27ae7509e4374dfa4be93efe3 (patch)
tree47b5c5a43d059bfe70568454f75f61099dad9f81 /pkgs/misc/emulators
parenta6e5607595296dc28d8d10315f3b0dda9716debd (diff)
downloadnixlib-83494a62d3002cc27ae7509e4374dfa4be93efe3.tar
nixlib-83494a62d3002cc27ae7509e4374dfa4be93efe3.tar.gz
nixlib-83494a62d3002cc27ae7509e4374dfa4be93efe3.tar.bz2
nixlib-83494a62d3002cc27ae7509e4374dfa4be93efe3.tar.lz
nixlib-83494a62d3002cc27ae7509e4374dfa4be93efe3.tar.xz
nixlib-83494a62d3002cc27ae7509e4374dfa4be93efe3.tar.zst
nixlib-83494a62d3002cc27ae7509e4374dfa4be93efe3.zip
ryujinx: 1.0.6448 -> 1.0.6498
Diffstat (limited to 'pkgs/misc/emulators')
-rw-r--r--pkgs/misc/emulators/ryujinx/default.nix10
-rwxr-xr-xpkgs/misc/emulators/ryujinx/fetch-deps.sh3
2 files changed, 5 insertions, 8 deletions
diff --git a/pkgs/misc/emulators/ryujinx/default.nix b/pkgs/misc/emulators/ryujinx/default.nix
index db6e75b9d4e8..60e595bc51ba 100644
--- a/pkgs/misc/emulators/ryujinx/default.nix
+++ b/pkgs/misc/emulators/ryujinx/default.nix
@@ -1,5 +1,5 @@
 { lib, stdenv, fetchFromGitHub, fetchurl, makeWrapper, makeDesktopItem, linkFarmFromDrvs
-, dotnet-sdk_5, dotnetPackages, dotnetCorePackages
+, dotnet-sdk_5, dotnetPackages, dotnetCorePackages, cacert
 , SDL2, libX11, ffmpeg, openal, libsoundio
 , gtk3, gobject-introspection, gdk-pixbuf, wrapGAppsHook
 }:
@@ -15,16 +15,16 @@ let
   ];
 in stdenv.mkDerivation rec {
   pname = "ryujinx";
-  version = "1.0.6448"; # Versioning is based off of the official appveyor builds: https://ci.appveyor.com/project/gdkchan/ryujinx
+  version = "1.0.6498"; # Versioning is based off of the official appveyor builds: https://ci.appveyor.com/project/gdkchan/ryujinx
 
   src = fetchFromGitHub {
     owner = "Ryujinx";
     repo = "Ryujinx";
-    rev = "9eb0ab05c6e820e113b3c61cbacd9b085b2819c4";
-    sha256 = "168nm7p6lqswmsya6gf3296ligyjabqmbrdzginkcviii643yslz";
+    rev = "67033ed8e05eb70860ac6af2b83deab0256c11eb";
+    sha256 = "1lg0cybbrf0x3jl10jwdwcg1zyhxsqfdnwnsvdm1lah75xg15ymw";
   };
 
-  nativeBuildInputs = [ dotnet-sdk_5 dotnetPackages.Nuget makeWrapper wrapGAppsHook gobject-introspection gdk-pixbuf ];
+  nativeBuildInputs = [ dotnet-sdk_5 dotnetPackages.Nuget cacert makeWrapper wrapGAppsHook gobject-introspection gdk-pixbuf ];
 
   nugetDeps = linkFarmFromDrvs "${pname}-nuget-deps" (import ./deps.nix {
     fetchNuGet = { name, version, sha256 }: fetchurl {
diff --git a/pkgs/misc/emulators/ryujinx/fetch-deps.sh b/pkgs/misc/emulators/ryujinx/fetch-deps.sh
index d5c9b0eb9344..35de197b626e 100755
--- a/pkgs/misc/emulators/ryujinx/fetch-deps.sh
+++ b/pkgs/misc/emulators/ryujinx/fetch-deps.sh
@@ -36,6 +36,3 @@ while read pkg_spec; do
 EOF
 done < <(find ./nuget_tmp.packages -name '*.nuspec' | sort)
 echo "]" >>"$deps_file"
-
-popd
-rm -r "$src"