mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
Merge pull request #101252 from IvarWithoutBones/update-ryujinx
ryujinx: 1.0.5346 -> 1.0.5551
This commit is contained in:
commit
498ef04c77
3 changed files with 17 additions and 7 deletions
|
@ -13,13 +13,13 @@ let
|
|||
];
|
||||
in stdenv.mkDerivation rec {
|
||||
pname = "ryujinx";
|
||||
version = "1.0.5346";
|
||||
version = "1.0.5551"; # Versioning is based off of the official appveyor builds: https://ci.appveyor.com/project/gdkchan/ryujinx
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "Ryujinx";
|
||||
repo = "Ryujinx";
|
||||
rev = "2ce59c44bcb2d789f4d6312b26cf41f36915d73c";
|
||||
sha256 = "0hk8jdacg8ryhh0mpnfjbzrrpy8gv87f4hp0hybyypglmaxz8grm";
|
||||
rev = "2dcc6333f8cbb959293832f52857bdaeab1918bf";
|
||||
sha256 = "1hfa498fr9mdxas9s02y25ncb982wa1sqhl06jpnkhqsiicbkgcf";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ dotnet-sdk_3 dotnetPackages.Nuget makeWrapper wrapGAppsHook gobject-introspection ];
|
||||
|
|
14
pkgs/misc/emulators/ryujinx/deps.nix
generated
14
pkgs/misc/emulators/ryujinx/deps.nix
generated
|
@ -14,6 +14,11 @@
|
|||
version = "1.1.7";
|
||||
sha256 = "0y5z444wrbhlmsqpy2sxmajl1fbf74843lvgj3y6vz260dn2q0l0";
|
||||
})
|
||||
(fetchNuGet {
|
||||
name = "Crc32.NET";
|
||||
version = "1.2.0";
|
||||
sha256 = "0qaj3192k1vfji87zf50rhydn5mrzyzybrs2k4v7ap29k8i0vi5h";
|
||||
})
|
||||
(fetchNuGet {
|
||||
name = "DiscordRichPresence";
|
||||
version = "1.0.150";
|
||||
|
@ -236,8 +241,8 @@
|
|||
})
|
||||
(fetchNuGet {
|
||||
name = "OpenTK.NetStandard";
|
||||
version = "1.0.5.12";
|
||||
sha256 = "1n8j6k47189l5b6rnhyq391d84v6zkpiiqq41cccb6qizvrcgl69";
|
||||
version = "1.0.5.22";
|
||||
sha256 = "10bdhc4qbffac862zg03ab5j3iqrr33bydxmnmrxn82brldahm23";
|
||||
})
|
||||
(fetchNuGet {
|
||||
name = "PangoSharp";
|
||||
|
@ -489,6 +494,11 @@
|
|||
version = "4.3.0";
|
||||
sha256 = "0szgbdhyhvzpw8nb9k2ww37p5qipab1pdll8idkk57y5xnl2f7ll";
|
||||
})
|
||||
(fetchNuGet {
|
||||
name = "SharpZipLib";
|
||||
version = "1.2.0";
|
||||
sha256 = "0ynhx1qkjm723bwjwsrdviw1d2s9azndpa12dagrjshhma3igqm5";
|
||||
})
|
||||
(fetchNuGet {
|
||||
name = "System.AppContext";
|
||||
version = "4.1.0";
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
diff --git a/Ryujinx.Common/Configuration/LoggerModule.cs b/Ryujinx.Common/Configuration/LoggerModule.cs
|
||||
index 20c0fb46..ce933730 100644
|
||||
index 20c0fb46..534576bc 100644
|
||||
--- a/Ryujinx.Common/Configuration/LoggerModule.cs
|
||||
+++ b/Ryujinx.Common/Configuration/LoggerModule.cs
|
||||
@@ -75,7 +75,7 @@ namespace Ryujinx.Configuration
|
||||
|
@ -7,7 +7,7 @@ index 20c0fb46..ce933730 100644
|
|||
{
|
||||
Logger.AddTarget(new AsyncLogTargetWrapper(
|
||||
- new FileLogTarget(AppDomain.CurrentDomain.BaseDirectory, "file"),
|
||||
+ new FileLogTarget(Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData), "Ryujinx"), "file"),
|
||||
+ new FileLogTarget(Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData), "Ryujinx"), "file"),
|
||||
1000,
|
||||
AsyncLogTargetOverflowAction.Block
|
||||
));
|
||||
|
|
Loading…
Reference in a new issue