diff --git a/codedown.nix b/codedown.nix index 28a1052..42f882f 100644 --- a/codedown.nix +++ b/codedown.nix @@ -43,7 +43,7 @@ rec { everythingEnv = evaluateConfig everythingConfig; - codedownSearcher = common.searcher' { + searcher = common.searcher' { # Note that we deliberately don't include "testing" packages in the searcher packages = everythingEnv.config.builtKernels // (lib.mapAttrs' (n: v: lib.nameValuePair ("shells." + n) v) everythingEnv.config.builtShells) diff --git a/flake.nix b/flake.nix index b48310e..7678087 100644 --- a/flake.nix +++ b/flake.nix @@ -24,7 +24,7 @@ # inherit codedown; # Tests use flake to do packageSearch builds - inherit (codedown) codedownSearcher; + inherit (codedown) searcher; allSettingsSchemas = pkgsStable.callPackage ./nix/all-settings-schemas.nix { inherit (sampleOutputs) sample_environments; }; # For .envrc diff --git a/tests/app/Spec/Tests/Searchers.hs b/tests/app/Spec/Tests/Searchers.hs index 9304db1..34acfcf 100644 --- a/tests/app/Spec/Tests/Searchers.hs +++ b/tests/app/Spec/Tests/Searchers.hs @@ -10,7 +10,7 @@ import TestLib.Types tests :: SimpleSpec tests = describe "Searchers" $ do - it "searcher has some results" $ testSearcherHasNonemptyResults "codedownSearcher" + it "searcher has some results" $ testSearcherHasNonemptyResults "searcher" main :: IO () main = runSandwichWithCommandLineArgs Sandwich.defaultOptions $