summaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorc74d <8573dd@gmail.com>2016-10-26 03:01:18 +0000
committerc74d <8573dd@gmail.com>2016-10-26 03:01:18 +0000
commitc4ea157cb792662880b7310510465abe4b18c42c (patch)
tree203301c113826366119dea25f59090ea81032022 /README.md
parent0156967f4cfdcd94abe8da20dd926825ea0d9195 (diff)
Mention Nix package in README
In the `README.md` document, where said document documents the availability of pre-built packages of ripgrep, document the availability of such a package from the package management system Nix.
Diffstat (limited to 'README.md')
-rw-r--r--README.md8
1 files changed, 8 insertions, 0 deletions
diff --git a/README.md b/README.md
index 607767eb..e0ad6818 100644
--- a/README.md
+++ b/README.md
@@ -132,6 +132,14 @@ $ yum-config-manager --add-repo=https://copr.fedorainfracloud.org/coprs/carlgeor
$ yum install ripgrep
```
+If you're a **Nix** user, you can install `ripgrep` from
+[nixpkgs](https://github.com/NixOS/nixpkgs/blob/master/pkgs/tools/text/ripgrep/default.nix):
+
+```
+$ nix-env --install ripgrep
+$ # (Or using the attribute name, which is also `ripgrep`.)
+```
+
If you're a **Rust programmer**, `ripgrep` can be installed with `cargo`:
```