aboutsummaryrefslogtreecommitdiff
path: root/shell.nix
diff options
context:
space:
mode:
authorChristine Dodrill <me@christine.website>2020-02-07 17:49:04 -0500
committerGitHub <noreply@github.com>2020-02-07 17:49:04 -0500
commita7849dd65d6ed8e1d61c9ad6444be6b9b72e2c57 (patch)
tree0753e675443cb474ec9eda9ecaed08c22332f8a2 /shell.nix
parent8efea54f9dc9df8d4a9d3109f9fcb3f7ebca5c98 (diff)
downloadxesite-a7849dd65d6ed8e1d61c9ad6444be6b9b72e2c57.tar.xz
xesite-a7849dd65d6ed8e1d61c9ad6444be6b9b72e2c57.zip
Nix build support (#113)
* try nix * don't double build * Update docker.nix * Update nix.yml
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..2fc0425
--- /dev/null
+++ b/shell.nix
@@ -0,0 +1,8 @@
+let
+ pkgs = import <nixpkgs> {};
+in
+pkgs.mkShell {
+ buildInputs = [
+ pkgs.go
+ ];
+}