aboutsummaryrefslogtreecommitdiff
path: root/shell.nix
diff options
context:
space:
mode:
authorFuwn <[email protected]>2021-05-01 11:27:18 -0700
committerFuwn <[email protected]>2021-05-01 11:27:18 -0700
commit1279932f5a99e6b818b10dc71bbc143e3b3d8892 (patch)
tree52749bdac2a3b92e7837eb6386ce0282924991be /shell.nix
parentrefactor(cmds): remove unimplemented command modules (diff)
downloadwhirl-1279932f5a99e6b818b10dc71bbc143e3b3d8892.tar.xz
whirl-1279932f5a99e6b818b10dc71bbc143e3b3d8892.zip
build(nix): add niv as a build input
Diffstat (limited to 'shell.nix')
-rw-r--r--shell.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/shell.nix b/shell.nix
index 481cbc6..620500f 100644
--- a/shell.nix
+++ b/shell.nix
@@ -4,7 +4,7 @@ let
pkgs = import sources.nixpkgs { };
in
pkgs.mkShell {
- buildInputs = with pkgs; [ rust ];
+ buildInputs = with pkgs; [ niv rust ];
DATABASE_URL = "sqlite:whirl.db";
}