From fc26d6ac90386bb8b5630fee569db17e7cffa882 Mon Sep 17 00:00:00 2001 From: aszlig Date: Thu, 27 Oct 2022 03:34:10 +0200 Subject: firefox: Fix path to Tridactyl native executable The new Tridactyl native messenger is no longer written in Python, so the path to the main executable is no longer valid. I also trimmed down the allowed_extensions attribute to just include the actual extension. Signed-off-by: aszlig --- pkgs/aszlig/firefox/default.nix | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) (limited to 'pkgs') diff --git a/pkgs/aszlig/firefox/default.nix b/pkgs/aszlig/firefox/default.nix index 8595a3e2..1c49fc6a 100644 --- a/pkgs/aszlig/firefox/default.nix +++ b/pkgs/aszlig/firefox/default.nix @@ -46,12 +46,9 @@ in wrapFirefox firefoxNoSigning { text = builtins.toJSON { name = "tridactyl"; description = "Tridactyl native command handler"; - path = "${tridactyl-native}/share/tridactyl/native_main.py"; + path = "${tridactyl-native}/bin/native_main"; type = "stdio"; - allowed_extensions = [ - extensions.tridactyl-vim.extid - "tridactyl.vim@cmcaine.co.uk" - ]; + allowed_extensions = [ extensions.tridactyl-vim.extid ]; }; }) ]; -- cgit 1.4.1