nix: clean up flake outputs
All checks were successful
Test / Create distribution (push) Successful in 25s
Test / Fpkg (push) Successful in 32s
Test / Fortify (push) Successful in 2m0s
Test / Data race detector (push) Successful in 2m32s
Test / Flake checks (push) Successful in 48s

Signed-off-by: Ophestra <cat@gensokyo.uk>
This commit is contained in:
2025-03-17 09:49:18 +09:00
parent 24618ab9a1
commit 3385538142
5 changed files with 55 additions and 94 deletions

View File

@@ -19,6 +19,10 @@
gnutar,
coreutils,
# for passthru.buildInputs
go,
gcc,
glibc, # for ldd
withStatic ? stdenv.hostPlatform.isStatic,
}:
@@ -108,4 +112,13 @@ buildGoModule rec {
)
}
'';
passthru.targetPkgs =
[
go
gcc
xorg.xorgproto
]
++ buildInputs
++ nativeBuildInputs;
}