Add shell nix

[no changelog]
This commit is contained in:
Linnea Gräf
2024-03-15 11:37:42 +01:00
parent 4bf53dcaf1
commit 3a0ff19000

15
shell.nix Normal file
View File

@@ -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
];
}