Michael Raskin
0ccc3ec571
Merge pull request #104001 from Atemu/wineStaging-strictDeps-regression
...
wine: only use strictDeps when mingwSupport is enabled
2020-11-17 08:58:19 +00:00
Atemu
35db176b85
wine: only use strictDeps when mingwSupport is enabled
...
9f5cba0aaa
broke regular wineStaging
2020-11-16 23:15:12 +01:00
Anderson Torres
b6deb94192
Merge pull request #103839 from AndersonTorres/wip-simh
...
simh: init at 3.11-1
2020-11-15 10:04:04 -03:00
Anderson Torres
3f45b5f904
Merge pull request #103556 from r-ryantm/auto-update/stella
...
stella: 6.3 -> 6.4
2020-11-15 09:13:46 -03:00
AndersonTorres
c7463be402
simh: init at 3.11-1
2020-11-14 19:24:35 -03:00
Gauvain 'GovanifY' Roussel-Tarbouriech
6c861dc0ba
pcsx2: unstable-2020-10-10 -> unstable-2020-11-13
2020-11-14 13:15:58 +01:00
Kira Bruneau
9f5cba0aaa
wine: add MinGW-w64 support
2020-11-12 17:44:55 -05:00
R. RyanTM
bcbc529b91
stella: 6.3 -> 6.4
2020-11-12 05:31:41 +00:00
R. RyanTM
fe3d25d8e0
mgba: 0.8.3 -> 0.8.4
2020-11-03 09:23:37 -08:00
Pavol Rusnak
2c931312ce
treewide: simplify rev/repo arguments in src
...
+ use fetchFromGithub where possible
2020-11-01 23:02:24 -08:00
gnidorah
eae2982123
mame: 0.225 -> 0.226 ( #102329 )
2020-11-01 11:40:42 -05:00
Christoph Hrdinka
67b292a1f5
Merge pull request #101949 from AluisioASG/aasg/libretro-mame2016
...
libretro.mame2016: fix build with Make 4.3
2020-10-29 09:31:19 +01:00
Aluísio Augusto Silva Gonçalves
8880179b65
libretro.mame2016: fix build with gnumake-4.3
...
Builds currently fail with `ar` trying to operate on what are clearly
two paths concatenated together. It stems from a backward-incompatible
change in Make:
> Previously appending using '+=' to an empty variable would result in
> a value starting with a space. Now the initial space is only added
> if the variable already contains some value. Similarly, appending an
> empty string does not add a trailing space.
This issue was first reported on the MAME repository proper
(https://github.com/mamedev/mame/issues/6248 ), and affects libretro's
2016 snapshot as well. A fix that is reported to work with previous
versions of Make was upstreamed to:
- GENie, the build system: https://github.com/bkaradzic/GENie/pull/493
- MAME: https://github.com/mamedev/mame/pull/6262
- libretro: https://github.com/libretro/mame2016-libretro/pull/47
The fetched patch comes from the last of these.
2020-10-28 13:31:34 -03:00
Stefan Frijters
4e3cc04c9f
wine{Unstable,Staging}: 5.19 -> 5.20
2020-10-28 11:04:18 -04:00
Stefan Frijters
daa40ef488
wine{Unstable,Staging}: 5.18 -> 5.19
2020-10-28 11:04:18 -04:00
Christoph Hrdinka
972ba804fd
Merge pull request #100162 from samuelgrf/pcsx2_gtk3-x86_64
...
pcsx2: multiple improvements
2020-10-23 16:48:45 +02:00
Konrad Borowski
cff07fe0fd
dolphinEmuMaster: 5.0-11824 -> 5.0-12716
2020-10-21 21:54:04 +02:00
Samuel Gräfenstein
f21ced0bb5
pcsx2: build with LTO
2020-10-21 14:26:11 +02:00
IvarWithoutBones
443f42c7f2
ryujinx: 1.0.5346 -> 1.0.5551
2020-10-21 14:19:52 +02:00
Samuel Gräfenstein
d6def694c1
pcsx2: build with gtk3 and support x86_64 builds
2020-10-21 00:00:00 +02:00
Ben Siraphob
683a87dbeb
treewide: remove periods from end of package descriptions
2020-10-17 08:22:31 -07:00
Anderson Torres
4669a06b33
Merge pull request #99572 from siraben/tilem-init
...
tilem: init at 2.0
2020-10-16 12:18:21 -03:00
AndersonTorres
492507697a
stella: 6.2.1 -> 6.3
2020-10-12 04:07:17 -03:00
Ben Siraphob
81ef443d05
tilem: init at 2.0
2020-10-11 11:21:34 +07:00
1000101
53c0d59ba5
stella: 6.2.1 -> 6.3 ( #100144 )
2020-10-10 14:06:08 +00:00
AndersonTorres
c2ee241885
ppsspp: 1.9.4 -> 1.10.3
2020-10-09 12:32:54 -03:00
gnidorah
bdf7cf5939
mame: 0.224 -> 0.225 ( #99969 )
2020-10-07 22:50:06 -04:00
Patrick Hilhorst
b133532434
treewide: remove some trailing whitespace to please ofborg
2020-10-02 09:01:35 -07:00
Patrick Hilhorst
f7e390e6d4
treewide: fix redirected urls (run 3)
...
Related:
- 9fc5e7e473
- 593e11fd94
- 508ae42a0f
Since the last time I ran this script, the Repology API changed, so I had to
adapt the script used in the previous PR. The new API should be more robust, so
overall this is a positive (no more grepping the error messages for our relevant
data but just a nice json structure).
Here's the new script I used:
```sh
curl https://repology.org/api/v1/repository/nix_unstable/problems \
| jq -r '.[] | select(.type == "homepage_permanent_https_redirect") | .data | "s@\(.url)@\(.target)@"' \
| sort | uniq | tee script.sed
find -name '*.nix' | xargs -P4 -- sed -f script.sed -i
```
I will also add this script to `maintainers/scripts`.
2020-10-02 09:01:35 -07:00
Anderson Torres
c7bc218f02
Merge pull request #97803 from JamieMagee/dotnet-sdk-3.1
...
dotnetCorePackages.sdk_3_1: 3.1.102 -> 3.1.402
2020-09-23 14:39:53 -03:00
Jamie Magee
460c98ec69
dotnetCorePackages.sdk_3_1: fix dependent packages
2020-09-23 13:18:44 +02:00
Jamie McClymont
561078189e
mame: make the parallel build reliable
2020-09-22 23:11:29 -07:00
Martin Weinelt
aeab683e38
Merge pull request #98168 from gnidorah/updates
...
update some packages I maintain
2020-09-22 03:59:27 +02:00
Jakub Kądziołka
220490a6b4
sameboy: init at 0.13.6
2020-09-19 09:06:37 +02:00
gnidorah
34e8ce3de5
mame: 0.223 -> 0.224
2020-09-17 16:12:19 +03:00
AndersonTorres
c4b869efc5
openmsx: 0.15.0 -> 16.0
2020-09-11 14:44:42 -03:00
Alexander V. Nikolaev
e049f91e10
wineUnstable: 5.15 -> 5.16
2020-09-05 14:14:39 -04:00
Alexander V. Nikolaev
1b197ce0d1
wineUnstable: 5.14 -> 5.15
2020-09-05 14:14:39 -04:00
Ryan Mulligan
8170d622de
Merge pull request #95094 from IvarWithoutBones/gxemul-cleanup
...
gxemul: 0.6.0.1 -> 0.6.2
2020-08-15 16:06:48 -07:00
Anderson Torres
c7588685bb
Merge pull request #95146 from r-ryantm/auto-update/mgba
...
mgba: 0.8.2 -> 0.8.3
2020-08-13 00:11:48 -03:00
Samuel Gräfenstein
bdf347956d
pcsx2: 1.6.0-rc -> 1.6.0
2020-08-11 08:55:15 +02:00
R. RyanTM
e434584ae4
mgba: 0.8.2 -> 0.8.3
2020-08-11 06:40:27 +00:00
IvarWithoutBones
2e2f87db13
ryujinx: init at 1.0.5160
2020-08-10 10:47:09 -07:00
IvarWithoutBones
3f8127c68b
simplenes: init at unstable-2019-03-13
2020-08-10 09:55:24 -07:00
IvarWithoutBones
0bbae9cd4f
gxemul: 0.6.0.1 -> 0.6.2
2020-08-10 17:58:57 +02:00
Alexander V. Nikolaev
5ce323abf2
wineUnstable: 5.13 -> 5.14
2020-08-09 10:13:31 -07:00
Alexander V. Nikolaev
2d918db274
wineUnstable: 5.12 -> 5.13
2020-08-09 10:13:31 -07:00
gnidorah
9bae9409ac
mame: 0.222 -> 0.223 ( #94853 )
2020-08-07 12:03:39 -04:00
Konrad Borowski
bfac20752f
snes9x-gtk: use wrapGAppsHook
2020-07-27 11:59:54 +02:00
Dmitry Kalinkin
a4c7c2ab30
Merge pull request #92295 from avnik/wine-update
...
Wine update: 5.11 -> 5.12
2020-07-14 16:35:23 -04:00
Alexander V. Nikolaev
ec7b6af024
wineStaging: allow to blacklist patchsets from staging
...
Due repeatable issues with xactengine-initial patchset.
Later, `disablePatchsets` can be extended to be overridable argument
of wineStaging.
2020-07-09 13:13:06 +03:00
Alexander V. Nikolaev
e79e7e17e9
wineUnstable: 5.11 -> 5.12
2020-07-05 00:10:53 +03:00
Alexander V. Nikolaev
acbe43e894
wineStaging: use gitMinimal to apply patchset
...
Motivation: it works faster, and don't issue suspicious errors like
`sed: couldn't flush stdout: Broken pipe` during applying patches.
2020-07-05 00:08:58 +03:00
Vladimír Čunát
e1206a2129
Merge master into staging-next
...
This brings thousands of rebuilds.
Hydra nixpkgs: ?compare=1597944
2020-07-04 09:15:27 +02:00
Daniël de Kok
e932a72089
Merge pull request #91193 from dramaturg/emu2
...
emu2: init at unstable-2020-06-04
2020-07-03 21:14:13 +02:00
Sebastian Krohn
0bad8bb45b
emu2: init at unstable-2020-06-04
2020-07-03 20:52:31 +02:00
R. RyanTM
30436fc02a
stella: 6.2 -> 6.2.1
2020-07-02 16:39:49 -07:00
Frederik Rietdijk
ae1584dc98
Merge pull request #91457 from matthewbauer/prefixed-pkg-config
...
Fixes from prefixed pkg config
2020-07-02 17:26:16 +02:00
Markus Kowalewski
19d41f90b4
openmsx: add license
2020-06-30 21:57:50 +02:00
Markus Kowalewski
0a2a353ad5
resim: add license
2020-06-30 21:57:50 +02:00
Samuel Gräfenstein
22e9cdc790
rpcs3: fix vulkan renderer
...
RPCS3 needs vulkan-headers for building its Vulkan rendering backend.
2020-06-29 16:22:07 +02:00
Stefan Frijters
748c9e0e3e
wine-staging: 5.10 -> 5.11 ( #91266 )
2020-06-27 17:17:10 -04:00
Daniël de Kok
5cee53cbd3
Merge pull request #91618 from gnidorah/mame
...
mame: 0.221 -> 0.222
2020-06-27 10:43:15 +02:00
gnidorah
bb0ec28672
Update pkgs/misc/emulators/mame/default.nix
...
Fix hash
Co-authored-by: Daniël de Kok <me@github.danieldk.eu>
2020-06-27 10:03:27 +03:00
R. RyanTM
45ecb5b36c
mgba: 0.8.1 -> 0.8.2
2020-06-26 17:49:05 +00:00
gnidorah
349a264553
mame: 0.221 -> 0.222
2020-06-26 19:17:26 +03:00
Matthew Bauer
96f72f94ad
retroarch: use prefixed pkg-config
...
retroarch knows how to use the correct pkg-config, so this is no
longer needed.
2020-06-25 00:09:21 -04:00
zowoq
c7e61112df
treewide: remove deprecated value Application
from makeDesktopItem
2020-06-25 12:18:37 +10:00
Michele Guerini Rocco
3e57ec9d34
Merge pull request #90710 from jflanglois/wine-5-10
...
wine-staging: 5.5 -> 5.10
2020-06-18 10:09:33 +02:00
Julien Langlois
9b2cb88855
wine-staging: 5.5 -> 5.10
...
Keep up to date with latest staging developments.
2020-06-18 01:04:53 -04:00
Benjamin Staffin
19d3665b75
Merge branch 'master' into benley/melonDS
2020-06-17 17:22:24 -04:00
R. RyanTM
df7aef73f7
stella: 6.1.2 -> 6.2
2020-06-17 11:54:45 -07:00
Dmitry Kalinkin
76b0854265
Merge pull request #98999 from SFrijters/wine-5.18
...
wineStable: 5.0.0 -> 5.0.2, wine{Unstable,Staging}: 5.16 -> 5.18, wine.vkd3d: 1.1 -> 1.2
2020-10-04 11:28:07 -04:00
Stefan Frijters
6ce4359385
wineUnstable: 5.17 -> 5.18
2020-09-30 15:05:04 +02:00
Stefan Frijters
01835945ca
wine.vkd3d: 1.1 -> 1.2
2020-09-30 15:05:04 +02:00
Stefan Frijters
5fe56755a7
wineUnstable: 5.16 -> 5.17
2020-09-30 15:05:04 +02:00
Stefan Frijters
156cbeb6e2
wineStable: 5.0 -> 5.0.2
2020-09-30 15:05:01 +02:00
Benjamin Staffin
13a14e2bfe
melonDS: init at 0.8.3
2020-06-16 17:30:16 -04:00
Artemis Tosini
3b3afc4292
melonDS: init at 0.8.3
2020-06-16 17:18:23 -04:00
Doron Behar
01d4e2fe33
treewide: use ffmpeg_3 explicitly if not wanted otherwise
...
After making `ffmpeg` point to the latest `ffmpeg_4`, all packages that
used `ffmpeg` without requiring a specific version now use ffmpeg_3
explicitly so they shouldn't change.
2020-06-12 11:55:31 -07:00
Michael Raskin
21c3245b67
winePackages.staging: mention staging patches in description
2020-06-11 20:06:25 +02:00
1000101
c597a7f869
formatting: fix missing leading whitespace
2020-06-07 17:29:08 -04:00
Christoph Hrdinka
355eed433b
Merge pull request #68328 from OPNA2608/package-np2kai
...
np2kai: init at 0.86rev22
2020-06-07 10:13:33 +02:00
Anderson Torres
8e4129fd02
Merge pull request #88582 from r-ryantm/auto-update/mednafen
...
mednafen: 1.24.2 -> 1.24.3
2020-05-23 11:06:07 -03:00
Christoph Neidahl
98f346852b
retroarch: add NP2kai core
2020-05-22 17:04:57 +02:00
Christoph Neidahl
fb93b96190
np2kai: init at 0.86rev22
2020-05-22 17:04:57 +02:00
R. RyanTM
72dfda3d82
mednafen: 1.24.2 -> 1.24.3
2020-05-22 06:51:09 +00:00
gnidorah
2f40a6c543
mame: 0.220 -> 0.221 ( #88146 )
2020-05-19 15:53:33 -04:00
Jörg Thalheim
887295fd2d
treewide: remove the-kenny from maintainers
...
@the-kenny did a good job in the past and is set as maintainer in many package,
however since 2017-2018 he stopped contributing. To create less confusion
in pull requests when people try to request his feedback, I removed him as
maintainer from all packages.
2020-05-09 10:28:57 +01:00
R. RyanTM
77d21a4abb
mednafen: 1.24.1 -> 1.24.2
2020-05-06 11:32:47 -07:00
Anderson Torres
e2e54225bf
Merge pull request #86743 from r-ryantm/auto-update/stella
...
stella: 6.1.1 -> 6.1.2
2020-05-05 18:35:06 -03:00
R. RyanTM
65fdc04243
fsuae: 3.0.3 -> 3.0.5
2020-05-04 21:21:27 -07:00
R. RyanTM
d33679a0b8
stella: 6.1.1 -> 6.1.2
2020-05-04 08:56:19 +00:00
Pavol Rusnak
f51314210e
winetricks: 20191224 -> 20200412
2020-04-29 21:23:44 +02:00
Daniel Fullmer
d13a19cfba
snes9x-gtk: 1.57 -> 1.60 ( #85910 )
2020-04-25 16:10:38 -04:00
Damien Cassou
a3f35c0267
mednafen: Add alsaLib to get ALSA audio output
2020-04-23 19:48:35 +02:00
Frederik Rietdijk
cff0669a48
Merge master into staging-next
2020-04-23 08:11:16 +02:00
worldofpeace
b4d5dd861b
Merge pull request #84673 from mmilata/qt5-mkDerivation-stdenv
...
Use qt5's mkDerivation in packages that otherwise crash
2020-04-22 13:39:46 -04:00
Frederik Rietdijk
8374a2a0ee
Merge master into staging-next
2020-04-22 17:20:20 +02:00
Martin Milata
65050cd7e5
firebird-emu: use qt5's mkDerivation
2020-04-22 15:23:10 +02:00