-
Notifications
You must be signed in to change notification settings - Fork 87
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
shell.nix is used for dependencies in the formatting, syntax checking. Signed-off-by: Jacob Weinstock <[email protected]>
- Loading branch information
1 parent
27cf7a6
commit 7875757
Showing
3 changed files
with
21 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
let _pkgs = import <nixpkgs> { }; | ||
in { pkgs ? import (_pkgs.fetchFromGitHub { | ||
owner = "NixOS"; | ||
repo = "nixpkgs"; | ||
#branch@date: master@2022-06-02 | ||
rev = "17e891b141ca8e599ebf6443d0870a67dd98f94f"; | ||
sha256 = "0qiyl04s4q0b3dhvyryz10hfdqhb2c7hk2lqn5llsb8lxsqj07l9"; | ||
}) { } }: | ||
|
||
with pkgs; | ||
|
||
mkShell { | ||
buildInputs = [ | ||
nodePackages.prettier | ||
jq | ||
shellcheck | ||
shfmt | ||
rufo | ||
]; | ||
} |