OTABI Tomoya
32d62565bc
abbaye-des-morts: 2.0.2 -> 2.0.4 ( #344096 )
2024-10-01 22:27:33 +09:00
K900
e3bf09623f
Merge remote-tracking branch 'origin/master' into staging-next
2024-10-01 15:09:28 +03:00
R. Ryantm
6f340c5c73
rat-king-adventure: 2.0.0 -> 2.0.1
2024-10-01 09:59:00 +00:00
7c6f434c
92bdb0b4e0
sgt-puzzles: 20240911.cd97968 -> 20240928.182b3d9 ( #345480 )
2024-10-01 06:53:27 +00:00
K900
3f7da3dfa9
Merge remote-tracking branch 'origin/master' into staging-next
2024-10-01 08:44:24 +03:00
h7x4
d9b12053b5
airshipper 10.0 -> 14.0 ( #344696 )
2024-09-30 20:13:13 +02:00
K900
b29cb6c1f9
Merge remote-tracking branch 'origin/master' into staging-next
2024-09-30 20:23:25 +03:00
Philip Taron
d590835329
fetchers: uniformly support the hash
attribute ( #342173 )
2024-09-30 07:55:36 -07:00
R. Ryantm
84dd78f845
sgt-puzzles: 20240911.cd97968 -> 20240928.182b3d9
2024-09-30 10:10:36 +00:00
R. Ryantm
cc4b9ba546
papermc: 1.21.1-85 -> 1.21.1-110
2024-09-29 18:49:06 +00:00
github-actions[bot]
8693fc15c4
Merge master into staging-next
2024-09-28 18:04:13 +00:00
Franz Pletz
0f2b52d628
kabeljau: 1.2.0 -> 2.1.0 ( #344964 )
2024-09-28 15:38:47 +02:00
Anna Aurora
8de6052cff
kabeljau: 1.2.0 -> 2.1.0
2024-09-28 00:56:23 +02:00
qubitnano
b0887160e4
eduke32: migrate to pkgs/by-name
2024-09-27 15:31:49 -04:00
Alex Platz
a2054f705b
airshipper 10.0 -> 14.0
2024-09-27 10:28:57 -07:00
Fabián Heredia Montiel
2a115bbd1e
Merge remote-tracking branch 'origin/master' into staging-next
2024-09-26 18:03:59 -06:00
Weijia Wang
4cf86ae605
papermc: 1.21.1-69 -> 1.21.1-85 ( #343126 )
2024-09-27 00:31:44 +02:00
Pol Dellaiera
5217a90826
tuxpaint: add mainProgram and use finalAttrs ( #343734 )
2024-09-26 22:18:33 +02:00
github-actions[bot]
c8c18095f9
Merge master into staging-next
2024-09-26 18:04:33 +00:00
Francesco Gazzetta
bf1847c96c
shorter-pixel-dungeon: 1.4.0 -> 1.5.0
...
Release: https://github.com/TrashboxBobylev/Shorter-Pixel-Dungeon/releases/tag/Short-1.5.0
2024-09-26 12:59:07 +00:00
Francesco Gazzetta
d393ac8e93
rat-king-adventure: 1.5.3 -> 2.0.0
...
Release: https://github.com/TrashboxBobylev/Rat-King-Adventure/releases/tag/2.0.0
2024-09-26 12:58:21 +00:00
R. Ryantm
3292bd5b01
crawl: 0.32.0 -> 0.32.1
2024-09-26 12:31:52 +00:00
K900
a9128ce2f2
Merge remote-tracking branch 'origin/master' into staging-next
2024-09-25 21:07:19 +03:00
Nick Cao
49ef17fec6
rpg-cli: 1.0.1 -> 1.2.0 ( #344350 )
2024-09-25 08:40:12 -04:00
K900
5820b7618c
heroic: 2.15.1 -> 2.15.2 ( #343364 )
2024-09-25 09:40:53 +03:00
github-actions[bot]
ce44139ef1
Merge master into staging-next
2024-09-25 06:04:53 +00:00
R. Ryantm
b1689a2f21
rpg-cli: 1.0.1 -> 1.2.0
2024-09-25 05:22:35 +00:00
Artturin
f0e657f3b1
Merge branch 'master' into staging-next
2024-09-25 06:05:01 +03:00
OTABI Tomoya
c5a1d23e15
space-station-14-launcher: 0.28.1 -> 0.29.0 ( #341991 )
2024-09-25 12:00:08 +09:00
Artturin
e0464e4788
treewide: replace stdenv.is
with stdenv.hostPlatform.is
...
In preparation for the deprecation of `stdenv.isX`.
These shorthands are not conducive to cross-compilation because they
hide the platforms.
Darwin might get cross-compilation for which the continued usage of `stdenv.isDarwin` will get in the way
One example of why this is bad and especially affects compiler packages
https://www.github.com/NixOS/nixpkgs/pull/343059
There are too many files to go through manually but a treewide should
get users thinking when they see a `hostPlatform.isX` in a place where it
doesn't make sense.
```
fd --type f "\.nix" | xargs sd --fixed-strings "stdenv.is" "stdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "stdenv'.is" "stdenv'.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "clangStdenv.is" "clangStdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "gccStdenv.is" "gccStdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "stdenvNoCC.is" "stdenvNoCC.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "inherit (stdenv) is" "inherit (stdenv.hostPlatform) is"
fd --type f "\.nix" | xargs sd --fixed-strings "buildStdenv.is" "buildStdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "effectiveStdenv.is" "effectiveStdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "originalStdenv.is" "originalStdenv.hostPlatform.is"
```
2024-09-25 00:04:37 +03:00
R. Ryantm
1b42ad1524
abbaye-des-morts: 2.0.2 -> 2.0.4
2024-09-24 01:18:33 +00:00
github-actions[bot]
9a6f63ebed
Merge master into staging-next
2024-09-23 18:04:34 +00:00
R. Ryantm
3db1131490
shattered-pixel-dungeon: 2.5.0 -> 2.5.2
2024-09-23 15:33:41 +00:00
github-actions[bot]
3625d99bb2
Merge master into staging-next
2024-09-23 00:14:30 +00:00
Pol Dellaiera
aacd442471
steam: fixed "/etc/NIXOS" bind failing ( #343772 )
2024-09-22 22:15:49 +02:00
mksafavi
23f8ab036c
steam: fixed "/etc/NIXOS" bind failing
2024-09-22 21:24:16 +03:30
Peter Hoeg
b5b9440979
tuxpaint: add mainProgram
2024-09-22 16:44:45 +02:00
github-actions[bot]
6bb2408295
Merge master into staging-next
2024-09-22 12:05:17 +00:00
Aleksana
7a86e245b2
experienced-pixel-dungeon: 2.18 -> 2.18.2 ( #341537 )
2024-09-22 19:06:56 +08:00
github-actions[bot]
3d52decd63
Merge master into staging-next
2024-09-22 06:04:18 +00:00
K900
6c8c52c5e0
Steam: update bootstrap ( #343600 )
2024-09-22 07:22:25 +03:00
Aidan Gauland
425fa5a710
steamPackages.steam: 1.0.0.74 -> 1.0.0.81
2024-09-22 10:25:19 +12:00
Aidan Gauland
2af6e069b3
steamPackages.steam: use hash instead of sha256 attr
2024-09-22 10:22:15 +12:00
Aidan Gauland
1bdf3d55ce
steamPackages.steam: add update script
2024-09-22 10:18:34 +12:00
Aidan Gauland
e6262e0ced
steamPackages.steam: convert to use finalAttrs
2024-09-22 10:16:18 +12:00
github-actions[bot]
f2c1ad7ad5
Merge master into staging-next
2024-09-21 18:03:54 +00:00
7c6f434c
3c8525a3b7
sgt-puzzles: 20240909.53ceb98 -> 20240911.cd97968 ( #343484 )
2024-09-21 18:03:40 +00:00
R. Ryantm
de35272571
sgt-puzzles: 20240909.53ceb98 -> 20240911.cd97968
2024-09-21 11:46:49 +00:00
Aidan Gauland
7747aa9b17
heroic: reformat to follow RFC style
2024-09-21 09:39:50 +12:00
Aidan Gauland
0ffc21b100
heroic: 2.15.1 -> 2.15.2
2024-09-21 09:37:11 +12:00
Aidan Gauland
f9f65a7b29
heroic: Set updateScript
...
This is easy now with pnpm.
2024-09-21 09:34:43 +12:00
R. Ryantm
98826e3b12
gogdl: 1.1.1 -> 1.1.2
2024-09-20 10:40:14 +00:00
K900
d8a54461fc
Merge remote-tracking branch 'origin/staging-next' into staging
2024-09-20 07:27:56 +03:00
R. Ryantm
bbc869511e
chiaki-ng: 1.8.1 -> 1.9.0
2024-09-20 01:37:43 +00:00
R. Ryantm
11e81a047e
papermc: 1.21.1-69 -> 1.21.1-85
2024-09-19 21:20:02 +00:00
Peder Bergebakken Sundt
8aa42ae0d9
treewide: remove CMAKE_BUILD_TYPE from cmakeFlags ( #336854 )
2024-09-19 22:32:31 +02:00
Peder Bergebakken Sundt
e65d2211b9
fheroes2: 1.1.1 -> 1.1.2 ( #342457 )
2024-09-19 22:27:49 +02:00
h7x4
9a6c76c4af
treewide: remove unused inputs ( #342672 )
2024-09-19 20:36:18 +02:00
Atemu
fa09c7cca3
steam-run: make free and create version without steam ( #334773 )
2024-09-19 15:09:28 +02:00
github-actions[bot]
71d46fbcdf
Merge staging-next into staging
2024-09-18 18:04:48 +00:00
bb2020
cea145942d
gimx: unstable-2021-08-31 -> 8.0 ( #336754 )
...
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
2024-09-18 18:29:20 +02:00
github-actions[bot]
81d645b6a9
Merge staging-next into staging
2024-09-18 06:05:20 +00:00
Ben Siraphob
4b87f8820e
stockfish: 16.1 -> 17 ( #340473 )
2024-09-18 00:05:46 -04:00
github-actions[bot]
b638e02a58
Merge staging-next into staging
2024-09-18 00:13:59 +00:00
Peder Bergebakken Sundt
8c8c27bb19
treewide: remove unused inputs
2024-09-18 01:00:07 +02:00
Nick Cao
09c97f2e17
ferium: 4.7.0 -> 4.7.1 ( #342535 )
2024-09-17 15:30:34 -04:00
nicoo
a7013f2fc3
gweled: sha256
→ hash
2024-09-17 15:00:27 +00:00
Vladimír Čunát
75da841952
Merge branch 'master' into staging
2024-09-17 16:38:37 +02:00
nicoo
82c5da990a
nile: 1.1.1 -> 1.1.2 ( #342414 )
2024-09-17 13:46:36 +00:00
R. Ryantm
91a73c3cc9
ferium: 4.7.0 -> 4.7.1
2024-09-17 12:59:28 +00:00
K900
b24e9a53ca
Merge remote-tracking branch 'origin/staging-next' into staging
2024-09-17 09:07:34 +03:00
Sergei Trofimovich
cf76a0d0c4
fheroes2: 1.1.1 -> 1.1.2
...
Changes: https://github.com/ihhub/fheroes2/releases/tag/1.1.2
2024-09-17 06:39:16 +01:00
Aleksana
a2cad4db0b
treewide: migrate packages to by-name ( #341412 )
2024-09-17 11:17:16 +08:00
github-actions[bot]
3aaf0938c0
Merge staging-next into staging
2024-09-17 00:12:19 +00:00
Peder Bergebakken Sundt
527f81a7c2
dwarf-fortress-packages.themes: set license to unfree ( #314372 )
2024-09-17 01:05:01 +02:00
Aidan Gauland
97e880441a
nile: 1.1.1 -> 1.1.2
2024-09-17 10:35:26 +12:00
Aidan Gauland
a32efffecd
nile: use gitUpdater
...
Upstream tags releases, so we should not be using gitUnstableUpdater
when tracking release tags.
2024-09-17 10:34:18 +12:00
Fabián Heredia Montiel
230a0218a7
r2modman: 3.1.49 -> 3.1.50 ( #341896 )
2024-09-16 12:57:12 -06:00
Anderson Torres
f0e64ce16f
treewide: migrate packages maintained by AndersonTorres to by-name
...
Manual migration for the sake of by-name migration is no longer discouraged
since #340235 .
2024-09-16 14:26:47 -03:00
github-actions[bot]
1c3463dc7a
Merge staging-next into staging
2024-09-16 12:06:19 +00:00
R. RyanTM
a015ebb48b
minetest: 5.9.0 -> 5.9.1 ( #342183 )
2024-09-16 13:45:58 +02:00
Francesco Gazzetta
68784b40ef
warzone2100: 4.5.2 -> 4.5.3
2024-09-16 08:11:25 +00:00
github-actions[bot]
7aea2e99a8
Merge staging-next into staging
2024-09-16 00:14:57 +00:00
aleksana
c92c230c35
gnome-hexgl: remove
2024-09-15 20:12:50 +08:00
R. Ryantm
13c8f955df
space-station-14-launcher: 0.28.1 -> 0.29.0
2024-09-15 07:26:19 +00:00
Sefa Eyeoglu
248a877d13
r2modman: 3.1.49 -> 3.1.50
...
Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net>
2024-09-14 23:28:36 +02:00
Sefa Eyeoglu
34fb7a5231
r2modman: switch to nix-update
...
nix-update can handle yarn updates for us
Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net>
2024-09-14 20:23:54 +02:00
github-actions[bot]
5c9c7359c3
Merge staging-next into staging
2024-09-14 00:13:49 +00:00
Fabián Heredia Montiel
ac558de444
shattered-pixel-dungeon: 2.4.2 -> 2.5.0 ( #341401 )
2024-09-13 12:33:24 -06:00
github-actions[bot]
2616bf59e4
Merge staging-next into staging
2024-09-13 12:05:50 +00:00
Francesco Gazzetta
56b263c7d4
experienced-pixel-dungeon: 2.18 -> 2.18.2
2024-09-13 11:10:32 +02:00
Gliczy
31246e060b
gzdoom: move to pkgs/by-name
2024-09-12 22:27:49 +02:00
github-actions[bot]
83e85079ff
Merge staging-next into staging
2024-09-12 18:04:48 +00:00
7c6f434c
ffd639ff6c
sauerbraten: 2020-12-27 -> 2020-12-29 ( #341224 )
2024-09-12 17:11:21 +00:00
Francesco Gazzetta
50d30adedb
shattered-pixel-dungeon: 2.4.2 -> 2.5.0
2024-09-12 17:05:38 +02:00
Peder Bergebakken Sundt
f863eeff84
maintainers: alx, quake3e: 2022-04-01-dev -> 2024-09-02-dev ( #338927 )
2024-09-12 15:39:02 +02:00
K900
4e803e9656
Merge remote-tracking branch 'origin/staging-next' into staging
2024-09-12 07:00:07 +03:00
Pol Dellaiera
61235dc6d4
maintainers: remove eclairevoyant ( #341075 )
2024-09-11 22:24:23 +02:00
Gaetan Lepage
664e6d6b18
sauerbraten: move to pkgs/by-name
2024-09-11 19:25:17 +02:00
Gaetan Lepage
214ef50a2a
sauerbraten: format with nixfmt
2024-09-11 19:25:17 +02:00
github-actions[bot]
408e32a8fe
Merge staging-next into staging
2024-09-11 00:13:38 +00:00
Weijia Wang
6e8f82c830
papermc: 1.21-124 -> 1.21.1-69 ( #337445 )
2024-09-10 22:28:05 +02:00
éclairevoyant
49f7e34d6e
maintainers: remove eclairevoyant
2024-09-10 15:02:41 -04:00
github-actions[bot]
b4c8dad507
Merge staging-next into staging
2024-09-10 00:13:45 +00:00
Weijia Wang
d55c6b2bdf
gemrb: 0.9.2 -> 0.9.3 ( #326422 )
2024-09-10 00:39:20 +02:00
Weijia Wang
a1cf50f57f
dhewm3: 1.5.3 -> 1.5.4 ( #332129 )
2024-09-09 23:35:59 +02:00
Weijia Wang
9842339ff6
ultrastardx: 2024.5.1 -> 2024.8.0 ( #332302 )
2024-09-09 23:29:29 +02:00
Weijia Wang
40c1acfab1
vassal: 3.7.12 -> 3.7.14 ( #330089 )
2024-09-09 23:22:37 +02:00
Weijia Wang
23a867ccd6
space-station-14-launcher: 0.28.0 -> 0.28.1 ( #335013 )
2024-09-09 22:37:23 +02:00
Rick van Schijndel
dd304567cd
steam: fix bootstrap tarball with non-default steamroot ( #303787 )
2024-09-09 22:35:22 +02:00
Weijia Wang
4cca476eeb
runelite: 2.7.1 -> 2.7.2 ( #336998 )
2024-09-09 21:57:03 +02:00
Weijia Wang
6af888f4c3
crawl: 0.31.0 -> 0.32.0 ( #338289 )
2024-09-09 20:50:31 +02:00
github-actions[bot]
72eab84191
Merge staging-next into staging
2024-09-09 18:07:47 +00:00
Weijia Wang
3c5814e3f8
_1oom: 1.10.1 -> 1.11 ( #340437 )
2024-09-09 19:08:28 +02:00
github-actions[bot]
8cfce50366
Merge staging-next into staging
2024-09-09 14:31:43 +00:00
Fabián Heredia Montiel
e6aa2e950a
steam: drop gnome2.GConf dependency
...
GConf depends on ORBit2 which no longer compiles on https://github.com/NixOS/nixpkgs/pull/340612
ORBit2 / GConf are EOL/Archived:
- https://gitlab.gnome.org/Archive/orbit2 (last commit on main branch 8 years ago)
- https://gitlab.gnome.org/Archive/gconf (last commit on main branch 8 years ago)
2024-09-09 08:04:26 -06:00
github-actions[bot]
6bb37a137e
Merge staging-next into staging
2024-09-09 12:06:25 +00:00
K900
15fc16d6c4
steam/fhsenv: use normal curl
...
The Steam Runtime can handle any curl version:
https://gitlab.steamos.cloud/steamrt/steam-runtime-tools/-/blob/main/libcurl-compat/README.md?ref_type=heads
And nix-built applications run from Steam will start exploding on this after staging-next
because we're finally building our curl with versioned symbols.
2024-09-09 10:55:25 +03:00
R. Ryantm
c9f39f0443
sgt-puzzles: 20240827.52afffa -> 20240909.53ceb98
2024-09-09 05:38:55 +00:00
Thibault Duplessis
b15edf445b
stockfish: 16.1 -> 17
2024-09-08 11:13:09 +02:00
R. Ryantm
800623c734
papermc: 1.21-124 -> 1.21.1-69
2024-09-08 08:45:44 +00:00
github-actions[bot]
6dfa6f38c7
Merge staging-next into staging
2024-09-08 06:04:48 +00:00
t4ccer
fde9ba189a
_1oom: 1.10.1 -> 1.11
2024-09-07 22:25:59 -06:00
Peder Bergebakken Sundt
6419479740
factorio: 1.1.109 -> 1.1.110 ( #338300 )
2024-09-08 04:57:01 +02:00
github-actions[bot]
da9c4b605a
Merge staging-next into staging
2024-09-08 00:15:06 +00:00
Thiago Kenji Okada
7f9021100c
osu-lazer{,-bin}: 2024.817.0 -> 2024.906.1 ( #340125 )
2024-09-07 21:17:13 +01:00
Emily
61922738bb
treewide: optimistically unpin FFmpeg 7 dependencies
...
Per the adjusted FFmpeg pinning advice, packages that work on the
default version should use the unversioned variants to ease the
migration to future versions and reduce the number of packages that
end up referencing old versions.
I have left HandBrake pinned as it builds a custom patched FFmpeg.
2024-09-07 20:31:41 +01:00
Gutyina Gergő
4111bbfccd
osu-lazer: don't escape exclamation marks
2024-09-07 20:45:52 +02:00
Gutyina Gergő
51dc189cf9
osu-lazer-bin: don't escape exclamation marks
2024-09-07 20:45:30 +02:00
Gutyina Gergő
2ae6d1fe45
osu-lazer: disable auto updates
2024-09-07 20:44:24 +02:00
Gutyina Gergő
9957d3ae64
osu-lazer-bin: disable auto updates
2024-09-07 20:44:24 +02:00
Gutyina Gergő
e704015e46
osu-lazer: 2024.817.0 -> 2024.906.2
2024-09-07 20:44:19 +02:00
Gutyina Gergő
242cc9e6e8
osu-lazer-bin: 2024.817.0 -> 2024.906.2
2024-09-07 20:44:15 +02:00
Peder Bergebakken Sundt
8b76e5f6f6
freedroidrpg: 0.16.1 -> 1.0 ( #338329 )
2024-09-07 20:06:41 +02:00
David McFarland
13a975148a
dotnet: add override mechanism for nuget packages ( #339953 )
2024-09-07 09:00:01 -03:00
Adam C. Stephens
12bbbc0f64
nile: 1.1.1-unstable-2024-08-07 -> 1.1.1-unstable-2024-09-05 ( #339929 )
2024-09-06 21:45:30 -04:00
David McFarland
e6c700ed11
dotnetCorePackages.fetchNupkg: override avalonia.x11 to find native libs
2024-09-06 16:32:08 -03:00
David McFarland
9a0be2fd28
dotnetCorePackages.fetchNupkg: override skiasharp to find fontconfig
2024-09-06 16:05:19 -03:00
Kier Davis
3732e94603
maintainers: remove kierdavis
2024-09-06 07:01:02 +01:00
R. Ryantm
3d78efe428
nile: 1.1.1-unstable-2024-08-07 -> 1.1.1-unstable-2024-09-05
2024-09-05 23:13:54 +00:00
Anderson Torres
36d40dfc48
rott: update commentary citing SDL_classic
2024-09-04 16:40:58 -03:00
Aleksana
7f06d15798
qqwing: fix cross compilation and pkgconfig generation ( #337264 )
2024-09-04 13:18:52 +08:00
Aleksana
e74612b044
fallout-ce: Fix broken game load/save due to case sensitive filesystem ( #309275 )
2024-09-04 13:18:06 +08:00
Alvar Penning
08a7a9aadd
openrct2: 0.4.13 -> 0.4.14
...
https://github.com/OpenRCT2/OpenRCT2/releases/tag/v0.4.14
2024-09-02 20:58:01 +02:00
Alvar Penning
039e7c6a0f
openrct2: 0.4.12 -> 0.4.13
...
https://github.com/OpenRCT2/OpenRCT2/releases/tag/v0.4.13
2024-09-02 20:36:21 +02:00
Aaron Andersen
41ac9a8729
devilutionx: 1.5.2 -> 1.5.3 ( #338643 )
2024-09-02 10:04:41 -04:00
Alexandre Girard Davila
7516e662d2
quake3e: 2022-04-01-dev -> 2024-09-02-dev
2024-09-02 09:51:33 +07:00
Artturin
22f09ae19f
vkquake: fix on darwin ( #338555 )
2024-09-01 21:45:17 +03:00
Sandro
c28af594dc
cataclysm-dda-git: remove incompatible patches, bump git ( #330693 )
2024-09-01 18:19:34 +02:00
Emily
f22e565ee4
chiaki4deck: 1.7.4 -> 1.8.1; rename to chiaki-ng ( #332342 )
2024-09-01 15:53:42 +01:00