Commit Graph

69 Commits

Author SHA1 Message Date
R. Ryantm
0a52f23558 papermc: 1.21.10-91 -> 1.21.11-69 2026-01-05 12:00:32 +00:00
R. Ryantm
a0f652db49 papermc: 1.21.9-41 -> 1.21.10-91 2025-11-01 08:40:50 +00:00
ikelyons
7fbdbbe452 papermc: 1.21.8 -> 1.21.9 2025-10-01 19:17:43 +00:00
Yohann Boniface
74c6803859 maintainers: drop neonfuz (#445599) 2025-09-30 07:20:02 +00:00
Wolfgang Walther
dcfe6aaa3e maintainers: drop neonfuz
Inactive since 2023, not in the GitHub org.
2025-09-23 20:00:31 +02:00
R. Ryantm
a9fea55f71 papermc: 1.21.8-56 -> 1.21.8-60 2025-09-11 14:09:44 +00:00
R. Ryantm
b9d2f67b72 papermc: 1.21.8-40 -> 1.21.8-56 2025-08-31 01:58:50 +00:00
R. Ryantm
d22cba3d01 papermc: 1.21.8-11 -> 1.21.8-40 2025-08-20 19:37:46 +00:00
R. Ryantm
8856b09215 papermc: 1.21.6-47 -> 1.21.8-11 2025-07-25 22:59:50 +00:00
R. Ryantm
bb190aa37d papermc: 1.21.5-112 -> 1.21.6-47 2025-06-28 21:02:03 +00:00
R. Ryantm
3d8c2e0249 papermc: 1.21.5-38 -> 1.21.5-112 2025-06-09 17:12:01 +00:00
R. Ryantm
14596b3890 papermc: 1.21.5-22 -> 1.21.5-38 2025-04-27 12:09:20 +00:00
R. Ryantm
68daf88104 papermc: 1.21.4-224 -> 1.21.5-22 2025-04-18 14:22:23 +00:00
R. Ryantm
064cbb73bd papermc: 1.21.4-222 -> 1.21.4-224 2025-04-09 04:20:16 +00:00
R. Ryantm
3f15384967 papermc: 1.21.4-212 -> 1.21.4-222 2025-03-29 06:09:34 +00:00
R. Ryantm
43ff362242 papermc: 1.21.4-207 -> 1.21.4-212 2025-03-18 02:10:11 +00:00
SEKUN
74dfb0428a papermc: 1.21.4-175 -> 1.21.4-207 2025-03-10 14:37:21 +08:00
R. Ryantm
f8b69ed03a papermc: 1.21.4-126 -> 1.21.4-175 2025-02-21 03:47:51 +00:00
R. Ryantm
485d02f816 papermc: 1.21.4-15 -> 1.21.4-126 2025-01-26 02:14:55 +00:00
Gutyina Gergő
e4bba63bfa papermc: fix build failure by updating to new api url 2025-01-09 18:19:28 +01:00
R. Ryantm
16f7997902 papermc: 1.21.4-12 -> 1.21.4-15 2024-12-22 13:00:10 +00:00
R. Ryantm
77e5f5a573 papermc: 1.21.3-53 -> 1.21.4-12 2024-12-11 12:09:23 +00:00
Silvan Mosberger
4f0dadbf38 treewide: format all inactive Nix files
After final improvements to the official formatter implementation,
this commit now performs the first treewide reformat of Nix files using it.
This is part of the implementation of RFC 166.

Only "inactive" files are reformatted, meaning only files that
aren't being touched by any PR with activity in the past 2 months.
This is to avoid conflicts for PRs that might soon be merged.
Later we can do a full treewide reformat to get the rest,
which should not cause as many conflicts.

A CI check has already been running for some time to ensure that new and
already-formatted files are formatted, so the files being reformatted here
should also stay formatted.

This commit was automatically created and can be verified using

    nix-build a08b3a4d19.tar.gz \
      --argstr baseRev b32a094368
    result/bin/apply-formatting $NIXPKGS_PATH
2024-12-10 20:26:33 +01:00
R. Ryantm
df13ffdfb0 papermc: 1.21.1-119 -> 1.21.3-53 2024-11-23 21:58:41 +00:00
R. Ryantm
9dd54027b2 papermc: 1.21.1-110 -> 1.21.1-119 2024-10-07 11:47:01 +00:00
R. Ryantm
cc4b9ba546 papermc: 1.21.1-85 -> 1.21.1-110 2024-09-29 18:49:06 +00:00
Weijia Wang
4cf86ae605 papermc: 1.21.1-69 -> 1.21.1-85 (#343126) 2024-09-27 00:31:44 +02: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
11e81a047e papermc: 1.21.1-69 -> 1.21.1-85 2024-09-19 21:20:02 +00:00
R. Ryantm
800623c734 papermc: 1.21-124 -> 1.21.1-69 2024-09-08 08:45:44 +00:00
R. Ryantm
1a57e19c5f papermc: 1.21-108 -> 1.21-124 2024-08-04 19:18:01 +00:00
R. Ryantm
d689ee0b1c papermc: 1.21-62 -> 1.21-108 2024-07-23 03:23:02 +00:00
R. Ryantm
03a94c776f papermc: 1.21-40 -> 1.21-62 2024-07-13 15:59:25 +00:00
adisbladis
1be927ca66 Merge pull request #316983 from edolstra/let-float-json
Let-float various fromJSON calls to avoid repeated JSON reading/parsing
2024-07-04 13:47:08 +12:00
Weijia Wang
2e09c8f650 Merge pull request #324112 from r-ryantm/auto-update/papermc
papermc: 1.21-37 -> 1.21-40
2024-07-03 10:47:40 +02:00
R. Ryantm
9fd74e9ec4 papermc: 1.21-37 -> 1.21-40 2024-07-02 17:56:50 +00:00
Aleksana
04d2d06446 Merge pull request #322654 from wegank/papermc-darwin
minecraft-server, papermc: restore darwin support
2024-07-02 23:38:29 +08:00
R. Ryantm
3b3dc5d7d8 papermc: 1.21-15 -> 1.21-37 2024-06-27 04:48:49 +00:00
Weijia Wang
354cd74dbf papermc: restore darwin support 2024-06-26 16:45:48 +02:00
qubitnano
7485d71218 papermc: add udev to LD_LIBRARY_PATH
Fixes error: [oshi.software.os.linux.LinuxOperatingSystem] Did not find udev library in operating system. Some features may not work.
2024-06-20 17:13:13 -04:00
R. Ryantm
db1b636f24 papermc: 1.20.6-137 -> 1.21-15 2024-06-20 11:14:12 +00:00
R. Ryantm
f8ae7d47a5 papermc: 1.20.4-435 -> 1.20.6-137 2024-06-05 15:20:28 +00:00
Eelco Dolstra
8d2a765adf Let-float various fromJSON calls to avoid repeated JSON reading/parsing
Some of these were read/parsed dozens of times in a `nix search`
invocation, and in particular the MELPA recipes archive (3 MiB) was
read 4 times.
2024-06-03 18:52:42 +02:00
Niklas
87cb6c5abd papermc: fix update script 2024-06-03 12:56:59 +02:00
Majiir Paktu
85f544d85e papermc: fix version/hash overrides
Reintroduces the use of finalAttrs that was introduced in
d0bb02b106 and erroneously removed in
ef321a0ed6.
2024-03-17 16:44:35 -04:00
Majiir Paktu
2282f6f5e1 papermc: revert to old URL construction
This uses two bindings to build the URL instead of three. This allows
the version string to differ from the papermc URL format, at the loss
of... nothing, as far as I can tell. My motivation for reverting the
change is to reduce the number of references to 'version', since it
requires special handling to handle overrides correctly.
2024-03-17 16:42:14 -04:00
MayNiklas
ef321a0ed6 papermc: provide multiple versions 2024-02-26 10:27:17 +01:00
Dennis Wuitz
9dab6dd095 papermc: 1.20.2.234 -> 1.20.4.435 2024-02-24 19:47:22 +01:00
Gerg-L
fd5591921f papermc: 1.20.1.83 -> 1.20.2.234 2023-10-13 20:23:43 -04:00
Gerg-L
d0bb02b106 papermc: refactor 2023-10-13 20:23:03 -04:00