aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorinyourwalls <inyourwalls@tutanota.com>2023-11-07 12:37:02 -0500
committerinyourwalls <inyourwalls@tutanota.com>2023-11-07 12:37:02 -0500
commit86a919f530c7990eecf1b98c3151941f39c7d4eb (patch)
tree862ea708d608cfc7a0fdccaddfc98cbf03dfc229
setup basic dev environment
-rw-r--r--.gitignore2
-rw-r--r--README.md8
-rw-r--r--flake.lock27
-rw-r--r--flake.nix17
4 files changed, 54 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..9ceb91d
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,2 @@
+# LSP data folder.
+.jdtls
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..6e5e068
--- /dev/null
+++ b/README.md
@@ -0,0 +1,8 @@
+# frank
+
+Simple Minecraft mod that displays a bit of extra information in furnaces.
+
+## Features
+
+* Displays time remaining and total items smeltable in the furnace UI.
+* Displays the number of items a fuel item can smelt in its tooltip.
diff --git a/flake.lock b/flake.lock
new file mode 100644
index 0000000..804f0a9
--- /dev/null
+++ b/flake.lock
@@ -0,0 +1,27 @@
+{
+ "nodes": {
+ "nixpkgs": {
+ "locked": {
+ "lastModified": 1699099776,
+ "narHash": "sha256-X09iKJ27mGsGambGfkKzqvw5esP1L/Rf8H3u3fCqIiU=",
+ "owner": "NixOS",
+ "repo": "nixpkgs",
+ "rev": "85f1ba3e51676fa8cc604a3d863d729026a6b8eb",
+ "type": "github"
+ },
+ "original": {
+ "owner": "NixOS",
+ "ref": "nixos-unstable",
+ "repo": "nixpkgs",
+ "type": "github"
+ }
+ },
+ "root": {
+ "inputs": {
+ "nixpkgs": "nixpkgs"
+ }
+ }
+ },
+ "root": "root",
+ "version": 7
+}
diff --git a/flake.nix b/flake.nix
new file mode 100644
index 0000000..01369b6
--- /dev/null
+++ b/flake.nix
@@ -0,0 +1,17 @@
+{
+ description = "Development environment for frank.";
+
+ inputs.nixpkgs = {
+ url = "github:NixOS/nixpkgs/nixos-unstable";
+ };
+
+ outputs = { self, nixpkgs }: {
+ devShells.x86_64-linux.default = let pkgs = nixpkgs.legacyPackages.x86_64-linux;
+ in pkgs.mkShell {
+ nativeBuildInputs = with pkgs.buildPackages; [
+ openjdk17
+ jdt-language-server
+ ];
+ };
+ };
+}