diff options
author | Graham Christensen <graham@grahamc.com> | 2019-07-02T13·04-0400 |
---|---|---|
committer | Graham Christensen <graham@grahamc.com> | 2019-07-02T13·05-0400 |
commit | c8205a3413217ccf8a6a1f7e064b06a5b86c3253 (patch) | |
tree | 8743aac310345a9179171467e2a82065515b984f /doc/manual/expressions | |
parent | 7e35e914c1aa24957107c666c76f1d834ebae90a (diff) |
builtins.fetchGit: document absolute ref support
Diffstat (limited to 'doc/manual/expressions')
-rw-r--r-- | doc/manual/expressions/builtins.xml | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/doc/manual/expressions/builtins.xml b/doc/manual/expressions/builtins.xml index 412622714d40..dcd7aaf243ce 100644 --- a/doc/manual/expressions/builtins.xml +++ b/doc/manual/expressions/builtins.xml @@ -419,6 +419,13 @@ stdenv.mkDerivation { … } This is often a branch or tag name. Defaults to <literal>HEAD</literal>. </para> + + <para> + By default, the <varname>ref</varname> value is prefixed + with <literal>refs/heads/</literal>. As of Nix 2.3.0 + Nix will not prefix <literal>refs/heads/</literal> if + <varname>ref</varname> starts with <literal>refs/</literal>. + </para> </listitem> </varlistentry> </variablelist> @@ -433,6 +440,14 @@ stdenv.mkDerivation { … } </example> <example> + <title>Fetching an arbitrary ref</title> + <programlisting>builtins.fetchGit { + url = "https://gitub.com/NixOS/nix.git"; + ref = "refs/heads/0.5-release"; +}</programlisting> + </example> + + <example> <title>Fetching a repository's specific commit on an arbitrary branch</title> <para> If the revision you're looking for is in the default branch |