Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add dhall-golang to official implementations #940

Merged
merged 4 commits into from Mar 20, 2020
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 5 additions & 1 deletion .github/CONTRIBUTING.md
Expand Up @@ -90,7 +90,7 @@ actively maintained implementations of the Dhall language. Votes are made
using the GitHub pull request review feature. Each implementation gets one
vote.

At the time of this writing the four actively supported implementations of Dhall
At the time of this writing the five actively supported implementations of Dhall
are:

* [`dhall-haskell` - Haskell bindings to Dhall](https://github.com/dhall-lang/dhall-haskell)
Expand All @@ -109,6 +109,10 @@ are:

Led by @Nadrieril

* [`dhall-golang` - Go bindings to Dhall](https://github.com/philandstuff/dhall-golang)

Led by @philandstuff

Each of those implementations get one vote cast by the lead contributor for each
implementation.

Expand Down
2 changes: 2 additions & 0 deletions nixops/index.html
Expand Up @@ -148,6 +148,8 @@
<a class="nav-link" href="https://git.sr.ht/~singpolyma/dhall-ruby"><img src = "./img/ruby-logo.svg" height="32px" alt="Ruby logo"><span>Ruby</span></a>
<div class="dropdown-divider"></div>
<a class="nav-link" href="https://github.com/Nadrieril/dhall-rust"><img src = "./img/rust-logo.png" height="32px" alt="Rust logo"><span>Rust</span></a>
<div class="dropdown-divider"></div>
<a class="nav-link" href="https://github.com/philandstuff/dhall-golang"><img src = "./img/go-logo.svg" height="32px" alt="Go logo"><span>Go</span></a>
</div>
</li>
<li class="nav-item dropdown">
Expand Down
1 change: 1 addition & 0 deletions nixops/website.nix
Expand Up @@ -27,6 +27,7 @@ runCommand "try-dhall" {} ''
${coreutils}/bin/ln --symbolic ${logo.dhallSmall} $out/img/dhall-small-logo.svg
${coreutils}/bin/ln --symbolic ${logo.discourse} $out/img/discourse-logo.svg
${coreutils}/bin/ln --symbolic ${logo.github}/PNG/GitHub-Mark-32px.png $out/img/github-logo.png
${coreutils}/bin/ln --symbolic ${logo.golang}/Go-Logo/SVG/Go-Logo_Blue.svg $out/img/go-logo.svg
${coreutils}/bin/ln --symbolic ${logo.haskell} $out/img/haskell-logo.png
${coreutils}/bin/ln --symbolic ${logo.json} $out/img/json-logo.svg
${coreutils}/bin/ln --symbolic ${logo.kops} $out/img/kops-logo.svg
Expand Down
8 changes: 8 additions & 0 deletions release.nix
Expand Up @@ -180,6 +180,14 @@ let
sha256 = "0mrjzv690g9mxljzxsvay8asyr8vlxhhs9smmax7mp3psd49b43g";
};

golang =
pkgsNew.fetchzip {
# See also https://blog.golang.org/go-brand
url = "https://storage.googleapis.com/golang-assets/go-logos-v1.0.zip";
sha256 = "06vlpk22nxl1a3mz9rpk9fyq483rc4ml8f7lkkfqmabbia9ah7np";
stripRoot = false;
};

ruby =
pkgsNew.fetchurl {
url = "https://upload.wikimedia.org/wikipedia/commons/7/73/Ruby_logo.svg";
Expand Down