Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nix
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 81cafda306e7
Choose a base ref
...
head repository: NixOS/nix
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: f85606c431dc
Choose a head ref
  • 3 commits
  • 6 files changed
  • 1 contributor

Commits on Jun 4, 2020

  1. Rename 'nix dev-shell' to 'nix develop'

    Fixes #3648.
    edolstra committed Jun 4, 2020

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    61e3d59 View commit details
  2. Unverified

    This user has not yet uploaded their public signing key.
    Copy the full SHA
    0f44b60 View commit details
  3. Unverified

    This user has not yet uploaded their public signing key.
    Copy the full SHA
    f85606c View commit details
Showing with 18 additions and 11 deletions.
  1. +4 −0 src/libutil/args.cc
  2. +2 −0 src/libutil/args.hh
  3. +1 −2 src/libutil/util.hh
  4. +8 −8 src/nix/{dev-shell.cc → develop.cc}
  5. +1 −1 src/nix/local.mk
  6. +2 −0 src/nix/main.cc
4 changes: 4 additions & 0 deletions src/libutil/args.cc
Original file line number Diff line number Diff line change
@@ -303,6 +303,10 @@ MultiCommand::MultiCommand(const Commands & commands)
.optional = true,
.handler = {[=](std::string s) {
assert(!command);
if (auto alias = get(deprecatedAliases, s)) {
warn("'%s' is a deprecated alias for '%s'", s, *alias);
s = *alias;
}
if (auto prefix = needsCompletion(s)) {
for (auto & [name, command] : commands)
if (hasPrefix(name, *prefix))
2 changes: 2 additions & 0 deletions src/libutil/args.hh
Original file line number Diff line number Diff line change
@@ -248,6 +248,8 @@ public:

std::map<Command::Category, std::string> categories;

std::map<std::string, std::string> deprecatedAliases;

// Selected command, if any.
std::optional<std::pair<std::string, ref<Command>>> command;

3 changes: 1 addition & 2 deletions src/libutil/util.hh
Original file line number Diff line number Diff line change
@@ -463,8 +463,7 @@ string base64Encode(const string & s);
string base64Decode(const string & s);


/* Get a value for the specified key from an associate container, or a
default value if the key doesn't exist. */
/* Get a value for the specified key from an associate container. */
template <class T>
std::optional<typename T::mapped_type> get(const T & map, const typename T::key_type & key)
{
16 changes: 8 additions & 8 deletions src/nix/dev-shell.cc → src/nix/develop.cc
Original file line number Diff line number Diff line change
@@ -110,7 +110,7 @@ StorePath getDerivationEnvironment(ref<Store> store, const StorePath & drvPath)

auto builder = baseNameOf(drv.builder);
if (builder != "bash")
throw Error("'nix dev-shell' only works on derivations that use 'bash' as their builder");
throw Error("'nix develop' only works on derivations that use 'bash' as their builder");

auto getEnvShPath = store->addTextToStore("get-env.sh", getEnvSh, {});

@@ -236,11 +236,11 @@ struct Common : InstallableCommand, MixProfile
}
};

struct CmdDevShell : Common, MixEnvironment
struct CmdDevelop : Common, MixEnvironment
{
std::vector<std::string> command;

CmdDevShell()
CmdDevelop()
{
addFlag({
.longName = "command",
@@ -264,19 +264,19 @@ struct CmdDevShell : Common, MixEnvironment
return {
Example{
"To get the build environment of GNU hello:",
"nix dev-shell nixpkgs#hello"
"nix develop nixpkgs#hello"
},
Example{
"To get the build environment of the default package of flake in the current directory:",
"nix dev-shell"
"nix develop"
},
Example{
"To store the build environment in a profile:",
"nix dev-shell --profile /tmp/my-shell nixpkgs#hello"
"nix develop --profile /tmp/my-shell nixpkgs#hello"
},
Example{
"To use a build environment previously recorded in a profile:",
"nix dev-shell /tmp/my-shell"
"nix develop /tmp/my-shell"
},
};
}
@@ -351,4 +351,4 @@ struct CmdPrintDevEnv : Common
};

static auto r1 = registerCommand<CmdPrintDevEnv>("print-dev-env");
static auto r2 = registerCommand<CmdDevShell>("dev-shell");
static auto r2 = registerCommand<CmdDevelop>("develop");
2 changes: 1 addition & 1 deletion src/nix/local.mk
Original file line number Diff line number Diff line change
@@ -28,6 +28,6 @@ $(eval $(call install-symlink, $(bindir)/nix, $(libexecdir)/nix/build-remote))

src/nix-env/user-env.cc: src/nix-env/buildenv.nix.gen.hh

src/nix/dev-shell.cc: src/nix/get-env.sh.gen.hh
src/nix/develop.cc: src/nix/get-env.sh.gen.hh

$(d)/flake.cc: $(d)/flake-template.nix.gen.hh
2 changes: 2 additions & 0 deletions src/nix/main.cc
Original file line number Diff line number Diff line change
@@ -110,6 +110,8 @@ struct NixArgs : virtual MultiCommand, virtual MixCommonArgs
.description = "consider all previously downloaded files out-of-date",
.handler = {[&]() { refresh = true; }},
});

deprecatedAliases.insert({"dev-shell", "develop"});
}

void printFlags(std::ostream & out) override