Skip to content

Commit

Permalink
docs: adds installing with NIX
Browse files Browse the repository at this point in the history
  • Loading branch information
cristianoliveira committed Apr 1, 2024
1 parent b2adda9 commit f0cbd4c
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,23 @@ curl -s https://raw.githubusercontent.com/cristianoliveira/funzzy/master/linux-i
cargo install funzzy
```

- Nix

```bash
nix-env -iA nixpkgs.funzzy
```

or, if you use `shell.nix`:

```nix
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
buildInputs = [
pkgs.funzzy
];
};
```

\*Make sure you have `$HOME/.cargo/bin` in your PATH
`export $PATH:$HOME/.cargo/bin`

Expand Down

0 comments on commit f0cbd4c

Please sign in to comment.