diff --git a/flake.nix b/flake.nix index bcfd2b2..8a01bb9 100644 --- a/flake.nix +++ b/flake.nix @@ -20,7 +20,14 @@ in rec { packages = { - # inherit codedown; + # For nix repl debugging + inherit codedown; + + # Tests use flake to do packageSearch builds + inherit (codedown) languages; + + # For .envrc + nixpkgsPath = pkgsStable.writeShellScriptBin "nixpkgsPath.sh" "echo -n ${pkgsStable.path}"; jupyter-runner = pkgsMaster.callPackage ./nix/jupyter-runner.nix {}; diff --git a/languages/go/full.nix b/languages/go/full.nix index 2e2989e..3d20e33 100644 --- a/languages/go/full.nix +++ b/languages/go/full.nix @@ -44,7 +44,7 @@ symlinkJoin { passthru = { meta = go.meta // { - baseName = x; + baseName = "go"; displayName = "Go"; version = go.version; icon = ./go-logo-64x64.png;