diff options
author | Akshay <[email protected]> | 2020-10-02 16:25:49 +0100 |
---|---|---|
committer | Akshay <[email protected]> | 2020-10-02 16:25:49 +0100 |
commit | 368f88e4a147c198d55fe1bbabf4e3358c98ac33 (patch) | |
tree | 49882f87e9ebd585ac70dc9700f9cc01a11d67f5 /shell.nix | |
parent | 34d4c530a14d08c78df9a628a6087be2144716db (diff) |
Diffstat (limited to 'shell.nix')
-rw-r--r-- | shell.nix | 14 |
1 files changed, 7 insertions, 7 deletions
@@ -3,13 +3,13 @@ | |||
3 | , pkgs ? import nixpkgs | 3 | , pkgs ? import nixpkgs |
4 | }: | 4 | }: |
5 | 5 | ||
6 | pkgs.mkShell { | 6 | with pkgs; |
7 | mkShell { | ||
7 | buildInputs = [ | 8 | buildInputs = [ |
8 | pkgs.cargo | 9 | cargo |
9 | pkgs.rustc | 10 | rustc |
10 | pkgs.git | 11 | git |
11 | pkgs.shellcheck | 12 | sqlite |
12 | pkgs.sqlite | 13 | httpie |
13 | pkgs.httpie | ||
14 | ]; | 14 | ]; |
15 | } | 15 | } |