Files
2025-12-17 21:43:02 +01:00

57 lines
733 B
Nix

# SPDX-FileCopyrightText: 2023 Philipp Jungkamp <p.jungkamp@gmx.net>
# SPDX-FileCopyrightText: 2025 Steffen Vogel <post@steffenvogel.de>
# SPDX-License-Identifier: Apache-2.0
{
lib,
stdenv,
mkShell,
act,
coturn,
evans,
ginkgo,
gnumake,
gocov-merger,
golangci-lint,
goreleaser,
inotify-tools,
libpcap,
nix-update,
reuse,
svu,
cunicu,
website,
scripts,
...
}:
mkShell {
packages = [
act
evans
ginkgo
gnumake
gocov-merger
golangci-lint
goreleaser
libpcap
nix-update
reuse
svu
scripts
]
++ lib.optional stdenv.isLinux [
coturn
inotify-tools
];
inputsFrom = [
cunicu
website
];
hardeningDisable = [ "fortify" ];
}