1
0
mirror of https://github.com/BurntSushi/ripgrep.git synced 2025-03-17 20:28:03 +02:00

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.
This commit is contained in:
c74d 2016-10-26 03:01:18 +00:00
parent 0156967f4c
commit c4ea157cb7

View File

@ -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`:
```