diff options
author | Vincent Ambo <mail@tazj.in> | 2020-06-15T00·48+0100 |
---|---|---|
committer | tazjin <mail@tazj.in> | 2020-06-15T16·50+0000 |
commit | 81b6bde07427a525a4fec3c26ccf258b3bd021c5 (patch) | |
tree | 78e8ad99c7cfbb66ddc90222c4d3893df71fb893 /nix/buildGo/example | |
parent | df2b0ecdca97d0d51120c59a57495144ab24b537 (diff) |
fix(nix/buildGo): Fix import of buildGo in example file r/965
Change-Id: I56b4d19f24c5d8ec45254b7b05c9e49002d2ef85 Reviewed-on: https://cl.tvl.fyi/c/depot/+/382 Reviewed-by: edef <edef@edef.eu>
Diffstat (limited to 'nix/buildGo/example')
-rw-r--r-- | nix/buildGo/example/default.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nix/buildGo/example/default.nix b/nix/buildGo/example/default.nix index 5abed1fbbcb5..99c0a7d79bd6 100644 --- a/nix/buildGo/example/default.nix +++ b/nix/buildGo/example/default.nix @@ -8,7 +8,7 @@ # users a quick introduction to how to use buildGo. let - buildGo = import ../buildGo.nix {}; + buildGo = import ../default.nix {}; # Example use of buildGo.package, which creates an importable Go # package from the specified source files. |