Commit Graph

1594 Commits

Author SHA1 Message Date
Thiago Kenji Okada
82b4887f1e libretro: unstable-2021-11-16 -> unstable-2021-11-22 2021-11-22 19:22:43 -03:00
Thiago Kenji Okada
9aee0414e0 libretro.bsnes-hd: init at unstable-2021-11-22 2021-11-22 18:50:00 -03:00
Thiago Kenji Okada
2fe3827806 libretro.bsnes: init at unstable-2021-11-22 2021-11-22 18:14:27 -03:00
Thiago Kenji Okada
d204860bf5 libretro.mesen-s: init at unstable-2021-11-22 2021-11-22 16:00:14 -03:00
Thiago Kenji Okada
d03b66c4a6 libretro.mesen: switch to libretro/mesen
The original repository was abandoned.
2021-11-22 13:49:42 -03:00
Thiago Kenji Okada
18bc6a9efe libretro.melonds: init at unstable-2021-11-22 2021-11-22 13:45:32 -03:00
Thiago Kenji Okada
0d9f8458a6 retroarch: switch from libretro-super to libretro-core-info 2021-11-22 01:05:02 -03:00
Thiago Kenji Okada
716deb5afb libretro.beetle-saturn-hw: remove
This core never worked as intended:
https://github.com/libretro/libretro-core-info/issues/8.
2021-11-22 01:05:02 -03:00
Thiago Kenji Okada
17c37fe0bd libretro.bsnes-mercury-{balanced,performance}: init at unstable-2021-11-16 2021-11-22 00:02:04 -03:00
Thiago Kenji Okada
702c8f29fb libretro: expose mkLibeRetroCore function
This will allow users to package their own core derivations if they want
without necessary submitting to nixpkgs.
2021-11-21 23:23:39 -03:00
Thiago Kenji Okada
994719881a libretro.swanstation: init at unstable-2021-11-21
Sadly the original repository (stenzek/duckstation) is missing the
necessary files to build a libretro core, so we need to use the fork
instead.
2021-11-21 23:15:09 -03:00
Thiago Kenji Okada
33478a118c libretro: make update.py script accept individual cores to update 2021-11-21 23:07:54 -03:00
Thiago Kenji Okada
b8d69b120d mame: 0.226 -> 0.237
- change CC/CXX flags
- add missing dependencies
- mkDerivation -> stdenv.mkDerivation
- use Clang 6.0 when building with Clang
- remove badPlatforms
- increase meta.timeout (for Darwin)
2021-11-21 15:24:55 -03:00
Thiago Kenji Okada
ff4c09703b
Merge pull request #146714 from thiagokokada/remove-retroArchCores
retroArchCores: remove, retroarchFull: init, retroarch: use fixed paths on "libretro_info_path"
2021-11-20 22:22:32 -03:00
Thiago Kenji Okada
08b402b70e libretro: enableParalellBuilding, except for older MAMEs
MAME since 0.225 have a fix for the build issues while building in
parallel. Since libretro.mame is on 0.227 right now, should be safe to
enable.

Since eventually enableParallelBuilding should be the default, enabling
it for all cores except the older MAMEs seems better than just enabling
for libretro.mame.
2021-11-20 20:27:48 -03:00
Stefan Frijters
70e9780f97
wine{Unstable,Staging}: 6.21 -> 6.22 2021-11-20 22:30:14 +01:00
Stefan Frijters
d127765898
wine{Unstable,Staging}: 6.20 -> 6.21
Upstream dlls/crypt32/unixlib.c has been heavily modified,
so we need a new patch that fits for unstable/staging.
2021-11-20 19:56:56 +01:00
Thiago Kenji Okada
f435d7d631 retroarch: fix build on macOS, mark as broken
With those changes retroarch builds on Darwin, but the executable itself
is broken.
2021-11-20 10:41:46 -03:00
Thiago Kenji Okada
03e35cfb65 retroarch: use fixed paths on "libretro_info_path"
This commit introduces a patch that hardcodes "libretro_info_path"
directly in the RetroArch code, without the issues of the previous
approach.

With this commit, RetroArch stops reading "libretro_info_path" from
`retroarch.cfg` file, and always use the default.
2021-11-20 16:34:01 -03:00
Thiago Kenji Okada
24095a994c retroArchCores: remove
`retroArchCores` is strange: it requires a global configuration on nixpkgs, as:

```nix
nixpkgs.config.retroarch = {
  enableDolphin = true;
  enableMGBA = true;
  enableMAME = true;
};
```

To do so, we ended up declaring all available emulators on
`all-packages.nix`. Failing to do so would mean that the emulator
wouldn't be available.

However, there is a mechanism on nixpkgs that also works: overrides.
Overrides are similar on how other packages works, for example:

```nix
(retroarch.override { cores = with libretro; [ citra snes9x ]; });
```

So let's remove `retroArchCores` and leave the overrides mechanism
instead.
2021-11-20 16:19:13 -03:00
Thiago Kenji Okada
c8304d130f retroarch: 1.9.2 -> 1.9.13.2
The issue of non-working cores on newer versions of RetroArch was caused
by the missing core metadata that is available on
libretro/libretro-super repo. This also allows RetroArch to works
properly, for example there is no need to load a core before loading a
content: RetroArch knows each emulator to load depending on the
available emulators and the file extension.

To load the metadata from `/nix/store`, we need to patch the
`retroarch.cfg`. Sadly this file is only updated when needed, for
example, it will update if the path that it is pointing doesn't exist
anymore. However, before this PR it pointed to a file located in the
HOME directory, so if someone used RetroArch before they will probably
have issues while loading the file.

I tried to patch the configuration loader directly but the code is kinda
messy and this seems very prone to breakage (while the `retroarch.cfg`
file seems an stable interface). One better solution will probably be
the introduction of a module that can generate `retroarch.cfg` file
(since retroarch supports loading a config from `/etc/retroarch.cfg`).

But this will come in a future PR.
2021-11-19 17:43:47 -03:00
AndersonTorres
0d38cca78a stella: 6.5.3 -> 6.6 2021-11-18 18:04:05 -03:00
Thiago Kenji Okada
313ed3c609
Merge pull request #146295 from thiagokokada/bump-retroarch
retroarch: 1.8.5 -> 1.9.2
2021-11-18 11:12:06 -03:00
Bobby Rong
5130f5df7e
ryujinx: 1.0.7101 -> 1.0.7105 2021-11-18 08:52:45 +08:00
Thiago Kenji Okada
1bf3720f78 libretro.play: fix build 2021-11-17 19:17:41 -03:00
Thiago Kenji Okada
78b9e1252d retroarch,libretro: add myself as maintainer 2021-11-17 12:09:57 -03:00
Thiago Kenji Okada
5fc7933ab8 retroarch: update license 2021-11-17 12:09:43 -03:00
Thiago Kenji Okada
e9bbcb7f16 libretro: update core licenses 2021-11-17 12:00:36 -03:00
Thiago Kenji Okada
bbf12f11ca libretro: clean-up 2021-11-17 12:00:36 -03:00
Thiago Kenji Okada
db9cb2dc10 libretro: name -> pname+version 2021-11-17 12:00:36 -03:00
Thiago Kenji Okada
75e1954f63 retroarch: 1.9.13.2 -> 1.9.2
From retroarch 1.9.3 and above, it stops loading the cores.

This probably can be fixed, but for now at least this brings the
retroarch to a newer (working) version.
2021-11-17 12:00:36 -03:00
Thiago Kenji Okada
bf93ad6b39 retroarch: fix editorconfig error on hashes.json 2021-11-17 12:00:35 -03:00
Thiago Kenji Okada
71fb85952d libretro.citra: fix compilation 2021-11-17 12:00:35 -03:00
Thiago Kenji Okada
c03e4f141a libretro: 2020-03-06 -> unstable-2021-11-16 2021-11-17 12:00:35 -03:00
Thiago Kenji Okada
8b122f950c libretro: add update.py script 2021-11-17 12:00:35 -03:00
Thiago Kenji Okada
14b2e99b33 retroarch: 1.8.5 -> 1.9.13.2 2021-11-17 12:00:35 -03:00
Claudio Bley
86d5dd09f1
ryujinx: Update dependencies 2021-11-16 10:44:01 +01:00
tomberek
51efdeffe6
Merge pull request #145759 from mattchrist/update-libretro.dolphin
libretro.dolphin: 2020-03-06 -> 2021-11-01
2021-11-13 22:00:34 -05:00
Markus S. Wamser
b0249fdf99 pkgs.misc: remove unused args 2021-11-13 23:09:33 +01:00
Matt Christ
5c8bb6ac0d libretro.dolphin: 2020-03-06 -> 2021-11-01 2021-11-13 09:15:32 -06:00
Matt Christ
ec27b24452 libretro: mkLibRetroCore: allow specifying custom version 2021-11-13 09:06:44 -06:00
R. Ryantm
aca795f900 sameboy: 0.14.5 -> 0.14.6 2021-11-13 10:19:11 +01:00
Thiago Kenji Okada
4a9343eb3b
Merge pull request #145384 from SuperSamus/dolphin
dolphinEmu{Master}: removed unnecesary symlink, rename to dolphin-emu{-beta}
2021-11-11 23:04:13 -03:00
Martino Fontana
940f3b60b9 dolphinEmuMaster: remove unnecessary symlink, force xcb 2021-11-10 17:50:50 +01:00
R. Ryantm
93c6633d1f linuxKernel.packages.linux_5_14_hardened.vhba: 20210418 -> 20211023 2021-11-08 17:13:08 +01:00
Michele Guerini Rocco
d631a73345
Merge pull request #144881 from vs49688/wtfix
winetricks: remove wine dependency
2021-11-07 12:33:09 +01:00
Zane van Iperen
960eb082f1
pcsxr: build with newer ffmpeg 2021-11-07 15:56:44 +10:00
Zane van Iperen
68ca39a775
winetricks: remove wine dependency
It shouldn't be tied to a particular Wine installation, it should use
the one in $PATH. Also massively reduces the closure size.
2021-11-07 10:00:47 +10:00
Bernardo Meurer
b3e7ddabfb
Merge pull request #125118 from chkno/wine
wine: gecko 2.47.1 -> 2.47.2 and add tests
2021-11-04 13:11:38 -07:00
Aaron Andersen
16697754eb
Merge pull request #141296 from vs49688/rpcs3
rpcs3: 0.0.16-12235-a4f4b81e6 -> 0.0.19-12975-37383f421
2021-11-03 22:19:56 -04:00