summary refs log tree commit diff stats
path: root/shell.nix
diff options
context:
space:
mode:
authorAlan Pearce2024-06-29 17:36:24 +0200
committerAlan Pearce2024-06-29 17:36:24 +0200
commitcf942bc3c88e6d4482b6f99c1a31b5c13efe8e69 (patch)
tree247ab90505579d296d474c42bbe8317edb863ccd /shell.nix
downloadgopkgs-cf942bc3c88e6d4482b6f99c1a31b5c13efe8e69.tar.lz
gopkgs-cf942bc3c88e6d4482b6f99c1a31b5c13efe8e69.tar.zst
gopkgs-cf942bc3c88e6d4482b6f99c1a31b5c13efe8e69.zip
initial commit
Diffstat (limited to 'shell.nix')
-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..142eef8
--- /dev/null
+++ b/shell.nix
@@ -0,0 +1,7 @@
+{ pkgs ? import <nixpkgs> { } }:
+
+pkgs.mkShell {
+  buildInputs = [
+    (pkgs.callPackage ./. { })
+  ];
+}