mirror of
https://codeberg.org/cunicu/cunicu.git
synced 2025-09-26 21:01:14 +08:00
17 lines
229 B
Nix
17 lines
229 B
Nix
# SPDX-FileCopyrightText: 2023 Philipp Jungkamp <p.jungkamp@gmx.net>
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
{
|
|
mkShell,
|
|
|
|
nix-update,
|
|
goreleaser,
|
|
svu,
|
|
}:
|
|
mkShell {
|
|
packages = [
|
|
nix-update
|
|
goreleaser
|
|
svu
|
|
];
|
|
}
|