summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Gallant <jamslam@gmail.com>2016-10-26 18:52:32 -0400
committerGitHub <noreply@github.com>2016-10-26 18:52:32 -0400
commitec4904df3368ff1386214dfcb32825a5d8d01975 (patch)
tree203301c113826366119dea25f59090ea81032022
parent0156967f4cfdcd94abe8da20dd926825ea0d9195 (diff)
parentc4ea157cb792662880b7310510465abe4b18c42c (diff)
Merge pull request #195 from 8573/8573/readme/note-Nix-pkgs/1
Mention Nix package in README
-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`:
```