2003-03-13 16:28:32 +00:00
|
|
|
#include <iostream>
|
2003-03-14 16:43:14 +00:00
|
|
|
|
2003-06-17 21:12:58 +00:00
|
|
|
#include "globals.hh"
|
2005-01-19 16:39:47 +00:00
|
|
|
#include "build.hh"
|
2004-08-25 11:43:49 +00:00
|
|
|
#include "gc.hh"
|
2003-06-20 10:40:25 +00:00
|
|
|
#include "archive.hh"
|
2003-07-04 15:42:03 +00:00
|
|
|
#include "shared.hh"
|
2003-09-03 11:20:18 +00:00
|
|
|
#include "dotgraph.hh"
|
2003-11-18 12:06:07 +00:00
|
|
|
#include "help.txt.hh"
|
2003-03-24 11:50:20 +00:00
|
|
|
|
|
|
|
|
2003-06-17 21:12:58 +00:00
|
|
|
typedef void (* Operation) (Strings opFlags, Strings opArgs);
|
2003-04-02 15:34:05 +00:00
|
|
|
|
|
|
|
|
2003-12-01 15:55:05 +00:00
|
|
|
void printHelp()
|
2003-07-28 12:19:23 +00:00
|
|
|
{
|
2003-11-18 12:06:07 +00:00
|
|
|
cout << string((char *) helpText, sizeof helpText);
|
2003-07-28 12:19:23 +00:00
|
|
|
}
|
2003-06-20 14:11:31 +00:00
|
|
|
|
|
|
|
|
2005-01-19 14:36:00 +00:00
|
|
|
static Path findOutput(const Derivation & drv, string id)
|
|
|
|
{
|
|
|
|
for (DerivationOutputs::const_iterator i = drv.outputs.begin();
|
|
|
|
i != drv.outputs.end(); ++i)
|
|
|
|
if (i->first == id) return i->second.path;
|
|
|
|
throw Error(format("derivation has no output `%1%'") % id);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-01-25 10:55:33 +00:00
|
|
|
/* Realisation the given path. For a derivation that means build it;
|
|
|
|
for other paths it means ensure their validity. */
|
|
|
|
static Path realisePath(const Path & path)
|
|
|
|
{
|
|
|
|
if (isDerivation(path)) {
|
|
|
|
PathSet paths;
|
|
|
|
paths.insert(path);
|
|
|
|
buildDerivations(paths);
|
|
|
|
return findOutput(derivationFromPath(path), "out");
|
|
|
|
} else {
|
|
|
|
ensurePath(path);
|
|
|
|
return path;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Realise the given paths. */
|
|
|
|
static void opRealise(Strings opFlags, Strings opArgs)
|
2003-03-14 16:43:14 +00:00
|
|
|
{
|
2003-06-17 21:12:58 +00:00
|
|
|
if (!opFlags.empty()) throw UsageError("unknown flag");
|
2003-03-13 16:28:32 +00:00
|
|
|
|
2005-01-25 10:55:33 +00:00
|
|
|
if (opArgs.size() > 1) {
|
|
|
|
PathSet drvPaths;
|
|
|
|
for (Strings::iterator i = opArgs.begin();
|
|
|
|
i != opArgs.end(); i++)
|
|
|
|
if (isDerivation(*i))
|
|
|
|
drvPaths.insert(*i);
|
|
|
|
buildDerivations(drvPaths);
|
|
|
|
}
|
2005-01-19 15:02:02 +00:00
|
|
|
|
2003-10-08 15:06:59 +00:00
|
|
|
for (Strings::iterator i = opArgs.begin();
|
|
|
|
i != opArgs.end(); i++)
|
2005-01-25 10:55:33 +00:00
|
|
|
cout << format("%1%\n") % realisePath(*i);
|
2003-04-02 15:34:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-01-19 11:16:11 +00:00
|
|
|
/* Add files to the Nix values directory and print the resulting
|
2003-07-08 10:00:46 +00:00
|
|
|
paths. */
|
2003-06-17 21:12:58 +00:00
|
|
|
static void opAdd(Strings opFlags, Strings opArgs)
|
2003-04-02 15:34:05 +00:00
|
|
|
{
|
2003-06-17 21:12:58 +00:00
|
|
|
if (!opFlags.empty()) throw UsageError("unknown flag");
|
2003-04-02 15:34:05 +00:00
|
|
|
|
2003-10-08 15:06:59 +00:00
|
|
|
for (Strings::iterator i = opArgs.begin(); i != opArgs.end(); i++)
|
|
|
|
cout << format("%1%\n") % addToStore(*i);
|
2003-03-13 16:28:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-01-25 10:55:33 +00:00
|
|
|
static Path maybeUseOutput(const Path & storePath, bool useOutput, bool forceRealise)
|
2003-07-29 10:43:12 +00:00
|
|
|
{
|
2005-01-25 10:55:33 +00:00
|
|
|
if (forceRealise) realisePath(storePath);
|
2005-01-19 14:36:00 +00:00
|
|
|
if (useOutput && isDerivation(storePath)) {
|
|
|
|
Derivation drv = derivationFromPath(storePath);
|
|
|
|
return findOutput(drv, "out");
|
|
|
|
}
|
|
|
|
else return storePath;
|
2003-07-29 10:43:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-01-19 16:59:56 +00:00
|
|
|
static void printPathSet(const PathSet & paths)
|
|
|
|
{
|
|
|
|
for (PathSet::iterator i = paths.begin();
|
|
|
|
i != paths.end(); i++)
|
|
|
|
cout << format("%s\n") % *i;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-07-08 13:22:08 +00:00
|
|
|
/* Perform various sorts of queries. */
|
|
|
|
static void opQuery(Strings opFlags, Strings opArgs)
|
|
|
|
{
|
2005-01-19 16:59:56 +00:00
|
|
|
enum { qOutputs, qRequisites, qReferences, qReferers, qGraph } query = qOutputs;
|
2005-01-19 14:36:00 +00:00
|
|
|
bool useOutput = false;
|
|
|
|
bool includeOutputs = false;
|
2005-01-25 10:55:33 +00:00
|
|
|
bool forceRealise = false;
|
2003-07-21 14:46:01 +00:00
|
|
|
|
|
|
|
for (Strings::iterator i = opFlags.begin();
|
|
|
|
i != opFlags.end(); i++)
|
2005-01-19 14:36:00 +00:00
|
|
|
if (*i == "--outputs") query = qOutputs;
|
2003-11-18 11:22:29 +00:00
|
|
|
else if (*i == "--requisites" || *i == "-R") query = qRequisites;
|
2005-01-19 16:59:56 +00:00
|
|
|
else if (*i == "--references") query = qReferences;
|
|
|
|
else if (*i == "--referers") query = qReferers;
|
2003-07-28 12:19:23 +00:00
|
|
|
else if (*i == "--graph") query = qGraph;
|
2005-01-19 14:36:00 +00:00
|
|
|
else if (*i == "--use-output" || *i == "-u") useOutput = true;
|
2005-01-25 10:55:33 +00:00
|
|
|
else if (*i == "--force-realise" || *i == "-f") forceRealise = true;
|
2005-01-19 14:36:00 +00:00
|
|
|
else if (*i == "--include-outputs") includeOutputs = true;
|
2003-07-21 14:46:01 +00:00
|
|
|
else throw UsageError(format("unknown flag `%1%'") % *i);
|
|
|
|
|
|
|
|
switch (query) {
|
|
|
|
|
2005-01-19 14:36:00 +00:00
|
|
|
case qOutputs: {
|
2003-07-21 14:46:01 +00:00
|
|
|
for (Strings::iterator i = opArgs.begin();
|
|
|
|
i != opArgs.end(); i++)
|
|
|
|
{
|
2005-01-25 10:55:33 +00:00
|
|
|
if (forceRealise) realisePath(*i);
|
2005-01-19 14:36:00 +00:00
|
|
|
Derivation drv = derivationFromPath(*i);
|
|
|
|
cout << format("%1%\n") % findOutput(drv, "out");
|
2003-07-21 14:46:01 +00:00
|
|
|
}
|
2003-07-08 13:22:08 +00:00
|
|
|
break;
|
2003-07-10 13:41:28 +00:00
|
|
|
}
|
2003-07-08 13:22:08 +00:00
|
|
|
|
2005-01-19 16:59:56 +00:00
|
|
|
case qRequisites:
|
|
|
|
case qReferences:
|
|
|
|
case qReferers: {
|
2005-01-19 14:36:00 +00:00
|
|
|
PathSet paths;
|
2003-07-21 14:46:01 +00:00
|
|
|
for (Strings::iterator i = opArgs.begin();
|
|
|
|
i != opArgs.end(); i++)
|
|
|
|
{
|
2005-01-25 10:55:33 +00:00
|
|
|
Path path = maybeUseOutput(*i, useOutput, forceRealise);
|
2005-01-19 16:59:56 +00:00
|
|
|
if (query == qRequisites)
|
|
|
|
storePathRequisites(path, includeOutputs, paths);
|
|
|
|
else if (query == qReferences) queryReferences(path, paths);
|
|
|
|
else if (query == qReferers) queryReferers(path, paths);
|
2003-07-21 14:46:01 +00:00
|
|
|
}
|
2005-01-19 16:59:56 +00:00
|
|
|
printPathSet(paths);
|
2003-07-21 14:46:01 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2005-01-19 14:36:00 +00:00
|
|
|
#if 0
|
2003-07-28 12:19:23 +00:00
|
|
|
case qGraph: {
|
2003-10-08 15:06:59 +00:00
|
|
|
PathSet roots;
|
2003-07-28 12:19:23 +00:00
|
|
|
for (Strings::iterator i = opArgs.begin();
|
|
|
|
i != opArgs.end(); i++)
|
2004-06-20 19:17:54 +00:00
|
|
|
roots.insert(maybeNormalise(*i, normalise, realise));
|
2003-09-03 11:20:18 +00:00
|
|
|
printDotGraph(roots);
|
2003-07-28 12:19:23 +00:00
|
|
|
break;
|
|
|
|
}
|
2005-01-19 14:36:00 +00:00
|
|
|
#endif
|
2003-07-28 12:19:23 +00:00
|
|
|
|
2003-07-08 13:22:08 +00:00
|
|
|
default:
|
|
|
|
abort();
|
|
|
|
}
|
|
|
|
}
|
2003-07-10 18:48:11 +00:00
|
|
|
|
|
|
|
|
2003-07-10 15:11:48 +00:00
|
|
|
static void opSubstitute(Strings opFlags, Strings opArgs)
|
|
|
|
{
|
|
|
|
if (!opFlags.empty()) throw UsageError("unknown flag");
|
2004-06-20 19:17:54 +00:00
|
|
|
if (!opArgs.empty())
|
|
|
|
throw UsageError("no arguments expected");
|
|
|
|
|
2004-08-31 16:13:10 +00:00
|
|
|
SubstitutePairs subPairs;
|
2004-06-21 07:38:17 +00:00
|
|
|
Transaction txn;
|
|
|
|
createStoreTransaction(txn);
|
|
|
|
|
2004-06-20 19:17:54 +00:00
|
|
|
while (1) {
|
|
|
|
Path srcPath;
|
|
|
|
Substitute sub;
|
|
|
|
getline(cin, srcPath);
|
|
|
|
if (cin.eof()) break;
|
|
|
|
getline(cin, sub.program);
|
|
|
|
string s;
|
|
|
|
getline(cin, s);
|
|
|
|
int n;
|
2004-09-10 13:32:08 +00:00
|
|
|
if (!string2Int(s, n)) throw Error("number expected");
|
2004-06-20 19:17:54 +00:00
|
|
|
while (n--) {
|
|
|
|
getline(cin, s);
|
|
|
|
sub.args.push_back(s);
|
|
|
|
}
|
|
|
|
if (!cin || cin.eof()) throw Error("missing input");
|
2004-08-31 16:13:10 +00:00
|
|
|
subPairs.push_back(pair<Path, Substitute>(srcPath, sub));
|
2003-07-10 15:11:48 +00:00
|
|
|
}
|
2004-06-21 07:38:17 +00:00
|
|
|
|
2004-08-31 16:13:10 +00:00
|
|
|
registerSubstitutes(txn, subPairs);
|
|
|
|
|
2004-06-21 07:38:17 +00:00
|
|
|
txn.commit();
|
2003-07-10 15:11:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-12-20 13:43:32 +00:00
|
|
|
static void opClearSubstitutes(Strings opFlags, Strings opArgs)
|
|
|
|
{
|
|
|
|
if (!opFlags.empty()) throw UsageError("unknown flag");
|
|
|
|
if (!opArgs.empty())
|
|
|
|
throw UsageError("no arguments expected");
|
|
|
|
|
|
|
|
clearSubstitutes();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-02-14 21:44:18 +00:00
|
|
|
static void opValidPath(Strings opFlags, Strings opArgs)
|
|
|
|
{
|
|
|
|
if (!opFlags.empty()) throw UsageError("unknown flag");
|
|
|
|
|
|
|
|
Transaction txn;
|
|
|
|
createStoreTransaction(txn);
|
|
|
|
for (Strings::iterator i = opArgs.begin();
|
|
|
|
i != opArgs.end(); ++i)
|
2005-01-19 16:39:47 +00:00
|
|
|
registerValidPath(txn, *i, hashPath(htSHA256, *i));
|
2004-02-14 21:44:18 +00:00
|
|
|
txn.commit();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void opIsValid(Strings opFlags, Strings opArgs)
|
|
|
|
{
|
|
|
|
if (!opFlags.empty()) throw UsageError("unknown flag");
|
|
|
|
|
|
|
|
for (Strings::iterator i = opArgs.begin();
|
|
|
|
i != opArgs.end(); ++i)
|
|
|
|
if (!isValidPath(*i))
|
|
|
|
throw Error(format("path `%1%' is not valid") % *i);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-08-25 11:43:49 +00:00
|
|
|
static void opGC(Strings opFlags, Strings opArgs)
|
|
|
|
{
|
2005-01-19 11:16:11 +00:00
|
|
|
#if 0
|
2004-08-25 11:43:49 +00:00
|
|
|
/* Do what? */
|
|
|
|
enum { soPrintLive, soPrintDead, soDelete } subOp;
|
2004-08-25 16:54:08 +00:00
|
|
|
time_t minAge = 0;
|
|
|
|
for (Strings::iterator i = opFlags.begin();
|
|
|
|
i != opFlags.end(); ++i)
|
|
|
|
if (*i == "--print-live") subOp = soPrintLive;
|
|
|
|
else if (*i == "--print-dead") subOp = soPrintDead;
|
|
|
|
else if (*i == "--delete") subOp = soDelete;
|
|
|
|
else if (*i == "--min-age") {
|
2004-09-10 13:32:08 +00:00
|
|
|
int n;
|
|
|
|
if (opArgs.size() == 0 || !string2Int(opArgs.front(), n))
|
|
|
|
throw UsageError("`--min-age' requires an integer argument");
|
|
|
|
minAge = n;
|
2004-08-25 16:54:08 +00:00
|
|
|
}
|
|
|
|
else throw UsageError(format("bad sub-operation `%1%' in GC") % *i);
|
2004-08-25 11:43:49 +00:00
|
|
|
|
|
|
|
Paths roots;
|
|
|
|
while (1) {
|
|
|
|
Path root;
|
|
|
|
getline(cin, root);
|
|
|
|
if (cin.eof()) break;
|
|
|
|
roots.push_back(root);
|
|
|
|
}
|
|
|
|
|
|
|
|
PathSet live = findLivePaths(roots);
|
|
|
|
|
|
|
|
if (subOp == soPrintLive) {
|
|
|
|
for (PathSet::iterator i = live.begin(); i != live.end(); ++i)
|
|
|
|
cout << *i << endl;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2004-08-25 16:54:08 +00:00
|
|
|
PathSet dead = findDeadPaths(live, minAge * 3600);
|
2004-08-25 11:43:49 +00:00
|
|
|
|
|
|
|
if (subOp == soPrintDead) {
|
|
|
|
for (PathSet::iterator i = dead.begin(); i != dead.end(); ++i)
|
|
|
|
cout << *i << endl;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (subOp == soDelete) {
|
|
|
|
|
|
|
|
/* !!! What happens if the garbage collector run is aborted
|
|
|
|
halfway through? In particular, dead paths can always
|
|
|
|
become live again (through re-instantiation), and might
|
|
|
|
then refer to deleted paths. => check instantiation
|
|
|
|
invariants */
|
|
|
|
|
|
|
|
for (PathSet::iterator i = dead.begin(); i != dead.end(); ++i) {
|
|
|
|
printMsg(lvlInfo, format("deleting `%1%'") % *i);
|
|
|
|
deleteFromStore(*i);
|
|
|
|
}
|
|
|
|
}
|
2005-01-19 11:16:11 +00:00
|
|
|
#endif
|
2004-08-25 11:43:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-06-18 14:34:43 +00:00
|
|
|
/* A sink that writes dump output to stdout. */
|
|
|
|
struct StdoutSink : DumpSink
|
|
|
|
{
|
|
|
|
virtual void operator ()
|
|
|
|
(const unsigned char * data, unsigned int len)
|
|
|
|
{
|
2003-07-20 21:11:43 +00:00
|
|
|
writeFull(STDOUT_FILENO, data, len);
|
2003-06-18 14:34:43 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2003-07-08 10:00:46 +00:00
|
|
|
/* Dump a path as a Nix archive. The archive is written to standard
|
2003-06-23 14:08:34 +00:00
|
|
|
output. */
|
2003-06-18 14:34:43 +00:00
|
|
|
static void opDump(Strings opFlags, Strings opArgs)
|
|
|
|
{
|
|
|
|
if (!opFlags.empty()) throw UsageError("unknown flag");
|
|
|
|
if (opArgs.size() != 1) throw UsageError("only one argument allowed");
|
|
|
|
|
|
|
|
StdoutSink sink;
|
2003-10-08 15:06:59 +00:00
|
|
|
string path = *opArgs.begin();
|
2003-06-23 14:08:34 +00:00
|
|
|
dumpPath(path, sink);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* A source that read restore intput to stdin. */
|
|
|
|
struct StdinSource : RestoreSource
|
|
|
|
{
|
2003-07-20 21:11:43 +00:00
|
|
|
virtual void operator () (unsigned char * data, unsigned int len)
|
2003-06-23 14:08:34 +00:00
|
|
|
{
|
2003-07-20 21:11:43 +00:00
|
|
|
readFull(STDIN_FILENO, data, len);
|
2003-06-23 14:08:34 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/* Restore a value from a Nix archive. The archive is written to
|
|
|
|
standard input. */
|
|
|
|
static void opRestore(Strings opFlags, Strings opArgs)
|
|
|
|
{
|
|
|
|
if (!opFlags.empty()) throw UsageError("unknown flag");
|
|
|
|
if (opArgs.size() != 1) throw UsageError("only one argument allowed");
|
|
|
|
|
|
|
|
StdinSource source;
|
|
|
|
restorePath(*opArgs.begin(), source);
|
2003-06-18 14:34:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-06-17 21:12:58 +00:00
|
|
|
/* Initialise the Nix databases. */
|
|
|
|
static void opInit(Strings opFlags, Strings opArgs)
|
2003-05-26 09:44:18 +00:00
|
|
|
{
|
2003-06-17 21:12:58 +00:00
|
|
|
if (!opFlags.empty()) throw UsageError("unknown flag");
|
|
|
|
if (!opArgs.empty())
|
2004-06-20 19:17:54 +00:00
|
|
|
throw UsageError("no arguments expected");
|
2003-06-17 21:12:58 +00:00
|
|
|
initDB();
|
2003-03-21 15:53:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-07-17 12:27:55 +00:00
|
|
|
/* Verify the consistency of the Nix environment. */
|
|
|
|
static void opVerify(Strings opFlags, Strings opArgs)
|
|
|
|
{
|
|
|
|
verifyStore();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-07-04 15:42:03 +00:00
|
|
|
/* Scan the arguments; find the operation, set global flags, put all
|
|
|
|
other flags in a list, and put all other arguments in another
|
|
|
|
list. */
|
|
|
|
void run(Strings args)
|
2003-03-24 17:49:56 +00:00
|
|
|
{
|
2003-06-20 14:11:31 +00:00
|
|
|
Strings opFlags, opArgs;
|
|
|
|
Operation op = 0;
|
|
|
|
|
2003-11-19 17:27:16 +00:00
|
|
|
for (Strings::iterator i = args.begin(); i != args.end(); ++i) {
|
|
|
|
string arg = *i;
|
2003-03-24 17:49:56 +00:00
|
|
|
|
2003-06-17 21:12:58 +00:00
|
|
|
Operation oldOp = op;
|
2003-03-24 17:49:56 +00:00
|
|
|
|
2005-01-25 10:55:33 +00:00
|
|
|
if (arg == "--realise" || arg == "-r")
|
|
|
|
op = opRealise;
|
2003-07-08 13:22:08 +00:00
|
|
|
else if (arg == "--add" || arg == "-A")
|
2003-06-17 21:12:58 +00:00
|
|
|
op = opAdd;
|
2005-01-19 14:36:00 +00:00
|
|
|
else if (arg == "--query" || arg == "-q")
|
|
|
|
op = opQuery;
|
2003-07-10 15:11:48 +00:00
|
|
|
else if (arg == "--substitute")
|
|
|
|
op = opSubstitute;
|
2004-12-20 13:43:32 +00:00
|
|
|
else if (arg == "--clear-substitutes")
|
|
|
|
op = opClearSubstitutes;
|
2004-02-14 21:44:18 +00:00
|
|
|
else if (arg == "--validpath")
|
|
|
|
op = opValidPath;
|
|
|
|
else if (arg == "--isvalid")
|
|
|
|
op = opIsValid;
|
2004-08-25 11:43:49 +00:00
|
|
|
else if (arg == "--gc")
|
|
|
|
op = opGC;
|
2003-06-18 14:34:43 +00:00
|
|
|
else if (arg == "--dump")
|
|
|
|
op = opDump;
|
2003-06-23 14:08:34 +00:00
|
|
|
else if (arg == "--restore")
|
|
|
|
op = opRestore;
|
2003-06-17 21:12:58 +00:00
|
|
|
else if (arg == "--init")
|
|
|
|
op = opInit;
|
2003-07-17 12:27:55 +00:00
|
|
|
else if (arg == "--verify")
|
|
|
|
op = opVerify;
|
2003-06-17 21:12:58 +00:00
|
|
|
else if (arg[0] == '-')
|
|
|
|
opFlags.push_back(arg);
|
|
|
|
else
|
|
|
|
opArgs.push_back(arg);
|
2003-05-25 22:42:19 +00:00
|
|
|
|
2003-06-17 21:12:58 +00:00
|
|
|
if (oldOp && oldOp != op)
|
|
|
|
throw UsageError("only one operation may be specified");
|
2003-05-25 22:42:19 +00:00
|
|
|
}
|
|
|
|
|
2003-06-17 21:12:58 +00:00
|
|
|
if (!op) throw UsageError("no operation specified");
|
2003-03-20 16:53:00 +00:00
|
|
|
|
2004-02-14 21:44:18 +00:00
|
|
|
if (op != opDump && op != opRestore) /* !!! hack */
|
|
|
|
openDB();
|
2003-10-14 15:33:00 +00:00
|
|
|
|
2003-06-17 21:12:58 +00:00
|
|
|
op(opFlags, opArgs);
|
2003-03-20 16:53:00 +00:00
|
|
|
}
|
2003-03-14 16:43:14 +00:00
|
|
|
|
2003-03-24 17:49:56 +00:00
|
|
|
|
2003-11-18 12:06:07 +00:00
|
|
|
string programId = "nix-store";
|