Skip to content

Commit ca2e9a5

Browse files
Gabriella439mergify[bot]
authored andcommitted
Add Rust to list of integrations on the website (#1623)
* Add Rust to list of integrations on the website ... as discussed here: dhall-lang/dhall-lang#868 (comment) * Fix SHA256 hash for URL
1 parent b4939f5 commit ca2e9a5

File tree

3 files changed

+9
-0
lines changed

3 files changed

+9
-0
lines changed

dhall-try/index.html

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -154,6 +154,8 @@
154154
<a class="nav-link" href="https://github.com/dhall-lang/dhall-haskell/tree/master/dhall-nix"><img src = "./img/nix-logo.png" height="32px" alt="Nix logo"><span>Nix</span></a>
155155
<div class="dropdown-divider"></div>
156156
<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>
157+
<div class="dropdown-divider"></div>
158+
<a class="nav-link" href="https://github.com/Nadrieril/dhall-rust"><img src = "./img/rust-logo.svg" height="32px" alt="Rust logo"><span>Rust</span></a>
157159
</div>
158160
</li>
159161
<li class="nav-item">

nix/shared.nix

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,12 @@ let
5353
sha256 = "1yvvdqcmgpa75y7px3isi4x6690iksq52ilnbslhn7mcngikw6m9";
5454
};
5555

56+
rust =
57+
pkgsNew.fetchurl {
58+
url = "http://rust-lang.org/logos/rust-logo-128x128-blk.png";
59+
sha256 = "19ycf7ra6pn6gvavpfg1gbi9j8dsmxfm0gnczabvpspv7yaf8i71";
60+
};
61+
5662
dhallLarge =
5763
pkgsNew.fetchurl {
5864
url = "https://raw.githubusercontent.com/dhall-lang/dhall-lang/28f4fb830f158bba6bb635bd29f1fd7075501b8f/img/dhall-logo.svg";

nix/website.nix

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ runCommand "try-dhall" {} ''
2323
${coreutils}/bin/ln --symbolic ${logo.bash} $out/img/bash-logo.png
2424
${coreutils}/bin/ln --symbolic ${logo.clojure} $out/img/clojure-logo.svg
2525
${coreutils}/bin/ln --symbolic ${logo.ruby} $out/img/ruby-logo.svg
26+
${coreutils}/bin/ln --symbolic ${logo.rust} $out/img/rust-logo.svg
2627
${coreutils}/bin/ln --symbolic ${logo.discourse} $out/img/discourse-logo.svg
2728
${coreutils}/bin/ln --symbolic ${logo.dhallLarge} $out/img/dhall-large-logo.svg
2829
${coreutils}/bin/ln --symbolic ${logo.dhallSmall} $out/img/dhall-small-logo.svg

0 commit comments

Comments
 (0)