wireless-regdb: revert "add crda to tests"

This reverts commit eb657c45f9.

Prepare for `crda` removal from `nixpkgs`. According to upstream
https://lore.kernel.org/linux-wireless/455bafff0d609eb182ba30a5fbf319888e0e961d.camel@sipsolutions.net/
`crda` is not needed for kernels `4.16` or later. Such old kernels are
not in `nixpkgs` anymore.
This commit is contained in:
Sergei Trofimovich 2024-02-06 22:45:47 +00:00
parent 275855d632
commit 31fc36fcd9

View File

@ -1,4 +1,4 @@
{ lib, stdenvNoCC, fetchurl, directoryListingUpdater, crda }:
{ lib, stdenvNoCC, fetchurl, directoryListingUpdater }:
stdenvNoCC.mkDerivation rec {
pname = "wireless-regdb";
@ -16,12 +16,7 @@ stdenvNoCC.mkDerivation rec {
"PREFIX="
];
passthru = {
tests = {
inherit crda; # validate data base signature
};
updateScript = directoryListingUpdater { };
};
passthru.updateScript = directoryListingUpdater { };
meta = with lib; {
description = "Wireless regulatory database for CRDA";