aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--shell.nix15
1 files changed, 15 insertions, 0 deletions
diff --git a/shell.nix b/shell.nix
new file mode 100644
index 0000000..330a57a
--- /dev/null
+++ b/shell.nix
@@ -0,0 +1,15 @@
+# SPDX-FileCopyrightText: 2023 Linnea Gräf <nea@nea.moe>
+#
+# SPDX-License-Identifier: GPL-3.0-or-later
+{pkgs ? import <nixpkgs> {}}:
+pkgs.mkShell {
+ buildInputs = with pkgs; [
+ bash
+ gh
+ git
+ xdg-utils
+ temurin-bin-17
+ reuse
+ pre-commit
+ ];
+}