From 3a0ff1900047f21b420fc9c02d67dc0f04a4fd0c Mon Sep 17 00:00:00 2001 From: Linnea Gräf Date: Fri, 15 Mar 2024 11:37:42 +0100 Subject: Add shell nix [no changelog] --- shell.nix | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 shell.nix (limited to 'shell.nix') 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 +# +# SPDX-License-Identifier: GPL-3.0-or-later +{pkgs ? import {}}: +pkgs.mkShell { + buildInputs = with pkgs; [ + bash + gh + git + xdg-utils + temurin-bin-17 + reuse + pre-commit + ]; +} -- cgit