aboutsummaryrefslogtreecommitdiff
path: root/shell.nix
diff options
context:
space:
mode:
authorAkshay <[email protected]>2020-10-02 16:25:49 +0100
committerAkshay <[email protected]>2020-10-02 16:25:49 +0100
commit368f88e4a147c198d55fe1bbabf4e3358c98ac33 (patch)
tree49882f87e9ebd585ac70dc9700f9cc01a11d67f5 /shell.nix
parent34d4c530a14d08c78df9a628a6087be2144716db (diff)
bump: nivHEADmaster
Diffstat (limited to 'shell.nix')
-rw-r--r--shell.nix14
1 files changed, 7 insertions, 7 deletions
diff --git a/shell.nix b/shell.nix
index 580f53e..ea6d30c 100644
--- a/shell.nix
+++ b/shell.nix
@@ -3,13 +3,13 @@
3 , pkgs ? import nixpkgs 3 , pkgs ? import nixpkgs
4}: 4}:
5 5
6pkgs.mkShell { 6with pkgs;
7mkShell {
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}