summary refs log tree commit diff
path: root/nixos/doc
diff options
context:
space:
mode:
authorNguyễn Gia Phong <mcsinyx@disroot.org>2021-12-04 23:01:49 +0700
committerNguyễn Gia Phong <mcsinyx@disroot.org>2022-01-03 16:37:16 +0700
commitb97ccaa18d61b888b00513c0754745c27c36b293 (patch)
treeaa70c30cc3185ac6c73c88e261eb9e1a09a078bc /nixos/doc
parentce789257bbe1cf605af5cc628f8f0db9e662e72a (diff)
downloadnixpkgs-b97ccaa18d61b888b00513c0754745c27c36b293.tar
nixpkgs-b97ccaa18d61b888b00513c0754745c27c36b293.tar.gz
nixpkgs-b97ccaa18d61b888b00513c0754745c27c36b293.tar.bz2
nixpkgs-b97ccaa18d61b888b00513c0754745c27c36b293.tar.lz
nixpkgs-b97ccaa18d61b888b00513c0754745c27c36b293.tar.xz
nixpkgs-b97ccaa18d61b888b00513c0754745c27c36b293.tar.zst
nixpkgs-b97ccaa18d61b888b00513c0754745c27c36b293.zip
fetchFromSourcehut: allow recursive fetching
Diffstat (limited to 'nixos/doc')
-rw-r--r--nixos/doc/manual/from_md/release-notes/rl-2205.section.xml9
-rw-r--r--nixos/doc/manual/release-notes/rl-2205.section.md4
2 files changed, 13 insertions, 0 deletions
diff --git a/nixos/doc/manual/from_md/release-notes/rl-2205.section.xml b/nixos/doc/manual/from_md/release-notes/rl-2205.section.xml
index 4a2e86a60b9..5d7b3cf3f51 100644
--- a/nixos/doc/manual/from_md/release-notes/rl-2205.section.xml
+++ b/nixos/doc/manual/from_md/release-notes/rl-2205.section.xml
@@ -310,6 +310,15 @@
           files.
         </para>
       </listitem>
+      <listitem>
+        <para>
+          <literal>fetchFromSourcehut</literal> now allows fetching
+          repositories recursively using <literal>fetchgit</literal> or
+          <literal>fetchhg</literal> if the argument
+          <literal>fetchSubmodules</literal> is set to
+          <literal>true</literal>.
+        </para>
+      </listitem>
     </itemizedlist>
   </section>
 </section>
diff --git a/nixos/doc/manual/release-notes/rl-2205.section.md b/nixos/doc/manual/release-notes/rl-2205.section.md
index 2a062d0573b..3c1ba344d87 100644
--- a/nixos/doc/manual/release-notes/rl-2205.section.md
+++ b/nixos/doc/manual/release-notes/rl-2205.section.md
@@ -116,3 +116,7 @@ In addition to numerous new and upgraded packages, this release has the followin
 - The `services.stubby` module was converted to a [settings-style](https://github.com/NixOS/rfcs/blob/master/rfcs/0042-config-option.md) configuration.
 
 - The option `services.duplicati.dataDir` has been added to allow changing the location of duplicati's files.
+
+- `fetchFromSourcehut` now allows fetching repositories recursively
+  using `fetchgit` or `fetchhg` if the argument `fetchSubmodules`
+  is set to `true`.