Skyler Grey
0add9248e7
https://reuse.software is a way of specifying licenses in a simple way that easily allows us to specify multiple licenses in a project and check that we are correctly specifying our licenses We plan to add an MIT-licensed file to the project in a future commit, which prompted us to look at REUSE to make this simpler
16 lines
288 B
Nix
16 lines
288 B
Nix
# SPDX-FileCopyrightText: 2024 Auxolotl Infrastructure Contributors
|
|
#
|
|
# SPDX-License-Identifier: GPL-3.0-only
|
|
|
|
{
|
|
mkShell,
|
|
reuse,
|
|
deploy-rs,
|
|
}:
|
|
mkShell {
|
|
packages = [
|
|
reuse # Used to provide licenses & copyright attribution
|
|
deploy-rs # Used to deploy to our servers
|
|
];
|
|
}
|