aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/nix/add-to-store.cc27
-rw-r--r--src/nix/add-to-store.md28
2 files changed, 31 insertions, 24 deletions
diff --git a/src/nix/add-to-store.cc b/src/nix/add-to-store.cc
index 022f0ea85..a2721431e 100644
--- a/src/nix/add-to-store.cc
+++ b/src/nix/add-to-store.cc
@@ -38,30 +38,9 @@ struct CmdAddToStore : MixDryRun, StoreCommand
std::string doc() override
{
- return R"(
- # Description
-
- Copy the file or directory *path* to the Nix store, and
- print the resulting store path on standard output.
-
- > **Warning**
- >
- > The resulting store path is not registered as a garbage
- > collector root, so it could be deleted before you have a
- > chance to register it.
-
- # Examples
-
- Add a regular file to the store:
-
- ```console
- # echo foo > bar
- # nix add-to-store --flat ./bar
- /nix/store/cbv2s4bsvzjri77s2gb8g8bpcb6dpa8w-bar
- # cat /nix/store/cbv2s4bsvzjri77s2gb8g8bpcb6dpa8w-bar
- foo
- ```
- )";
+ return
+ #include "add-to-store.md"
+ ;
}
Category category() override { return catUtility; }
diff --git a/src/nix/add-to-store.md b/src/nix/add-to-store.md
new file mode 100644
index 000000000..593ad67ad
--- /dev/null
+++ b/src/nix/add-to-store.md
@@ -0,0 +1,28 @@
+R""(
+
+# Description
+
+Copy the file or directory *path* to the Nix store, and
+print the resulting store path on standard output.
+
+> **Warning**
+>
+> The resulting store path is not registered as a garbage
+> collector root, so it could be deleted before you have a
+> chance to register it.
+
+# Examples
+
+Add a regular file to the store:
+
+```console
+# echo foo > bar
+
+# nix add-to-store --flat ./bar
+/nix/store/cbv2s4bsvzjri77s2gb8g8bpcb6dpa8w-bar
+
+# cat /nix/store/cbv2s4bsvzjri77s2gb8g8bpcb6dpa8w-bar
+foo
+```
+
+)""