summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2016-06-02 16:29:49 +0200
committerEelco Dolstra <eelco.dolstra@logicblox.com>2016-06-02 16:29:49 +0200
commit6f2d51287c471238a2ff1a517c965560dfb2a149 (patch)
treec163842b0c9d292616370085a95e1537ea6f8daf /src
parent4494000e04122f24558e1436e66d20d89028b4bd (diff)
Add basic "nix run" command
Diffstat (limited to 'src')
-rw-r--r--src/nix/run.cc62
1 files changed, 62 insertions, 0 deletions
diff --git a/src/nix/run.cc b/src/nix/run.cc
new file mode 100644
index 000000000..ba1efb63b
--- /dev/null
+++ b/src/nix/run.cc
@@ -0,0 +1,62 @@
+#include "command.hh"
+#include "common-args.hh"
+#include "installables.hh"
+#include "shared.hh"
+#include "store-api.hh"
+#include "derivations.hh"
+
+using namespace nix;
+
+struct CmdRun : StoreCommand, MixInstallables
+{
+ CmdRun()
+ {
+ }
+
+ std::string name() override
+ {
+ return "run";
+ }
+
+ std::string description() override
+ {
+ return "run a shell in which the specified packages are available";
+ }
+
+ void run(ref<Store> store) override
+ {
+ auto elems = evalInstallables(store);
+
+ PathSet pathsToBuild;
+
+ for (auto & elem : elems) {
+ if (elem.isDrv)
+ pathsToBuild.insert(elem.drvPath);
+ else
+ pathsToBuild.insert(elem.outPaths.begin(), elem.outPaths.end());
+ }
+
+ printMissing(store, pathsToBuild);
+
+ store->buildPaths(pathsToBuild);
+
+ PathSet outPaths;
+ for (auto & path : pathsToBuild)
+ if (isDerivation(path)) {
+ Derivation drv = store->derivationFromPath(path);
+ for (auto & output : drv.outputs)
+ outPaths.insert(output.second.path);
+ } else
+ outPaths.insert(path);
+
+ auto unixPath = tokenizeString<Strings>(getEnv("PATH"), ":");
+ for (auto & path : outPaths)
+ if (pathExists(path + "/bin"))
+ unixPath.push_front(path + "/bin");
+ setenv("PATH", concatStringsSep(":", unixPath).c_str(), 1);
+
+ execlp("bash", "bash", nullptr);
+ }
+};
+
+static RegisterCommand r1(make_ref<CmdRun>());