Skip to content

Commit 52785e9

Browse files
committed
upgrade packages
1 parent c5207ab commit 52785e9

File tree

4 files changed

+17
-51
lines changed

4 files changed

+17
-51
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ jobs:
77
build:
88
runs-on: ubuntu-latest
99
steps:
10-
- uses: actions/checkout@v3
11-
- uses: cachix/install-nix-action@v20
10+
- uses: actions/checkout@v4
11+
- uses: cachix/install-nix-action@v31
1212
with:
1313
nix_path: nixpkgs=channel:nixos-unstable-small
14-
- uses: cachix/cachix-action@v12
14+
- uses: cachix/cachix-action@v16
1515
with:
1616
name: luogu-judge
1717
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'

flake.lock

Lines changed: 9 additions & 43 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

flake.nix

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,22 +33,22 @@
3333
text = [gnutar gzip];
3434
gcc = [luogu-gcc];
3535
gcc-930 = [luogu-gcc930];
36-
rustc = [rust-bin.nightly.latest.default luogu-gcc];
36+
rustc = [rust-bin.stable.latest.default luogu-gcc];
3737
ghc = [ghc];
38-
python3-c = [(python311.withPackages (p: with p; [
38+
python3-c = [(python313.withPackages (p: with p; [
3939
numpy
4040
]))];
4141
python3-py = [pypy3];
4242
pascal-fpc = [fpc binutils];
4343
go = [go];
44-
php = [(php82.buildEnv {
44+
php = [(php84.buildEnv {
4545
extensions = { all, ... }: with all; [
4646
opcache ctype posix filter bcmath
4747
iconv mbstring readline gmp
4848
];
4949
})];
5050
ruby = [ruby];
51-
js-node = [nodejs_20];
51+
js-node = [nodejs_22];
5252
perl = [perl];
5353
java-8 = [jdk8_headless];
5454
java-21 = [jdk21_headless];

gcc/overlay.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ self: super: with super; let
1111
'';
1212
};
1313
in {
14-
luogu-gcc = applyLuogu gcc13 [
14+
luogu-gcc = applyLuogu gcc15 [
1515
./13_disable-pragma-and-attribute-for-optimize.patch
1616
];
1717
luogu-gcc930 = applyLuogu gcc930 [

0 commit comments

Comments
 (0)