mirror of
https://codeberg.org/cunicu/cunicu.git
synced 2026-04-22 22:57:04 +08:00
57 lines
733 B
Nix
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" ];
|
|
}
|