aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFuwn <[email protected]>2021-05-01 11:27:18 +0000
committerFuwn <[email protected]>2021-05-01 11:27:18 +0000
commit7ccf013bb9299e6d38c02e103ef33a42d5fbd63d (patch)
tree053e30a8a3549bfc3d57c645afaefd7461be486e
parentrefactor(cmds): remove unimplemented command modules (diff)
downloadwhirl-7ccf013bb9299e6d38c02e103ef33a42d5fbd63d.tar.xz
whirl-7ccf013bb9299e6d38c02e103ef33a42d5fbd63d.zip
build(nix): add niv as a build input
-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";
}