2024-05-28 23:23:10 +00:00
|
|
|
# SPDX-FileCopyrightText: 2024 Auxolotl Infrastructure Contributors
|
|
|
|
#
|
|
|
|
# SPDX-License-Identifier: GPL-3.0-only
|
|
|
|
|
2024-05-28 23:02:23 +00:00
|
|
|
{
|
|
|
|
mkShell,
|
|
|
|
reuse,
|
|
|
|
deploy-rs,
|
2024-07-02 22:46:30 +00:00
|
|
|
agenix-rekey,
|
2024-05-28 23:02:23 +00:00
|
|
|
}:
|
|
|
|
mkShell {
|
|
|
|
packages = [
|
|
|
|
reuse # Used to provide licenses & copyright attribution
|
|
|
|
deploy-rs # Used to deploy to our servers
|
2024-07-02 22:46:30 +00:00
|
|
|
agenix-rekey # Used to manage secrets
|
2024-05-28 23:02:23 +00:00
|
|
|
];
|
|
|
|
}
|