build/sqlc: implement simple sqlc/bindata rules

This is a first pass at implementing rules to generate sqlc stubs from
.sql files and embed relevant migration files into bindata.

This is not yet used. The Go API is subject to change - especially the
way migrations are laid out in the generated package will probably
change.

Change-Id: I0873031603957a176ad4664c3b10768b791e0dd5
Reviewed-on: https://review.monogon.dev/c/monogon/+/884
Tested-by: Jenkins CI
Reviewed-by: Leopold Schabel <leo@monogon.tech>
diff --git a/third_party/go/repositories.bzl b/third_party/go/repositories.bzl
index 84e0bab..b1ae98b 100644
--- a/third_party/go/repositories.bzl
+++ b/third_party/go/repositories.bzl
@@ -2862,6 +2862,12 @@
         sum = "h1:DynhcF+bztK8gooS0+NDJFrdNZjJ3gzVzC545UNA9iw=",
         version = "v1.16.1",
     )
+    go_repository(
+        name = "com_github_kevinburke_go_bindata",
+        importpath = "github.com/kevinburke/go-bindata",
+        sum = "h1:rqNOXZlqrYhMVVAsQx8wuc+LaA73YcfbQ407wAykyS8=",
+        version = "v3.23.0+incompatible",
+    )
 
     go_repository(
         name = "com_github_kevinburke_ssh_config",