diff options
author | Vincent Ambo <tazjin@google.com> | 2019-12-21T00·51+0000 |
---|---|---|
committer | Vincent Ambo <tazjin@google.com> | 2019-12-21T00·51+0000 |
commit | acdd21f8f4b476d280e6b78dca4023b7aabb4999 (patch) | |
tree | 97c0428242e5e1a51bedb332338285033bf80a1a /fun | |
parent | cdf25193a4a2c3537b5fbcd8973df3b5fdba8322 (diff) |
feat(quinistry): Add Nix build instructions r/261
Diffstat (limited to 'fun')
-rw-r--r-- | fun/quinistry/default.nix | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/fun/quinistry/default.nix b/fun/quinistry/default.nix new file mode 100644 index 000000000000..8b005da8f67e --- /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 + ]; +} |