forked from lix-project/lix
Merge remote-tracking branch 'origin/master' into flakes
This commit is contained in:
commit
97d1c7f932
|
@ -142,7 +142,7 @@ sudo rm /Library/LaunchDaemons/org.nixos.nix-daemon.plist
|
||||||
<para>
|
<para>
|
||||||
NixOS.org hosts version-specific installation URLs for all Nix
|
NixOS.org hosts version-specific installation URLs for all Nix
|
||||||
versions since 1.11.16, at
|
versions since 1.11.16, at
|
||||||
<literal>https://nixos.org/releases/nix/nix-VERSION/install</literal>.
|
<literal>https://releases.nixos.org/nix/nix-<replaceable>version</replaceable>/install</literal>.
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
<para>
|
<para>
|
||||||
|
|
|
@ -102,7 +102,7 @@ SV * queryPathInfo(char * path, int base32)
|
||||||
PPCODE:
|
PPCODE:
|
||||||
try {
|
try {
|
||||||
auto info = store()->queryPathInfo(store()->parseStorePath(path));
|
auto info = store()->queryPathInfo(store()->parseStorePath(path));
|
||||||
if (info->deriver)
|
if (!info->deriver)
|
||||||
XPUSHs(&PL_sv_undef);
|
XPUSHs(&PL_sv_undef);
|
||||||
else
|
else
|
||||||
XPUSHs(sv_2mortal(newSVpv(store()->printStorePath(*info->deriver).c_str(), 0)));
|
XPUSHs(sv_2mortal(newSVpv(store()->printStorePath(*info->deriver).c_str(), 0)));
|
||||||
|
|
|
@ -30,7 +30,7 @@ case "$(uname -s).$(uname -m)" in
|
||||||
*) oops "sorry, there is no binary distribution of Nix for your platform";;
|
*) oops "sorry, there is no binary distribution of Nix for your platform";;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
url="https://nixos.org/releases/nix/nix-@nixVersion@/nix-@nixVersion@-$system.tar.xz"
|
url="https://releases.nixos.org/nix/nix-@nixVersion@/nix-@nixVersion@-$system.tar.xz"
|
||||||
|
|
||||||
tarball="$tmpDir/$(basename "$tmpDir/nix-@nixVersion@-$system.tar.xz")"
|
tarball="$tmpDir/$(basename "$tmpDir/nix-@nixVersion@-$system.tar.xz")"
|
||||||
|
|
||||||
|
|
|
@ -44,46 +44,6 @@ static string makeNode(const string & id, std::string_view label,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
#if 0
|
|
||||||
string pathLabel(const Path & nePath, const string & elemPath)
|
|
||||||
{
|
|
||||||
return (string) nePath + "-" + elemPath;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
void printClosure(const Path & nePath, const StoreExpr & fs)
|
|
||||||
{
|
|
||||||
PathSet workList(fs.closure.roots);
|
|
||||||
PathSet doneSet;
|
|
||||||
|
|
||||||
for (PathSet::iterator i = workList.begin(); i != workList.end(); ++i) {
|
|
||||||
cout << makeEdge(pathLabel(nePath, *i), nePath);
|
|
||||||
}
|
|
||||||
|
|
||||||
while (!workList.empty()) {
|
|
||||||
Path path = *(workList.begin());
|
|
||||||
workList.erase(path);
|
|
||||||
|
|
||||||
if (doneSet.insert(path).second) {
|
|
||||||
ClosureElems::const_iterator elem = fs.closure.elems.find(path);
|
|
||||||
if (elem == fs.closure.elems.end())
|
|
||||||
throw Error(format("bad closure, missing path '%1%'") % path);
|
|
||||||
|
|
||||||
for (StringSet::const_iterator i = elem->second.refs.begin();
|
|
||||||
i != elem->second.refs.end(); ++i)
|
|
||||||
{
|
|
||||||
workList.insert(*i);
|
|
||||||
cout << makeEdge(pathLabel(nePath, *i), pathLabel(nePath, path));
|
|
||||||
}
|
|
||||||
|
|
||||||
cout << makeNode(pathLabel(nePath, path),
|
|
||||||
symbolicName(path), "#ff0000");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
|
|
||||||
|
|
||||||
void printDotGraph(ref<Store> store, StorePathSet && roots)
|
void printDotGraph(ref<Store> store, StorePathSet && roots)
|
||||||
{
|
{
|
||||||
StorePathSet workList(std::move(roots));
|
StorePathSet workList(std::move(roots));
|
||||||
|
@ -101,40 +61,9 @@ void printDotGraph(ref<Store> store, StorePathSet && roots)
|
||||||
for (auto & p : store->queryPathInfo(path)->references) {
|
for (auto & p : store->queryPathInfo(path)->references) {
|
||||||
if (p != path) {
|
if (p != path) {
|
||||||
workList.insert(p.clone());
|
workList.insert(p.clone());
|
||||||
cout << makeEdge(std::string(p.to_string()), std::string(p.to_string()));
|
cout << makeEdge(std::string(p.to_string()), std::string(path.to_string()));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#if 0
|
|
||||||
StoreExpr ne = storeExprFromPath(path);
|
|
||||||
|
|
||||||
string label, colour;
|
|
||||||
|
|
||||||
if (ne.type == StoreExpr::neDerivation) {
|
|
||||||
for (PathSet::iterator i = ne.derivation.inputs.begin();
|
|
||||||
i != ne.derivation.inputs.end(); ++i)
|
|
||||||
{
|
|
||||||
workList.insert(*i);
|
|
||||||
cout << makeEdge(*i, path);
|
|
||||||
}
|
|
||||||
|
|
||||||
label = "derivation";
|
|
||||||
colour = "#00ff00";
|
|
||||||
for (StringPairs::iterator i = ne.derivation.env.begin();
|
|
||||||
i != ne.derivation.env.end(); ++i)
|
|
||||||
if (i->first == "name") label = i->second;
|
|
||||||
}
|
|
||||||
|
|
||||||
else if (ne.type == StoreExpr::neClosure) {
|
|
||||||
label = "<closure>";
|
|
||||||
colour = "#00ffff";
|
|
||||||
printClosure(path, ne);
|
|
||||||
}
|
|
||||||
|
|
||||||
else abort();
|
|
||||||
|
|
||||||
cout << makeNode(path, label, colour);
|
|
||||||
#endif
|
|
||||||
}
|
}
|
||||||
|
|
||||||
cout << "}\n";
|
cout << "}\n";
|
||||||
|
|
Loading…
Reference in a new issue