about summary refs log tree commit diff
path: root/pkgs/os-specific/linux/rtl8852au/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/os-specific/linux/rtl8852au/default.nix')
-rw-r--r--pkgs/os-specific/linux/rtl8852au/default.nix52
1 files changed, 0 insertions, 52 deletions
diff --git a/pkgs/os-specific/linux/rtl8852au/default.nix b/pkgs/os-specific/linux/rtl8852au/default.nix
deleted file mode 100644
index e7b682893f85..000000000000
--- a/pkgs/os-specific/linux/rtl8852au/default.nix
+++ /dev/null
@@ -1,52 +0,0 @@
-{ lib, stdenv, fetchFromGitHub, kernel, bc, nukeReferences }:
-
-stdenv.mkDerivation {
-  pname = "rtl8852au";
-  version = "${kernel.version}-unstable-2024-04-16";
-
-  src = fetchFromGitHub {
-    owner = "lwfinger";
-    repo = "rtl8852au";
-    rev = "5894bc6fed2bcaa525d13fcee1edada8aba67f2b";
-    hash = "sha256-R4Yb/jbh3nMgM41ByFjtkCMbsh/mmMRJ7CcvCRUvKu8=";
-  };
-
-  nativeBuildInputs = [ bc nukeReferences ] ++ kernel.moduleBuildDependencies;
-  hardeningDisable = [ "pic" "format" ];
-
-  postPatch = ''
-    substituteInPlace ./Makefile \
-      --replace-fail /sbin/depmod \# \
-      --replace-fail '$(MODDESTDIR)' "$out/lib/modules/${kernel.modDirVersion}/kernel/net/wireless/" \
-      --replace-fail '/usr/lib/systemd/system-sleep' "$out/usr/lib/systemd/system-sleep"
-    substituteInPlace ./platform/i386_pc.mk \
-      --replace-fail /lib/modules "${kernel.dev}/lib/modules"
-  '';
-
-  makeFlags = [
-    "ARCH=${stdenv.hostPlatform.linuxArch}"
-    ("CONFIG_PLATFORM_I386_PC=" + (if stdenv.hostPlatform.isx86 then "y" else "n"))
-    ("CONFIG_PLATFORM_ARM_RPI=" + (if stdenv.hostPlatform.isAarch then "y" else "n"))
-  ] ++ lib.optionals (stdenv.hostPlatform != stdenv.buildPlatform) [
-    "CROSS_COMPILE=${stdenv.cc.targetPrefix}"
-  ];
-
-  preInstall = ''
-    mkdir -p "$out/lib/modules/${kernel.modDirVersion}/kernel/net/wireless/"
-    mkdir -p "$out/usr/lib/systemd/system-sleep"
-  '';
-
-  postInstall = ''
-    nuke-refs $out/lib/modules/*/kernel/net/wireless/*.ko
-  '';
-
-  enableParallelBuilding = true;
-
-  meta = with lib; {
-    description = "Driver for Realtek 802.11ac, rtl8852au, provides the 8852au mod";
-    homepage = "https://github.com/lwfinger/rtl8852au";
-    license = licenses.gpl2Only;
-    platforms = platforms.linux;
-    maintainers = with maintainers; [ lonyelon ];
-  };
-}