Commit 0135f540 authored by Bad3r's avatar Bad3r
Browse files

python3Packages.wfuzz: set meta.mainProgram

The package installs four console scripts (wfuzz, wfpayload, wfencode,
wxfuzz) and is exposed at the top level via toPythonApplication, so
lib.getExe and `nix run` need an explicit primary binary to avoid the
default-pname fallback warning.
parent 03f3a96d
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -85,5 +85,6 @@ buildPythonPackage (finalAttrs: {
    homepage = "https://wfuzz.readthedocs.io";
    license = with lib.licenses; [ gpl2Only ];
    maintainers = with lib.maintainers; [ pamplemousse ];
    mainProgram = "wfuzz";
  };
})