···134134 configureFlags = prevConfigFlags
135135 ++ lib.optionals supportFlags.waylandSupport [ "--with-wayland" ]
136136 ++ lib.optionals supportFlags.vulkanSupport [ "--with-vulkan" ]
137137- ++ lib.optionals (stdenv.isDarwin && !supportFlags.xineramaSupport) [ "--without-x" ];
137137+ ++ lib.optionals ((stdenv.isDarwin && !supportFlags.xineramaSupport) || !supportFlags.x11Support) [ "--without-x" ];
138138139139 # Wine locates a lot of libraries dynamically through dlopen(). Add
140140 # them to the RPATH so that the user doesn't have to set them in
···290290 IPW2200_MONITOR = option yes; # support promiscuous mode
291291 HOSTAP_FIRMWARE = option yes; # Support downloading firmware images with Host AP driver
292292 HOSTAP_FIRMWARE_NVRAM = option yes;
293293+ MAC80211_MESH = option yes; # Enable 802.11s (mesh networking) support
293294 ATH9K_PCI = option yes; # Detect Atheros AR9xxx cards on PCI(e) bus
294295 ATH9K_AHB = option yes; # Ditto, AHB bus
295296 # The description of this option makes it sound dangerous or even illegal
+3-3
pkgs/os-specific/linux/r8168/default.nix
···66in stdenv.mkDerivation rec {
77 name = "r8168-${kernel.version}-${version}";
88 # on update please verify that the source matches the realtek version
99- version = "8.048.03";
99+ version = "8.052.01";
10101111 # This is a mirror. The original website[1] doesn't allow non-interactive
1212 # downloads, instead emailing you a download link.
1313 # [1] https://www.realtek.com/en/component/zoo/category/network-interface-controllers-10-100-1000m-gigabit-ethernet-pci-express-software
1414- # I've verified manually (`diff -r`) that the source code for version 8.046.00
1414+ # I've verified manually (`diff -r`) that the source code for version 8.052.01
1515 # is the same as the one available on the realtek website.
1616 src = fetchFromGitHub {
1717 owner = "mtorromeo";
1818 repo = "r8168";
1919 rev = version;
2020- sha256 = "1l8llpcnapcaafxp7wlyny2ywh7k6q5zygwwjl9h0l6p04cghss4";
2020+ sha256 = "01mi7hh92nc7jaxkfrpz7j0ci78djrhgmq0im4k1270mwmvr0yzj";
2121 };
22222323 hardeningDisable = [ "pic" ];