about summary refs log tree commit diff
path: root/fun
diff options
context:
space:
mode:
authorVincent Ambo <tazjin@google.com>2019-12-21T00·51+0000
committerVincent Ambo <tazjin@google.com>2019-12-21T00·51+0000
commitacdd21f8f4b476d280e6b78dca4023b7aabb4999 (patch)
tree97c0428242e5e1a51bedb332338285033bf80a1a /fun
parentcdf25193a4a2c3537b5fbcd8973df3b5fdba8322 (diff)
feat(quinistry): Add Nix build instructions r/261
Diffstat (limited to 'fun')
-rw-r--r--fun/quinistry/default.nix11
1 files changed, 11 insertions, 0 deletions
diff --git a/fun/quinistry/default.nix b/fun/quinistry/default.nix
new file mode 100644
index 0000000000..8b005da8f6
--- /dev/null
+++ b/fun/quinistry/default.nix
@@ -0,0 +1,11 @@
+{ pkgs, ... }:
+
+pkgs.buildGo.program {
+  name = "quinistry";
+  srcs = [
+    ./const.go
+    ./image.go
+    ./main.go
+    ./types.go
+  ];
+}