about summary refs log tree commit diff
diff options
context:
space:
mode:
authorsternenseemann <0rpkxez4ksa01gb3typccl0i@systemli.org>2020-08-24 21:05:19 +0200
committersternenseemann <0rpkxez4ksa01gb3typccl0i@systemli.org>2020-08-24 21:05:19 +0200
commit22babac36760cd941cf4eb3c528d9b0438e2635f (patch)
tree92d8245667e71e8bba31db8026ddfcbe583a22a6
parent32bf1064c08c5b63522c110c9359ff393a590929 (diff)
chore(shell.nix): add dev environment
-rw-r--r--shell.nix7
1 files changed, 7 insertions, 0 deletions
diff --git a/shell.nix b/shell.nix
new file mode 100644
index 0000000..ca97a56
--- /dev/null
+++ b/shell.nix
@@ -0,0 +1,7 @@
+{ pkgs ? (import <nixpkgs> {}) }:
+
+pkgs.mkShell {
+  name = "sternenblog-env";
+
+  buildInputs = with pkgs; [ gnumake valgrind gdb doxygen ];
+}