blob: d4533054d6f15b171174d875e2da4952ba17a52d [file] [log] [blame]
Skyler Greyf08a6192024-06-01 23:55:20 +00001# SPDX-FileCopyrightText: 2024 Auxolotl Infrastructure Contributors
2# SPDX-FileCopyrightText: 2024 Clicks Codes
3#
4# SPDX-License-Identifier: GPL-3.0-only
5
6{
7 mkShell,
Skyler Greye6a8c712024-06-22 01:41:28 +00008 nix-unit,
Skyler Greyf08a6192024-06-01 23:55:20 +00009 reuse,
10 deploy-rs,
11}:
12mkShell {
13 packages = [
14 reuse # Used to provide licenses & copyright attribution
15 deploy-rs # Used to deploy to our servers
Skyler Greye6a8c712024-06-22 01:41:28 +000016 nix-unit # Used to do unit testing
Skyler Greyf08a6192024-06-01 23:55:20 +000017 ];
18}