aboutsummaryrefslogtreecommitdiff
path: root/shell.nix
diff options
context:
space:
mode:
authorAkshay <[email protected]>2020-10-21 11:00:03 +0100
committerAkshay <[email protected]>2020-10-21 11:00:03 +0100
commit372ffa5ec3ce365b0a243ac2b0128496542cae6e (patch)
treea66f706e26fc8232ffbf6cfa9cf3a24cc5490af9 /shell.nix
init
Diffstat (limited to 'shell.nix')
-rw-r--r--shell.nix8
1 files changed, 8 insertions, 0 deletions
diff --git a/shell.nix b/shell.nix
new file mode 100644
index 0000000..67483ce
--- /dev/null
+++ b/shell.nix
@@ -0,0 +1,8 @@
1{ pkgs ? import <nixpkgs> {} }:
2
3pkgs.mkShell {
4 buildInputs = with pkgs; [
5 gcc
6 clang-tools
7 ];
8}