2020-03-30 17:04:18 +03:00
|
|
|
|
#include "primops.hh"
|
|
|
|
|
#include "eval-inline.hh"
|
2023-07-31 16:19:19 +03:00
|
|
|
|
#include "eval-settings.hh"
|
2020-03-30 17:04:18 +03:00
|
|
|
|
#include "store-api.hh"
|
|
|
|
|
#include "fetchers.hh"
|
2020-04-08 15:12:22 +03:00
|
|
|
|
#include "filetransfer.hh"
|
2020-04-07 15:29:45 +03:00
|
|
|
|
#include "registry.hh"
|
2023-02-07 17:45:01 +02:00
|
|
|
|
#include "url.hh"
|
2020-03-30 17:04:18 +03:00
|
|
|
|
|
|
|
|
|
#include <ctime>
|
|
|
|
|
#include <iomanip>
|
2021-07-02 20:20:07 +03:00
|
|
|
|
#include <regex>
|
2020-03-30 17:04:18 +03:00
|
|
|
|
|
|
|
|
|
namespace nix {
|
|
|
|
|
|
|
|
|
|
void emitTreeAttrs(
|
|
|
|
|
EvalState & state,
|
|
|
|
|
const fetchers::Tree & tree,
|
Remove TreeInfo
The attributes previously stored in TreeInfo (narHash, revCount,
lastModified) are now stored in Input. This makes it less arbitrary
what attributes are stored where.
As a result, the lock file format has changed. An entry like
"info": {
"lastModified": 1585405475,
"narHash": "sha256-bESW0n4KgPmZ0luxvwJ+UyATrC6iIltVCsGdLiphVeE="
},
"locked": {
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "b88ff468e9850410070d4e0ccd68c7011f15b2be",
"type": "github"
},
is now stored as
"locked": {
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "b88ff468e9850410070d4e0ccd68c7011f15b2be",
"type": "github",
"lastModified": 1585405475,
"narHash": "sha256-bESW0n4KgPmZ0luxvwJ+UyATrC6iIltVCsGdLiphVeE="
},
The 'Input' class is now a dumb set of attributes. All the fetcher
implementations subclass InputScheme, not Input. This simplifies the
API.
Also, fix substitution of flake inputs. This was broken since lazy
flake fetching started using fetchTree internally.
2020-05-30 01:44:11 +03:00
|
|
|
|
const fetchers::Input & input,
|
2020-07-28 23:46:39 +03:00
|
|
|
|
Value & v,
|
2021-09-15 19:31:42 +03:00
|
|
|
|
bool emptyRevFallback,
|
|
|
|
|
bool forceDirty)
|
2020-03-30 17:04:18 +03:00
|
|
|
|
{
|
2022-02-24 19:09:00 +02:00
|
|
|
|
assert(input.isLocked());
|
Remove TreeInfo
The attributes previously stored in TreeInfo (narHash, revCount,
lastModified) are now stored in Input. This makes it less arbitrary
what attributes are stored where.
As a result, the lock file format has changed. An entry like
"info": {
"lastModified": 1585405475,
"narHash": "sha256-bESW0n4KgPmZ0luxvwJ+UyATrC6iIltVCsGdLiphVeE="
},
"locked": {
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "b88ff468e9850410070d4e0ccd68c7011f15b2be",
"type": "github"
},
is now stored as
"locked": {
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "b88ff468e9850410070d4e0ccd68c7011f15b2be",
"type": "github",
"lastModified": 1585405475,
"narHash": "sha256-bESW0n4KgPmZ0luxvwJ+UyATrC6iIltVCsGdLiphVeE="
},
The 'Input' class is now a dumb set of attributes. All the fetcher
implementations subclass InputScheme, not Input. This simplifies the
API.
Also, fix substitution of flake inputs. This was broken since lazy
flake fetching started using fetchTree internally.
2020-05-30 01:44:11 +03:00
|
|
|
|
|
2021-10-14 15:44:45 +03:00
|
|
|
|
auto attrs = state.buildBindings(10);
|
2020-03-30 17:04:18 +03:00
|
|
|
|
|
Use `std::set<StringContextElem>` not `PathSet` for string contexts
Motivation
`PathSet` is not correct because string contexts have other forms
(`Built` and `DrvDeep`) that are not rendered as plain store paths.
Instead of wrongly using `PathSet`, or "stringly typed" using
`StringSet`, use `std::std<StringContextElem>`.
-----
In support of this change, `NixStringContext` is now defined as
`std::std<StringContextElem>` not `std:vector<StringContextElem>`. The
old definition was just used by a `getContext` method which was only
used by the eval cache. It can be deleted altogether since the types are
now unified and the preexisting `copyContext` function already suffices.
Summarizing the previous paragraph:
Old:
- `value/context.hh`: `NixStringContext = std::vector<StringContextElem>`
- `value.hh`: `NixStringContext Value::getContext(...)`
- `value.hh`: `copyContext(...)`
New:
- `value/context.hh`: `NixStringContext = std::set<StringContextElem>`
- `value.hh`: `copyContext(...)`
----
The string representation of string context elements no longer contains
the store dir. The diff of `src/libexpr/tests/value/context.cc` should
make clear what the new representation is, so we recommend reviewing
that file first. This was done for two reasons:
Less API churn:
`Value::mkString` and friends did not take a `Store` before. But if
`NixStringContextElem::{parse, to_string}` *do* take a store (as they
did before), then we cannot have the `Value` functions use them (in
order to work with the fully-structured `NixStringContext`) without
adding that argument.
That would have been a lot of churn of threading the store, and this
diff is already large enough, so the easier and less invasive thing to
do was simply make the element `parse` and `to_string` functions not
take the `Store` reference, and the easiest way to do that was to simply
drop the store dir.
Space usage:
Dropping the `/nix/store/` (or similar) from the internal representation
will safe space in the heap of the Nix programming being interpreted. If
the heap contains many strings with non-trivial contexts, the saving
could add up to something significant.
----
The eval cache version is bumped.
The eval cache serialization uses `NixStringContextElem::{parse,
to_string}`, and since those functions are changed per the above, that
means the on-disk representation is also changed.
This is simply done by changing the name of the used for the eval cache
from `eval-cache-v4` to eval-cache-v5`.
----
To avoid some duplication `EvalCache::mkPathString` is added to abstract
over the simple case of turning a store path to a string with just that
string in the context.
Context
This PR picks up where #7543 left off. That one introduced the fully
structured `NixStringContextElem` data type, but kept `PathSet context`
as an awkward middle ground between internal `char[][]` interpreter heap
string contexts and `NixStringContext` fully parsed string contexts.
The infelicity of `PathSet context` was specifically called out during
Nix team group review, but it was agreeing that fixing it could be left
as future work. This is that future work.
A possible follow-up step would be to get rid of the `char[][]`
evaluator heap representation, too, but it is not yet clear how to do
that. To use `NixStringContextElem` there we would need to get the STL
containers to GC pointers in the GC build, and I am not sure how to do
that.
----
PR #7543 effectively is writing the inverse of a `mkPathString`,
`mkOutputString`, and one more such function for the `DrvDeep` case. I
would like that PR to have property tests ensuring it is actually the
inverse as expected.
This PR sets things up nicely so that reworking that PR to be in that
more elegant and better tested way is possible.
Co-authored-by: Théophane Hufschmitt <7226587+thufschmitt@users.noreply.github.com>
2023-01-29 03:31:10 +02:00
|
|
|
|
state.mkStorePathString(tree.storePath, attrs.alloc(state.sOutPath));
|
2020-03-30 17:04:18 +03:00
|
|
|
|
|
Remove TreeInfo
The attributes previously stored in TreeInfo (narHash, revCount,
lastModified) are now stored in Input. This makes it less arbitrary
what attributes are stored where.
As a result, the lock file format has changed. An entry like
"info": {
"lastModified": 1585405475,
"narHash": "sha256-bESW0n4KgPmZ0luxvwJ+UyATrC6iIltVCsGdLiphVeE="
},
"locked": {
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "b88ff468e9850410070d4e0ccd68c7011f15b2be",
"type": "github"
},
is now stored as
"locked": {
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "b88ff468e9850410070d4e0ccd68c7011f15b2be",
"type": "github",
"lastModified": 1585405475,
"narHash": "sha256-bESW0n4KgPmZ0luxvwJ+UyATrC6iIltVCsGdLiphVeE="
},
The 'Input' class is now a dumb set of attributes. All the fetcher
implementations subclass InputScheme, not Input. This simplifies the
API.
Also, fix substitution of flake inputs. This was broken since lazy
flake fetching started using fetchTree internally.
2020-05-30 01:44:11 +03:00
|
|
|
|
// FIXME: support arbitrary input attributes.
|
|
|
|
|
|
|
|
|
|
auto narHash = input.getNarHash();
|
|
|
|
|
assert(narHash);
|
2022-01-04 18:39:16 +02:00
|
|
|
|
attrs.alloc("narHash").mkString(narHash->to_string(SRI, true));
|
2020-03-30 17:04:18 +03:00
|
|
|
|
|
2020-04-29 23:39:58 +03:00
|
|
|
|
if (input.getType() == "git")
|
2022-01-04 18:39:16 +02:00
|
|
|
|
attrs.alloc("submodules").mkBool(
|
2021-09-22 18:25:25 +03:00
|
|
|
|
fetchers::maybeGetBoolAttr(input.attrs, "submodules").value_or(false));
|
2020-04-29 23:39:58 +03:00
|
|
|
|
|
2021-09-15 19:31:42 +03:00
|
|
|
|
if (!forceDirty) {
|
|
|
|
|
|
|
|
|
|
if (auto rev = input.getRev()) {
|
2022-01-04 18:39:16 +02:00
|
|
|
|
attrs.alloc("rev").mkString(rev->gitRev());
|
|
|
|
|
attrs.alloc("shortRev").mkString(rev->gitShortRev());
|
2021-09-15 19:31:42 +03:00
|
|
|
|
} else if (emptyRevFallback) {
|
|
|
|
|
// Backwards compat for `builtins.fetchGit`: dirty repos return an empty sha1 as rev
|
|
|
|
|
auto emptyHash = Hash(htSHA1);
|
2022-01-04 18:39:16 +02:00
|
|
|
|
attrs.alloc("rev").mkString(emptyHash.gitRev());
|
|
|
|
|
attrs.alloc("shortRev").mkString(emptyHash.gitShortRev());
|
2021-09-15 19:31:42 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (auto revCount = input.getRevCount())
|
2022-01-04 18:39:16 +02:00
|
|
|
|
attrs.alloc("revCount").mkInt(*revCount);
|
2021-09-15 19:31:42 +03:00
|
|
|
|
else if (emptyRevFallback)
|
2022-01-04 18:39:16 +02:00
|
|
|
|
attrs.alloc("revCount").mkInt(0);
|
2021-09-15 19:31:42 +03:00
|
|
|
|
|
|
|
|
|
}
|
2020-03-30 17:04:18 +03:00
|
|
|
|
|
2021-10-14 15:44:45 +03:00
|
|
|
|
if (auto dirtyRev = fetchers::maybeGetStrAttr(input.attrs, "dirtyRev")) {
|
|
|
|
|
attrs.alloc("dirtyRev").mkString(*dirtyRev);
|
|
|
|
|
attrs.alloc("dirtyShortRev").mkString(*fetchers::maybeGetStrAttr(input.attrs, "dirtyShortRev"));
|
|
|
|
|
}
|
|
|
|
|
|
Remove TreeInfo
The attributes previously stored in TreeInfo (narHash, revCount,
lastModified) are now stored in Input. This makes it less arbitrary
what attributes are stored where.
As a result, the lock file format has changed. An entry like
"info": {
"lastModified": 1585405475,
"narHash": "sha256-bESW0n4KgPmZ0luxvwJ+UyATrC6iIltVCsGdLiphVeE="
},
"locked": {
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "b88ff468e9850410070d4e0ccd68c7011f15b2be",
"type": "github"
},
is now stored as
"locked": {
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "b88ff468e9850410070d4e0ccd68c7011f15b2be",
"type": "github",
"lastModified": 1585405475,
"narHash": "sha256-bESW0n4KgPmZ0luxvwJ+UyATrC6iIltVCsGdLiphVeE="
},
The 'Input' class is now a dumb set of attributes. All the fetcher
implementations subclass InputScheme, not Input. This simplifies the
API.
Also, fix substitution of flake inputs. This was broken since lazy
flake fetching started using fetchTree internally.
2020-05-30 01:44:11 +03:00
|
|
|
|
if (auto lastModified = input.getLastModified()) {
|
2022-01-04 18:39:16 +02:00
|
|
|
|
attrs.alloc("lastModified").mkInt(*lastModified);
|
|
|
|
|
attrs.alloc("lastModifiedDate").mkString(
|
Remove TreeInfo
The attributes previously stored in TreeInfo (narHash, revCount,
lastModified) are now stored in Input. This makes it less arbitrary
what attributes are stored where.
As a result, the lock file format has changed. An entry like
"info": {
"lastModified": 1585405475,
"narHash": "sha256-bESW0n4KgPmZ0luxvwJ+UyATrC6iIltVCsGdLiphVeE="
},
"locked": {
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "b88ff468e9850410070d4e0ccd68c7011f15b2be",
"type": "github"
},
is now stored as
"locked": {
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "b88ff468e9850410070d4e0ccd68c7011f15b2be",
"type": "github",
"lastModified": 1585405475,
"narHash": "sha256-bESW0n4KgPmZ0luxvwJ+UyATrC6iIltVCsGdLiphVeE="
},
The 'Input' class is now a dumb set of attributes. All the fetcher
implementations subclass InputScheme, not Input. This simplifies the
API.
Also, fix substitution of flake inputs. This was broken since lazy
flake fetching started using fetchTree internally.
2020-05-30 01:44:11 +03:00
|
|
|
|
fmt("%s", std::put_time(std::gmtime(&*lastModified), "%Y%m%d%H%M%S")));
|
2020-04-02 19:39:41 +03:00
|
|
|
|
}
|
2020-03-30 17:04:18 +03:00
|
|
|
|
|
2022-01-04 18:39:16 +02:00
|
|
|
|
v.mkAttrs(attrs);
|
2020-03-30 17:04:18 +03:00
|
|
|
|
}
|
|
|
|
|
|
2021-07-08 15:57:48 +03:00
|
|
|
|
struct FetchTreeParams {
|
|
|
|
|
bool emptyRevFallback = false;
|
|
|
|
|
bool allowNameArgument = false;
|
2023-09-28 17:52:28 +03:00
|
|
|
|
bool isFetchGit = false;
|
2021-07-08 15:57:48 +03:00
|
|
|
|
};
|
|
|
|
|
|
2020-04-29 23:39:58 +03:00
|
|
|
|
static void fetchTree(
|
2021-10-06 18:29:47 +03:00
|
|
|
|
EvalState & state,
|
2022-03-04 20:31:59 +02:00
|
|
|
|
const PosIdx pos,
|
2021-10-06 18:29:47 +03:00
|
|
|
|
Value * * args,
|
|
|
|
|
Value & v,
|
2021-07-08 15:57:48 +03:00
|
|
|
|
const FetchTreeParams & params = FetchTreeParams{}
|
2020-04-29 23:39:58 +03:00
|
|
|
|
) {
|
Remove TreeInfo
The attributes previously stored in TreeInfo (narHash, revCount,
lastModified) are now stored in Input. This makes it less arbitrary
what attributes are stored where.
As a result, the lock file format has changed. An entry like
"info": {
"lastModified": 1585405475,
"narHash": "sha256-bESW0n4KgPmZ0luxvwJ+UyATrC6iIltVCsGdLiphVeE="
},
"locked": {
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "b88ff468e9850410070d4e0ccd68c7011f15b2be",
"type": "github"
},
is now stored as
"locked": {
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "b88ff468e9850410070d4e0ccd68c7011f15b2be",
"type": "github",
"lastModified": 1585405475,
"narHash": "sha256-bESW0n4KgPmZ0luxvwJ+UyATrC6iIltVCsGdLiphVeE="
},
The 'Input' class is now a dumb set of attributes. All the fetcher
implementations subclass InputScheme, not Input. This simplifies the
API.
Also, fix substitution of flake inputs. This was broken since lazy
flake fetching started using fetchTree internally.
2020-05-30 01:44:11 +03:00
|
|
|
|
fetchers::Input input;
|
Use `std::set<StringContextElem>` not `PathSet` for string contexts
Motivation
`PathSet` is not correct because string contexts have other forms
(`Built` and `DrvDeep`) that are not rendered as plain store paths.
Instead of wrongly using `PathSet`, or "stringly typed" using
`StringSet`, use `std::std<StringContextElem>`.
-----
In support of this change, `NixStringContext` is now defined as
`std::std<StringContextElem>` not `std:vector<StringContextElem>`. The
old definition was just used by a `getContext` method which was only
used by the eval cache. It can be deleted altogether since the types are
now unified and the preexisting `copyContext` function already suffices.
Summarizing the previous paragraph:
Old:
- `value/context.hh`: `NixStringContext = std::vector<StringContextElem>`
- `value.hh`: `NixStringContext Value::getContext(...)`
- `value.hh`: `copyContext(...)`
New:
- `value/context.hh`: `NixStringContext = std::set<StringContextElem>`
- `value.hh`: `copyContext(...)`
----
The string representation of string context elements no longer contains
the store dir. The diff of `src/libexpr/tests/value/context.cc` should
make clear what the new representation is, so we recommend reviewing
that file first. This was done for two reasons:
Less API churn:
`Value::mkString` and friends did not take a `Store` before. But if
`NixStringContextElem::{parse, to_string}` *do* take a store (as they
did before), then we cannot have the `Value` functions use them (in
order to work with the fully-structured `NixStringContext`) without
adding that argument.
That would have been a lot of churn of threading the store, and this
diff is already large enough, so the easier and less invasive thing to
do was simply make the element `parse` and `to_string` functions not
take the `Store` reference, and the easiest way to do that was to simply
drop the store dir.
Space usage:
Dropping the `/nix/store/` (or similar) from the internal representation
will safe space in the heap of the Nix programming being interpreted. If
the heap contains many strings with non-trivial contexts, the saving
could add up to something significant.
----
The eval cache version is bumped.
The eval cache serialization uses `NixStringContextElem::{parse,
to_string}`, and since those functions are changed per the above, that
means the on-disk representation is also changed.
This is simply done by changing the name of the used for the eval cache
from `eval-cache-v4` to eval-cache-v5`.
----
To avoid some duplication `EvalCache::mkPathString` is added to abstract
over the simple case of turning a store path to a string with just that
string in the context.
Context
This PR picks up where #7543 left off. That one introduced the fully
structured `NixStringContextElem` data type, but kept `PathSet context`
as an awkward middle ground between internal `char[][]` interpreter heap
string contexts and `NixStringContext` fully parsed string contexts.
The infelicity of `PathSet context` was specifically called out during
Nix team group review, but it was agreeing that fixing it could be left
as future work. This is that future work.
A possible follow-up step would be to get rid of the `char[][]`
evaluator heap representation, too, but it is not yet clear how to do
that. To use `NixStringContextElem` there we would need to get the STL
containers to GC pointers in the GC build, and I am not sure how to do
that.
----
PR #7543 effectively is writing the inverse of a `mkPathString`,
`mkOutputString`, and one more such function for the `DrvDeep` case. I
would like that PR to have property tests ensuring it is actually the
inverse as expected.
This PR sets things up nicely so that reworking that PR to be in that
more elegant and better tested way is possible.
Co-authored-by: Théophane Hufschmitt <7226587+thufschmitt@users.noreply.github.com>
2023-01-29 03:31:10 +02:00
|
|
|
|
NixStringContext context;
|
2023-09-28 17:52:28 +03:00
|
|
|
|
std::optional<std::string> type;
|
|
|
|
|
if (params.isFetchGit) type = "git";
|
2020-03-30 17:04:18 +03:00
|
|
|
|
|
2021-10-16 02:56:17 +03:00
|
|
|
|
state.forceValue(*args[0], pos);
|
2020-03-30 17:04:18 +03:00
|
|
|
|
|
2020-12-17 15:45:45 +02:00
|
|
|
|
if (args[0]->type() == nAttrs) {
|
2022-04-28 13:54:14 +03:00
|
|
|
|
state.forceAttrs(*args[0], pos, "while evaluating the argument passed to builtins.fetchTree");
|
2020-03-30 17:04:18 +03:00
|
|
|
|
|
|
|
|
|
fetchers::Attrs attrs;
|
|
|
|
|
|
2021-10-06 18:39:02 +03:00
|
|
|
|
if (auto aType = args[0]->attrs->get(state.sType)) {
|
|
|
|
|
if (type)
|
2022-05-25 13:32:22 +03:00
|
|
|
|
state.debugThrowLastTrace(EvalError({
|
2021-10-06 18:39:02 +03:00
|
|
|
|
.msg = hintfmt("unexpected attribute 'type'"),
|
2022-03-04 20:31:59 +02:00
|
|
|
|
.errPos = state.positions[pos]
|
2022-05-25 13:32:22 +03:00
|
|
|
|
}));
|
2022-04-29 01:12:25 +03:00
|
|
|
|
type = state.forceStringNoCtx(*aType->value, aType->pos, "while evaluating the `type` attribute passed to builtins.fetchTree");
|
2021-10-06 18:39:02 +03:00
|
|
|
|
} else if (!type)
|
2022-05-25 13:32:22 +03:00
|
|
|
|
state.debugThrowLastTrace(EvalError({
|
2021-10-06 18:39:02 +03:00
|
|
|
|
.msg = hintfmt("attribute 'type' is missing in call to 'fetchTree'"),
|
2022-03-04 20:31:59 +02:00
|
|
|
|
.errPos = state.positions[pos]
|
2022-05-25 13:32:22 +03:00
|
|
|
|
}));
|
2021-10-06 18:39:02 +03:00
|
|
|
|
|
|
|
|
|
attrs.emplace("type", type.value());
|
|
|
|
|
|
2020-03-30 17:04:18 +03:00
|
|
|
|
for (auto & attr : *args[0]->attrs) {
|
2021-10-06 18:39:02 +03:00
|
|
|
|
if (attr.name == state.sType) continue;
|
2022-03-04 20:31:59 +02:00
|
|
|
|
state.forceValue(*attr.value, attr.pos);
|
2021-10-06 18:29:47 +03:00
|
|
|
|
if (attr.value->type() == nPath || attr.value->type() == nString) {
|
2022-11-29 01:25:36 +02:00
|
|
|
|
auto s = state.coerceToString(attr.pos, *attr.value, context, "", false, false).toOwned();
|
2022-03-05 15:40:24 +02:00
|
|
|
|
attrs.emplace(state.symbols[attr.name],
|
2023-09-28 17:52:28 +03:00
|
|
|
|
params.isFetchGit && state.symbols[attr.name] == "url"
|
|
|
|
|
? fixGitURL(s)
|
2021-10-06 18:29:47 +03:00
|
|
|
|
: s);
|
|
|
|
|
}
|
2020-12-17 15:45:45 +02:00
|
|
|
|
else if (attr.value->type() == nBool)
|
2022-03-05 15:40:24 +02:00
|
|
|
|
attrs.emplace(state.symbols[attr.name], Explicit<bool>{attr.value->boolean});
|
2020-12-29 03:40:04 +02:00
|
|
|
|
else if (attr.value->type() == nInt)
|
2022-03-05 15:40:24 +02:00
|
|
|
|
attrs.emplace(state.symbols[attr.name], uint64_t(attr.value->integer));
|
2020-03-30 17:04:18 +03:00
|
|
|
|
else
|
2022-05-25 13:32:22 +03:00
|
|
|
|
state.debugThrowLastTrace(TypeError("fetchTree argument '%s' is %s while a string, Boolean or integer is expected",
|
|
|
|
|
state.symbols[attr.name], showType(*attr.value)));
|
2020-03-30 17:04:18 +03:00
|
|
|
|
}
|
|
|
|
|
|
2021-07-08 15:57:48 +03:00
|
|
|
|
if (!params.allowNameArgument)
|
|
|
|
|
if (auto nameIter = attrs.find("name"); nameIter != attrs.end())
|
2022-05-25 13:32:22 +03:00
|
|
|
|
state.debugThrowLastTrace(EvalError({
|
2021-07-08 15:57:48 +03:00
|
|
|
|
.msg = hintfmt("attribute 'name' isn’t supported in call to 'fetchTree'"),
|
2022-03-04 20:31:59 +02:00
|
|
|
|
.errPos = state.positions[pos]
|
2022-05-25 13:32:22 +03:00
|
|
|
|
}));
|
2021-07-08 14:29:58 +03:00
|
|
|
|
|
Remove TreeInfo
The attributes previously stored in TreeInfo (narHash, revCount,
lastModified) are now stored in Input. This makes it less arbitrary
what attributes are stored where.
As a result, the lock file format has changed. An entry like
"info": {
"lastModified": 1585405475,
"narHash": "sha256-bESW0n4KgPmZ0luxvwJ+UyATrC6iIltVCsGdLiphVeE="
},
"locked": {
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "b88ff468e9850410070d4e0ccd68c7011f15b2be",
"type": "github"
},
is now stored as
"locked": {
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "b88ff468e9850410070d4e0ccd68c7011f15b2be",
"type": "github",
"lastModified": 1585405475,
"narHash": "sha256-bESW0n4KgPmZ0luxvwJ+UyATrC6iIltVCsGdLiphVeE="
},
The 'Input' class is now a dumb set of attributes. All the fetcher
implementations subclass InputScheme, not Input. This simplifies the
API.
Also, fix substitution of flake inputs. This was broken since lazy
flake fetching started using fetchTree internally.
2020-05-30 01:44:11 +03:00
|
|
|
|
input = fetchers::Input::fromAttrs(std::move(attrs));
|
2020-04-29 23:39:58 +03:00
|
|
|
|
} else {
|
2022-11-29 01:25:36 +02:00
|
|
|
|
auto url = state.coerceToString(pos, *args[0], context,
|
|
|
|
|
"while evaluating the first argument passed to the fetcher",
|
|
|
|
|
false, false).toOwned();
|
2020-04-29 23:39:58 +03:00
|
|
|
|
|
2023-09-28 17:52:28 +03:00
|
|
|
|
if (params.isFetchGit) {
|
2020-04-29 23:39:58 +03:00
|
|
|
|
fetchers::Attrs attrs;
|
|
|
|
|
attrs.emplace("type", "git");
|
2023-09-28 17:52:28 +03:00
|
|
|
|
attrs.emplace("url", fixGitURL(url));
|
2020-04-29 23:39:58 +03:00
|
|
|
|
input = fetchers::Input::fromAttrs(std::move(attrs));
|
|
|
|
|
} else {
|
2023-10-17 15:52:34 +03:00
|
|
|
|
if (!experimentalFeatureSettings.isEnabled(Xp::Flakes))
|
|
|
|
|
state.debugThrowLastTrace(EvalError({
|
|
|
|
|
.msg = hintfmt("passing a string argument to 'fetchTree' requires the 'flakes' experimental feature"),
|
|
|
|
|
.errPos = state.positions[pos]
|
|
|
|
|
}));
|
2023-09-28 17:52:28 +03:00
|
|
|
|
input = fetchers::Input::fromURL(url);
|
2020-04-29 23:39:58 +03:00
|
|
|
|
}
|
|
|
|
|
}
|
2020-02-12 00:53:46 +02:00
|
|
|
|
|
2023-09-29 11:48:27 +03:00
|
|
|
|
if (!evalSettings.pureEval && !input.isDirect() && experimentalFeatureSettings.isEnabled(Xp::Flakes))
|
2020-02-20 23:14:44 +02:00
|
|
|
|
input = lookupInRegistries(state.store, input).first;
|
2020-03-30 17:04:18 +03:00
|
|
|
|
|
2022-02-24 19:09:00 +02:00
|
|
|
|
if (evalSettings.pureEval && !input.isLocked())
|
2022-05-25 13:32:22 +03:00
|
|
|
|
state.debugThrowLastTrace(EvalError("in pure evaluation mode, 'fetchTree' requires a locked input, at %s", state.positions[pos]));
|
2020-03-30 17:04:18 +03:00
|
|
|
|
|
2023-09-28 17:52:28 +03:00
|
|
|
|
state.checkURI(input.toURLString());
|
|
|
|
|
|
Remove TreeInfo
The attributes previously stored in TreeInfo (narHash, revCount,
lastModified) are now stored in Input. This makes it less arbitrary
what attributes are stored where.
As a result, the lock file format has changed. An entry like
"info": {
"lastModified": 1585405475,
"narHash": "sha256-bESW0n4KgPmZ0luxvwJ+UyATrC6iIltVCsGdLiphVeE="
},
"locked": {
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "b88ff468e9850410070d4e0ccd68c7011f15b2be",
"type": "github"
},
is now stored as
"locked": {
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "b88ff468e9850410070d4e0ccd68c7011f15b2be",
"type": "github",
"lastModified": 1585405475,
"narHash": "sha256-bESW0n4KgPmZ0luxvwJ+UyATrC6iIltVCsGdLiphVeE="
},
The 'Input' class is now a dumb set of attributes. All the fetcher
implementations subclass InputScheme, not Input. This simplifies the
API.
Also, fix substitution of flake inputs. This was broken since lazy
flake fetching started using fetchTree internally.
2020-05-30 01:44:11 +03:00
|
|
|
|
auto [tree, input2] = input.fetch(state.store);
|
2020-03-30 17:04:18 +03:00
|
|
|
|
|
2021-10-07 15:07:51 +03:00
|
|
|
|
state.allowPath(tree.storePath);
|
2020-03-30 17:04:18 +03:00
|
|
|
|
|
2021-09-15 19:31:42 +03:00
|
|
|
|
emitTreeAttrs(state, tree, input2, v, params.emptyRevFallback, false);
|
2020-03-30 17:04:18 +03:00
|
|
|
|
}
|
|
|
|
|
|
2022-03-04 20:31:59 +02:00
|
|
|
|
static void prim_fetchTree(EvalState & state, const PosIdx pos, Value * * args, Value & v)
|
2020-04-29 23:39:58 +03:00
|
|
|
|
{
|
2023-09-28 17:52:28 +03:00
|
|
|
|
fetchTree(state, pos, args, v, { });
|
2020-04-29 23:39:58 +03:00
|
|
|
|
}
|
|
|
|
|
|
2023-06-11 17:57:50 +03:00
|
|
|
|
static RegisterPrimOp primop_fetchTree({
|
|
|
|
|
.name = "fetchTree",
|
2023-06-11 22:36:56 +03:00
|
|
|
|
.args = {"input"},
|
|
|
|
|
.doc = R"(
|
|
|
|
|
Fetch a source tree or a plain file using one of the supported backends.
|
2023-09-28 18:08:26 +03:00
|
|
|
|
*input* must be a [flake reference](@docroot@/command-ref/new-cli/nix3-flake.md#flake-references), either in attribute set representation or in the URL-like syntax.
|
|
|
|
|
The input should be "locked", that is, it should contain a commit hash or content hash unless impure evaluation (`--impure`) is enabled.
|
2023-06-11 22:36:56 +03:00
|
|
|
|
|
2023-10-17 15:52:34 +03:00
|
|
|
|
> **Note**
|
|
|
|
|
>
|
|
|
|
|
> The URL-like syntax requires the [`flakes` experimental feature](@docroot@/contributing/experimental-features.md#xp-feature-flakes) to be enabled.
|
|
|
|
|
|
2023-06-11 22:36:56 +03:00
|
|
|
|
Here are some examples of how to use `fetchTree`:
|
|
|
|
|
|
2023-09-28 18:08:26 +03:00
|
|
|
|
- Fetch a GitHub repository using the attribute set representation:
|
2023-06-11 22:36:56 +03:00
|
|
|
|
|
|
|
|
|
```nix
|
|
|
|
|
builtins.fetchTree {
|
|
|
|
|
type = "github";
|
|
|
|
|
owner = "NixOS";
|
|
|
|
|
repo = "nixpkgs";
|
|
|
|
|
rev = "ae2e6b3958682513d28f7d633734571fb18285dd";
|
|
|
|
|
}
|
|
|
|
|
```
|
|
|
|
|
|
2023-09-28 18:08:26 +03:00
|
|
|
|
This evaluates to the following attribute set:
|
2023-06-11 22:36:56 +03:00
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
{
|
|
|
|
|
lastModified = 1686503798;
|
|
|
|
|
lastModifiedDate = "20230611171638";
|
|
|
|
|
narHash = "sha256-rA9RqKP9OlBrgGCPvfd5HVAXDOy8k2SmPtB/ijShNXc=";
|
|
|
|
|
outPath = "/nix/store/l5m6qlvfs9sdw14ja3qbzpglcjlb6j1x-source";
|
|
|
|
|
rev = "ae2e6b3958682513d28f7d633734571fb18285dd";
|
|
|
|
|
shortRev = "ae2e6b3";
|
|
|
|
|
}
|
|
|
|
|
```
|
|
|
|
|
|
2023-09-28 18:08:26 +03:00
|
|
|
|
- Fetch the same GitHub repository using the URL-like syntax:
|
2023-06-11 22:36:56 +03:00
|
|
|
|
|
2023-09-28 18:08:26 +03:00
|
|
|
|
```
|
|
|
|
|
builtins.fetchTree "github:NixOS/nixpkgs/ae2e6b3958682513d28f7d633734571fb18285dd"
|
|
|
|
|
```
|
2023-06-11 22:36:56 +03:00
|
|
|
|
)",
|
2023-09-29 03:51:25 +03:00
|
|
|
|
.fun = prim_fetchTree,
|
2023-06-11 17:57:50 +03:00
|
|
|
|
});
|
2020-03-30 17:04:18 +03:00
|
|
|
|
|
2022-03-04 20:31:59 +02:00
|
|
|
|
static void fetch(EvalState & state, const PosIdx pos, Value * * args, Value & v,
|
2022-02-25 17:00:00 +02:00
|
|
|
|
const std::string & who, bool unpack, std::string name)
|
2020-03-30 17:04:18 +03:00
|
|
|
|
{
|
|
|
|
|
std::optional<std::string> url;
|
|
|
|
|
std::optional<Hash> expectedHash;
|
|
|
|
|
|
2021-10-16 05:03:01 +03:00
|
|
|
|
state.forceValue(*args[0], pos);
|
2020-03-30 17:04:18 +03:00
|
|
|
|
|
2020-12-17 15:45:45 +02:00
|
|
|
|
if (args[0]->type() == nAttrs) {
|
2020-03-30 17:04:18 +03:00
|
|
|
|
|
|
|
|
|
for (auto & attr : *args[0]->attrs) {
|
2022-03-05 15:40:24 +02:00
|
|
|
|
std::string_view n(state.symbols[attr.name]);
|
2020-03-30 17:04:18 +03:00
|
|
|
|
if (n == "url")
|
2022-04-29 01:12:25 +03:00
|
|
|
|
url = state.forceStringNoCtx(*attr.value, attr.pos, "while evaluating the url we should fetch");
|
2020-03-30 17:04:18 +03:00
|
|
|
|
else if (n == "sha256")
|
2022-04-29 01:12:25 +03:00
|
|
|
|
expectedHash = newHashAllowEmpty(state.forceStringNoCtx(*attr.value, attr.pos, "while evaluating the sha256 of the content we should fetch"), htSHA256);
|
2020-03-30 17:04:18 +03:00
|
|
|
|
else if (n == "name")
|
2022-04-29 01:12:25 +03:00
|
|
|
|
name = state.forceStringNoCtx(*attr.value, attr.pos, "while evaluating the name of the content we should fetch");
|
2020-03-30 17:04:18 +03:00
|
|
|
|
else
|
2022-05-25 13:32:22 +03:00
|
|
|
|
state.debugThrowLastTrace(EvalError({
|
2022-03-05 15:40:24 +02:00
|
|
|
|
.msg = hintfmt("unsupported argument '%s' to '%s'", n, who),
|
2022-03-04 20:31:59 +02:00
|
|
|
|
.errPos = state.positions[attr.pos]
|
2022-05-25 13:32:22 +03:00
|
|
|
|
}));
|
2022-04-08 21:34:27 +03:00
|
|
|
|
}
|
2020-03-30 17:04:18 +03:00
|
|
|
|
|
|
|
|
|
if (!url)
|
2022-05-25 13:32:22 +03:00
|
|
|
|
state.debugThrowLastTrace(EvalError({
|
2021-01-21 01:27:36 +02:00
|
|
|
|
.msg = hintfmt("'url' argument required"),
|
2022-03-04 20:31:59 +02:00
|
|
|
|
.errPos = state.positions[pos]
|
2022-05-25 13:32:22 +03:00
|
|
|
|
}));
|
2020-03-30 17:04:18 +03:00
|
|
|
|
} else
|
2022-04-28 13:54:14 +03:00
|
|
|
|
url = state.forceStringNoCtx(*args[0], pos, "while evaluating the url we should fetch");
|
2020-03-30 17:04:18 +03:00
|
|
|
|
|
2023-01-18 13:56:36 +02:00
|
|
|
|
if (who == "fetchTarball")
|
|
|
|
|
url = evalSettings.resolvePseudoUrl(*url);
|
|
|
|
|
|
2020-03-30 17:04:18 +03:00
|
|
|
|
state.checkURI(*url);
|
|
|
|
|
|
|
|
|
|
if (name == "")
|
|
|
|
|
name = baseNameOf(*url);
|
|
|
|
|
|
|
|
|
|
if (evalSettings.pureEval && !expectedHash)
|
2022-05-25 13:32:22 +03:00
|
|
|
|
state.debugThrowLastTrace(EvalError("in pure evaluation mode, '%s' requires a 'sha256' argument", who));
|
2020-03-30 17:04:18 +03:00
|
|
|
|
|
2022-02-27 16:25:22 +02:00
|
|
|
|
// early exit if pinned and already in the store
|
|
|
|
|
if (expectedHash && expectedHash->type == htSHA256) {
|
2022-03-10 17:48:14 +02:00
|
|
|
|
auto expectedPath = state.store->makeFixedOutputPath(
|
|
|
|
|
name,
|
|
|
|
|
FixedOutputInfo {
|
2023-07-06 01:53:44 +03:00
|
|
|
|
.method = unpack ? FileIngestionMethod::Recursive : FileIngestionMethod::Flat,
|
|
|
|
|
.hash = *expectedHash,
|
2023-02-28 18:57:20 +02:00
|
|
|
|
.references = {}
|
2022-03-10 17:48:14 +02:00
|
|
|
|
});
|
2022-02-27 16:25:22 +02:00
|
|
|
|
|
2022-03-01 13:11:10 +02:00
|
|
|
|
if (state.store->isValidPath(expectedPath)) {
|
2022-02-27 16:59:34 +02:00
|
|
|
|
state.allowAndSetStorePathString(expectedPath, v);
|
2022-02-27 16:25:22 +02:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2022-03-01 13:11:10 +02:00
|
|
|
|
// TODO: fetching may fail, yet the path may be substitutable.
|
|
|
|
|
// https://github.com/NixOS/nix/issues/4313
|
2020-03-30 17:04:18 +03:00
|
|
|
|
auto storePath =
|
|
|
|
|
unpack
|
2023-06-07 15:26:30 +03:00
|
|
|
|
? fetchers::downloadTarball(state.store, *url, name, (bool) expectedHash).tree.storePath
|
2020-09-29 14:05:19 +03:00
|
|
|
|
: fetchers::downloadFile(state.store, *url, name, (bool) expectedHash).storePath;
|
2020-03-30 17:04:18 +03:00
|
|
|
|
|
|
|
|
|
if (expectedHash) {
|
|
|
|
|
auto hash = unpack
|
|
|
|
|
? state.store->queryPathInfo(storePath)->narHash
|
2021-10-07 15:07:51 +03:00
|
|
|
|
: hashFile(htSHA256, state.store->toRealPath(storePath));
|
2020-03-30 17:04:18 +03:00
|
|
|
|
if (hash != *expectedHash)
|
2022-05-25 13:32:22 +03:00
|
|
|
|
state.debugThrowLastTrace(EvalError((unsigned int) 102, "hash mismatch in file downloaded from '%s':\n specified: %s\n got: %s",
|
|
|
|
|
*url, expectedHash->to_string(Base32, true), hash.to_string(Base32, true)));
|
2020-03-30 17:04:18 +03:00
|
|
|
|
}
|
|
|
|
|
|
2022-02-27 16:59:34 +02:00
|
|
|
|
state.allowAndSetStorePathString(storePath, v);
|
2020-03-30 17:04:18 +03:00
|
|
|
|
}
|
|
|
|
|
|
2022-03-04 20:31:59 +02:00
|
|
|
|
static void prim_fetchurl(EvalState & state, const PosIdx pos, Value * * args, Value & v)
|
2020-03-30 17:04:18 +03:00
|
|
|
|
{
|
|
|
|
|
fetch(state, pos, args, v, "fetchurl", false, "");
|
|
|
|
|
}
|
|
|
|
|
|
2020-08-24 15:31:10 +03:00
|
|
|
|
static RegisterPrimOp primop_fetchurl({
|
|
|
|
|
.name = "__fetchurl",
|
|
|
|
|
.args = {"url"},
|
|
|
|
|
.doc = R"(
|
2023-05-17 15:59:47 +03:00
|
|
|
|
Download the specified URL and return the path of the downloaded file.
|
|
|
|
|
|
|
|
|
|
Not available in [restricted evaluation mode](@docroot@/command-ref/conf-file.md#conf-restrict-eval).
|
2020-08-24 15:31:10 +03:00
|
|
|
|
)",
|
|
|
|
|
.fun = prim_fetchurl,
|
|
|
|
|
});
|
|
|
|
|
|
2022-03-04 20:31:59 +02:00
|
|
|
|
static void prim_fetchTarball(EvalState & state, const PosIdx pos, Value * * args, Value & v)
|
2020-03-30 17:04:18 +03:00
|
|
|
|
{
|
|
|
|
|
fetch(state, pos, args, v, "fetchTarball", true, "source");
|
|
|
|
|
}
|
|
|
|
|
|
2020-08-24 15:31:10 +03:00
|
|
|
|
static RegisterPrimOp primop_fetchTarball({
|
|
|
|
|
.name = "fetchTarball",
|
|
|
|
|
.args = {"args"},
|
|
|
|
|
.doc = R"(
|
|
|
|
|
Download the specified URL, unpack it and return the path of the
|
|
|
|
|
unpacked tree. The file must be a tape archive (`.tar`) compressed
|
|
|
|
|
with `gzip`, `bzip2` or `xz`. The top-level path component of the
|
|
|
|
|
files in the tarball is removed, so it is best if the tarball
|
|
|
|
|
contains a single directory at top level. The typical use of the
|
|
|
|
|
function is to obtain external Nix expression dependencies, such as
|
|
|
|
|
a particular version of Nixpkgs, e.g.
|
|
|
|
|
|
|
|
|
|
```nix
|
|
|
|
|
with import (fetchTarball https://github.com/NixOS/nixpkgs/archive/nixos-14.12.tar.gz) {};
|
|
|
|
|
|
|
|
|
|
stdenv.mkDerivation { … }
|
|
|
|
|
```
|
|
|
|
|
|
2021-10-26 15:21:24 +03:00
|
|
|
|
The fetched tarball is cached for a certain amount of time (1
|
|
|
|
|
hour by default) in `~/.cache/nix/tarballs/`. You can change the
|
|
|
|
|
cache timeout either on the command line with `--tarball-ttl`
|
|
|
|
|
*number-of-seconds* or in the Nix configuration file by adding
|
|
|
|
|
the line `tarball-ttl = ` *number-of-seconds*.
|
2020-08-24 15:31:10 +03:00
|
|
|
|
|
2021-10-26 15:21:24 +03:00
|
|
|
|
Note that when obtaining the hash with `nix-prefetch-url` the
|
2020-08-24 15:31:10 +03:00
|
|
|
|
option `--unpack` is required.
|
|
|
|
|
|
|
|
|
|
This function can also verify the contents against a hash. In that
|
|
|
|
|
case, the function takes a set instead of a URL. The set requires
|
|
|
|
|
the attribute `url` and the attribute `sha256`, e.g.
|
|
|
|
|
|
|
|
|
|
```nix
|
|
|
|
|
with import (fetchTarball {
|
|
|
|
|
url = "https://github.com/NixOS/nixpkgs/archive/nixos-14.12.tar.gz";
|
|
|
|
|
sha256 = "1jppksrfvbk5ypiqdz4cddxdl8z6zyzdb2srq8fcffr327ld5jj2";
|
|
|
|
|
}) {};
|
|
|
|
|
|
|
|
|
|
stdenv.mkDerivation { … }
|
|
|
|
|
```
|
|
|
|
|
|
2023-05-17 15:59:47 +03:00
|
|
|
|
Not available in [restricted evaluation mode](@docroot@/command-ref/conf-file.md#conf-restrict-eval).
|
2020-08-24 15:31:10 +03:00
|
|
|
|
)",
|
|
|
|
|
.fun = prim_fetchTarball,
|
|
|
|
|
});
|
|
|
|
|
|
2022-03-04 20:31:59 +02:00
|
|
|
|
static void prim_fetchGit(EvalState & state, const PosIdx pos, Value * * args, Value & v)
|
2020-04-29 23:39:58 +03:00
|
|
|
|
{
|
2023-09-28 17:52:28 +03:00
|
|
|
|
fetchTree(state, pos, args, v,
|
|
|
|
|
FetchTreeParams {
|
|
|
|
|
.emptyRevFallback = true,
|
|
|
|
|
.allowNameArgument = true,
|
|
|
|
|
.isFetchGit = true
|
|
|
|
|
});
|
2020-04-29 23:39:58 +03:00
|
|
|
|
}
|
|
|
|
|
|
2020-08-24 15:31:10 +03:00
|
|
|
|
static RegisterPrimOp primop_fetchGit({
|
|
|
|
|
.name = "fetchGit",
|
|
|
|
|
.args = {"args"},
|
|
|
|
|
.doc = R"(
|
|
|
|
|
Fetch a path from git. *args* can be a URL, in which case the HEAD
|
|
|
|
|
of the repo at that URL is fetched. Otherwise, it can be an
|
|
|
|
|
attribute with the following attributes (all except `url` optional):
|
|
|
|
|
|
2023-03-05 05:44:11 +02:00
|
|
|
|
- `url`
|
2020-08-24 15:31:10 +03:00
|
|
|
|
|
2023-03-05 05:44:11 +02:00
|
|
|
|
The URL of the repo.
|
2020-08-24 15:31:10 +03:00
|
|
|
|
|
2023-03-05 05:44:11 +02:00
|
|
|
|
- `name` (default: *basename of the URL*)
|
2020-08-24 15:31:10 +03:00
|
|
|
|
|
2023-03-05 05:44:11 +02:00
|
|
|
|
The name of the directory the repo should be exported to in the store.
|
2020-08-24 15:31:10 +03:00
|
|
|
|
|
2023-03-05 05:44:11 +02:00
|
|
|
|
- `rev` (default: *the tip of `ref`*)
|
2020-08-24 15:31:10 +03:00
|
|
|
|
|
2023-03-05 05:44:11 +02:00
|
|
|
|
The [Git revision] to fetch.
|
|
|
|
|
This is typically a commit hash.
|
2020-08-24 15:31:10 +03:00
|
|
|
|
|
2023-03-05 05:44:11 +02:00
|
|
|
|
[Git revision]: https://git-scm.com/docs/git-rev-parse#_specifying_revisions
|
2022-06-26 15:00:00 +03:00
|
|
|
|
|
2023-03-05 05:44:11 +02:00
|
|
|
|
- `ref` (default: `HEAD`)
|
|
|
|
|
|
|
|
|
|
The [Git reference] under which to look for the requested revision.
|
|
|
|
|
This is often a branch or tag name.
|
|
|
|
|
|
|
|
|
|
[Git reference]: https://git-scm.com/book/en/v2/Git-Internals-Git-References
|
|
|
|
|
|
|
|
|
|
By default, the `ref` value is prefixed with `refs/heads/`.
|
|
|
|
|
As of 2.3.0, Nix will not prefix `refs/heads/` if `ref` starts with `refs/`.
|
|
|
|
|
|
|
|
|
|
- `submodules` (default: `false`)
|
|
|
|
|
|
|
|
|
|
A Boolean parameter that specifies whether submodules should be checked out.
|
|
|
|
|
|
|
|
|
|
- `shallow` (default: `false`)
|
|
|
|
|
|
|
|
|
|
A Boolean parameter that specifies whether fetching a shallow clone is allowed.
|
|
|
|
|
|
|
|
|
|
- `allRefs`
|
|
|
|
|
|
|
|
|
|
Whether to fetch all references of the repository.
|
|
|
|
|
With this argument being true, it's possible to load a `rev` from *any* `ref`
|
|
|
|
|
(by default only `rev`s from the specified `ref` are supported).
|
2020-09-08 20:45:28 +03:00
|
|
|
|
|
2020-08-24 15:31:10 +03:00
|
|
|
|
Here are some examples of how to use `fetchGit`.
|
|
|
|
|
|
|
|
|
|
- To fetch a private repository over SSH:
|
|
|
|
|
|
|
|
|
|
```nix
|
|
|
|
|
builtins.fetchGit {
|
|
|
|
|
url = "git@github.com:my-secret/repository.git";
|
|
|
|
|
ref = "master";
|
|
|
|
|
rev = "adab8b916a45068c044658c4158d81878f9ed1c3";
|
|
|
|
|
}
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
- To fetch an arbitrary reference:
|
|
|
|
|
|
|
|
|
|
```nix
|
|
|
|
|
builtins.fetchGit {
|
|
|
|
|
url = "https://github.com/NixOS/nix.git";
|
|
|
|
|
ref = "refs/heads/0.5-release";
|
|
|
|
|
}
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
- If the revision you're looking for is in the default branch of
|
|
|
|
|
the git repository you don't strictly need to specify the branch
|
|
|
|
|
name in the `ref` attribute.
|
|
|
|
|
|
|
|
|
|
However, if the revision you're looking for is in a future
|
|
|
|
|
branch for the non-default branch you will need to specify the
|
|
|
|
|
the `ref` attribute as well.
|
|
|
|
|
|
|
|
|
|
```nix
|
|
|
|
|
builtins.fetchGit {
|
|
|
|
|
url = "https://github.com/nixos/nix.git";
|
|
|
|
|
rev = "841fcbd04755c7a2865c51c1e2d3b045976b7452";
|
|
|
|
|
ref = "1.11-maintenance";
|
|
|
|
|
}
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
> **Note**
|
2021-10-25 16:53:01 +03:00
|
|
|
|
>
|
2020-08-24 15:31:10 +03:00
|
|
|
|
> It is nice to always specify the branch which a revision
|
|
|
|
|
> belongs to. Without the branch being specified, the fetcher
|
|
|
|
|
> might fail if the default branch changes. Additionally, it can
|
|
|
|
|
> be confusing to try a commit from a non-default branch and see
|
|
|
|
|
> the fetch fail. If the branch is specified the fault is much
|
|
|
|
|
> more obvious.
|
|
|
|
|
|
|
|
|
|
- If the revision you're looking for is in the default branch of
|
|
|
|
|
the git repository you may omit the `ref` attribute.
|
|
|
|
|
|
|
|
|
|
```nix
|
|
|
|
|
builtins.fetchGit {
|
|
|
|
|
url = "https://github.com/nixos/nix.git";
|
|
|
|
|
rev = "841fcbd04755c7a2865c51c1e2d3b045976b7452";
|
|
|
|
|
}
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
- To fetch a specific tag:
|
|
|
|
|
|
|
|
|
|
```nix
|
|
|
|
|
builtins.fetchGit {
|
|
|
|
|
url = "https://github.com/nixos/nix.git";
|
|
|
|
|
ref = "refs/tags/1.9";
|
|
|
|
|
}
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
- To fetch the latest version of a remote branch:
|
|
|
|
|
|
|
|
|
|
```nix
|
|
|
|
|
builtins.fetchGit {
|
|
|
|
|
url = "ssh://git@github.com/nixos/nix.git";
|
|
|
|
|
ref = "master";
|
|
|
|
|
}
|
|
|
|
|
```
|
|
|
|
|
|
2023-05-17 15:59:47 +03:00
|
|
|
|
Nix will refetch the branch according to the [`tarball-ttl`](@docroot@/command-ref/conf-file.md#conf-tarball-ttl) setting.
|
2020-08-24 15:31:10 +03:00
|
|
|
|
|
2023-05-17 15:59:47 +03:00
|
|
|
|
This behavior is disabled in [pure evaluation mode](@docroot@/command-ref/conf-file.md#conf-pure-eval).
|
2023-02-08 13:53:28 +02:00
|
|
|
|
|
|
|
|
|
- To fetch the content of a checked-out work directory:
|
|
|
|
|
|
|
|
|
|
```nix
|
|
|
|
|
builtins.fetchGit ./work-dir
|
|
|
|
|
```
|
|
|
|
|
|
2023-03-21 15:48:15 +02:00
|
|
|
|
If the URL points to a local directory, and no `ref` or `rev` is
|
|
|
|
|
given, `fetchGit` will use the current content of the checked-out
|
|
|
|
|
files, even if they are not committed or added to Git's index. It will
|
|
|
|
|
only consider files added to the Git repository, as listed by `git ls-files`.
|
2020-08-24 15:31:10 +03:00
|
|
|
|
)",
|
|
|
|
|
.fun = prim_fetchGit,
|
|
|
|
|
});
|
2020-03-30 17:04:18 +03:00
|
|
|
|
|
|
|
|
|
}
|