Skip to content

Commit a0a2274

Browse files
committed
updated to mc 1.21.5, now uses flake.nix
1 parent 7c5ef86 commit a0a2274

File tree

4 files changed

+58
-20
lines changed

4 files changed

+58
-20
lines changed

flake.lock

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

flake.nix

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
{
2+
description = "JDK 21";
3+
4+
inputs = {
5+
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-24.11";
6+
};
7+
8+
outputs = { self, nixpkgs }:
9+
10+
let
11+
system = "x86_64-linux";
12+
pkgs = nixpkgs.legacyPackages.${system};
13+
14+
in
15+
{
16+
devShells.${system}.default =
17+
pkgs.mkShellNoCC {
18+
19+
packages = with pkgs; [
20+
jdk21
21+
];
22+
23+
};
24+
};
25+
}

gradle.properties

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@ org.gradle.parallel=true
44

55
# Fabric Properties
66
# check these on https://fabricmc.net/develop
7-
minecraft_version=1.21.4
8-
yarn_mappings=1.21.4+build.8
9-
loader_version=0.16.10
7+
minecraft_version=1.21.5
8+
yarn_mappings=1.21.5+build.1
9+
loader_version=0.16.14
10+
11+
# Fabric API
12+
fabric_version=0.124.2+1.21.5
1013

1114
# Mod Properties
1215
mod_version=1.0.1
1316
maven_group=maloschnikow.playertags
1417
archives_base_name=player-tags
15-
16-
# Dependencies
17-
fabric_version=0.119.2+1.21.4

shell.nix

Lines changed: 0 additions & 14 deletions
This file was deleted.

0 commit comments

Comments
 (0)