Unverified Commit 7376f4b1 authored by Nick Cao's avatar Nick Cao
Browse files

nvchecker: include all optional-dependencies

parent 1f1cce51
Loading
Loading
Loading
Loading
+6 −1
Original line number Diff line number Diff line
@@ -11161,7 +11161,12 @@ with pkgs;
  numberstation = callPackage ../applications/misc/numberstation { };
  nvchecker = with python3Packages; toPythonApplication nvchecker;
  nvchecker = with python3Packages; toPythonApplication (
    nvchecker.overridePythonAttrs (oldAttrs: {
      propagatedBuildInputs = oldAttrs.propagatedBuildInputs
        ++ lib.flatten (builtins.attrValues oldAttrs.optional-dependencies);
    })
  );
  nvfetcher = haskell.lib.compose.justStaticExecutables haskellPackages.nvfetcher;