about summary refs log tree commit diff
path: root/pkgs/applications/terminal-emulators/kitty/default.nix
diff options
context:
space:
mode:
authorAdam Stephens <adam@valkor.net>2023-02-04 21:15:02 -0500
committerzowoq <59103226+zowoq@users.noreply.github.com>2023-02-05 14:13:23 +1000
commit527831c1e34ae43db6d2df8fe28ded1d68ed201d (patch)
tree414dc7de3e97e676c743b10d44660f64efefbea2 /pkgs/applications/terminal-emulators/kitty/default.nix
parent02c756f02b6148f035a3a18aa5b431c05d530e55 (diff)
kitty: fix GOFLAGS typo to resolve go runtime dependency
Diffstat (limited to 'pkgs/applications/terminal-emulators/kitty/default.nix')
-rw-r--r--pkgs/applications/terminal-emulators/kitty/default.nix3
1 files changed, 1 insertions, 2 deletions
diff --git a/pkgs/applications/terminal-emulators/kitty/default.nix b/pkgs/applications/terminal-emulators/kitty/default.nix
index f2c146fa8db26..9725e8a4f96b0 100644
--- a/pkgs/applications/terminal-emulators/kitty/default.nix
+++ b/pkgs/applications/terminal-emulators/kitty/default.nix
@@ -97,8 +97,7 @@ buildPythonApplication rec {
   hardeningDisable = lib.optional stdenv.cc.isClang "strictoverflow";
 
   CGO_ENABLED = 0;
-  GO_FLAGS = "-trimpath";
-  disallowedReferences = [ go ];
+  GOFLAGS = "-trimpath";
 
   configurePhase = let
     goModules = (buildGoModule {