Files
Firmament/shell.nix
Linnea Gräf 3a0ff19000 Add shell nix
[no changelog]
2024-03-15 11:38:16 +01:00

16 lines
267 B
Nix

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