From 7442196aa3c7e064caecc4d9b4f15907d69e1add Mon Sep 17 00:00:00 2001 From: Soumyarup Sarkar Date: Sat, 5 Mar 2022 03:28:12 -0800 Subject: [PATCH] Correct libXtst libpath inclusion version check --- firefox-overlay.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/firefox-overlay.nix b/firefox-overlay.nix index ac29af7..6575c4b 100644 --- a/firefox-overlay.nix +++ b/firefox-overlay.nix @@ -154,7 +154,7 @@ let # reflected on Nixpkgs. libPath = with super.lib; old.libPath - + optionalString (96 >= getMajorVersion version) (":" + makeLibraryPath [self.xorg.libXtst]); + + optionalString (96 <= getMajorVersion version) (":" + makeLibraryPath [self.xorg.libXtst]); })) { ${ if super.firefox-unwrapped ? applicationName then