mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2025-02-12 13:17:18 +02:00
cfe3ee3de8
* Refactor: rename runEnv -> isNixShell * Refactor: rename left -> remainingArgs * nix-build.cc: Refactor: extract baseDir variable * nix-build.cc: Refactor: extract sourcePath, resolvedPath variables * nix-shell: Look for shell.nix when directory is specified * Add legacy setting: nix-shell-always-looks-for-shell-nix * rl-next: Add note about shell.nix lookups * tests/functional/shell.nix: Implement runHook for dummy stdenv
19 lines
663 B
C++
19 lines
663 B
C++
#pragma once
|
|
#include "config.hh"
|
|
|
|
namespace nix {
|
|
struct CompatibilitySettings : public Config
|
|
{
|
|
|
|
CompatibilitySettings() = default;
|
|
|
|
Setting<bool> nixShellAlwaysLooksForShellNix{this, true, "nix-shell-always-looks-for-shell-nix", R"(
|
|
Before Nix 2.24, [`nix-shell`](@docroot@/command-ref/nix-shell.md) would only look at `shell.nix` if it was in the working directory - when no file was specified.
|
|
|
|
Since Nix 2.24, `nix-shell` always looks for a `shell.nix`, whether that's in the working directory, or in a directory that was passed as an argument.
|
|
|
|
You may set this to `false` to revert to the Nix 2.3 behavior.
|
|
)"};
|
|
};
|
|
|
|
};
|