summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorstuebinm2024-10-29 01:45:12 +0100
committerstuebinm2024-10-29 01:45:22 +0100
commit179bbe7c4ffb2ff3075e530e5250ee299ee24dd3 (patch)
tree91037096096d067c3ece04414f645c90b593bb4a
parent6e75f701f63f1915d442c6b13126b1c3a8e95876 (diff)
add a basic shell.nix for developmentHEADmain
(this has existed on my checkout since forever, but wasn't committed)
-rw-r--r--shell.nix6
1 files changed, 6 insertions, 0 deletions
diff --git a/shell.nix b/shell.nix
new file mode 100644
index 0000000..f497eb6
--- /dev/null
+++ b/shell.nix
@@ -0,0 +1,6 @@
+with import <nixpkgs> {};
+
+mkShell {
+ name = "walint-shell";
+ buildInputs = [ pkg-config openssl openssl.dev zlib zlib.dev ];
+}