summary refs log tree commit diff
path: root/shell.nix
blob: 41d08653daa06f028d6688b9c4d611aec8d3ef8a (plain) (blame)
1
2
3
4
5
6
7
8
# SPDX-FileCopyrightText: 2022 Alyssa Ross <hi@alyssa.is>
# SPDX-License-Identifier: MIT

{ pkgs ? import <nixpkgs> {} }: with pkgs;

mkShell {
  nativeBuildInputs = [ reuse rustfmt ];
}