aboutsummaryrefslogtreecommitdiff
path: root/shell.nix
blob: 330a57a2d98d72b3b1ec8bb2d1b8774c437458af (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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
  ];
}