diff options
author | Minijackson <minijackson@riseup.net> | 2022-12-22 12:19:59 +0100 |
---|---|---|
committer | Minijackson <minijackson@riseup.net> | 2022-12-22 12:19:59 +0100 |
commit | 92a02c34628343153b33602eae00cef46e28d191 (patch) | |
tree | 8622ec528d24e456be22d984d93aa9bcafc97399 /shell.nix | |
download | diaphragm-92a02c34628343153b33602eae00cef46e28d191.tar.gz diaphragm-92a02c34628343153b33602eae00cef46e28d191.zip |
WIP
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 | } | ||