diff options
Diffstat (limited to 'shell.nix')
-rw-r--r-- | shell.nix | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/shell.nix b/shell.nix new file mode 100644 index 0000000..2d25ec7 --- /dev/null +++ b/shell.nix | |||
@@ -0,0 +1,10 @@ | |||
1 | { pkgs ? import <nixpkgs> {} }: | ||
2 | |||
3 | pkgs.mkShell { | ||
4 | buildInputs = with pkgs; [ | ||
5 | pkgconfig cairo pango z3 | ||
6 | |||
7 | # keep this line if you use bash | ||
8 | pkgs.bashInteractive | ||
9 | ]; | ||
10 | } | ||