aboutsummaryrefslogtreecommitdiffhomepage
path: root/package.nix
diff options
context:
space:
mode:
authorOphestra <cat@gensokyo.uk>2025-07-26 12:59:47 +0900
committerOphestra <cat@gensokyo.uk>2025-07-26 18:57:54 +0900
commit625632c59391d73d32389e877179d3e023e224f2 (patch)
treea6cb45f60233c6b1a4143b6207dea7121478c34f /package.nix
parente71ae3b8c5b4a8f103a078783fef2f56ee5450a2 (diff)
nix: update flake lock
Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'package.nix')
-rw-r--r--package.nix46
1 files changed, 22 insertions, 24 deletions
diff --git a/package.nix b/package.nix
index bf35e060..8bd5d929 100644
--- a/package.nix
+++ b/package.nix
@@ -83,18 +83,17 @@ buildGoModule rec {
# nix build environment does not allow acls
env.GO_TEST_SKIP_ACL = 1;
- buildInputs =
- [
- libffi
- libseccomp
- acl
- wayland
- ]
- ++ (with xorg; [
- libxcb
- libXau
- libXdmcp
- ]);
+ buildInputs = [
+ libffi
+ libseccomp
+ acl
+ wayland
+ ]
+ ++ (with xorg; [
+ libxcb
+ libXau
+ libXdmcp
+ ]);
nativeBuildInputs = [
pkg-config
@@ -130,17 +129,16 @@ buildGoModule rec {
}
'';
- passthru.targetPkgs =
- [
- go
- gcc
- xorg.xorgproto
- util-linux
+ passthru.targetPkgs = [
+ go
+ gcc
+ xorg.xorgproto
+ util-linux
- # for go generate
- wayland-protocols
- wayland-scanner
- ]
- ++ buildInputs
- ++ nativeBuildInputs;
+ # for go generate
+ wayland-protocols
+ wayland-scanner
+ ]
+ ++ buildInputs
+ ++ nativeBuildInputs;
}