aboutsummaryrefslogtreecommitdiff
path: root/shell.nix
diff options
context:
space:
mode:
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}