tremc: remove with statements

This commit is contained in:
Philip Taron
2024-08-18 06:31:13 -07:00
parent 926b6220cd
commit 62cb4575a7
@@ -5,9 +5,9 @@
, useGeoIP ? false # Require /var/lib/geoip-databases/GeoIP.dat
}:
let
wrapperPath = with lib; makeBinPath (
optional x11Support xclip ++
optional stdenv.isDarwin pbcopy
wrapperPath = lib.makeBinPath (
lib.optional x11Support xclip ++
lib.optional stdenv.isDarwin pbcopy
);
in
python3Packages.buildPythonApplication rec {