Skip to content

Commit

Permalink
Add donate page
Browse files Browse the repository at this point in the history
  • Loading branch information
davidak committed Apr 18, 2020
1 parent 4e1f211 commit 22a8f18
Show file tree
Hide file tree
Showing 4 changed files with 103 additions and 22 deletions.
5 changes: 2 additions & 3 deletions Makefile
Expand Up @@ -6,7 +6,7 @@ rwildcard=$(foreach d,$(wildcard $1*),$(call rwildcard,$d/,$2) $(filter $(subst
default: all


HTML = index.html download.html news.html learn.html governance.html \
HTML = index.html download.html news.html learn.html governance.html donate.html \
teams/rfc-steering-committee.html teams/security.html teams/marketing.html \
teams/nixos_release.html teams/infrastructure.html teams/nixcon.html \
teams/discourse.html \
Expand Down Expand Up @@ -83,7 +83,7 @@ favicon.ico: favicon.png
%-small.png: %.png
convert -resize 200 $< $@

%.html: %.tt layout.tt common.tt nix-release.tt nixos-release.tt donation.tt
%.html: %.tt layout.tt common.tt nix-release.tt nixos-release.tt
tpage \
--pre_chomp --post_chomp \
--define root=$(ROOT) \
Expand Down Expand Up @@ -145,4 +145,3 @@ nixpkgs/packages-channels.json: Makefile

nixos/packages-explorer.js:
@ln -sfn $(PACKAGES_EXPLORER) $@

97 changes: 97 additions & 0 deletions donate.tt
@@ -0,0 +1,97 @@
[% WRAPPER layout.tt hideTitle=1 title="Donate" menu='nixos' %]

<h1>Donate</h1>

<p class="lead">
The NixOS infrastructure, development and events
are funded by it's users and sponsors.
</p>

<p>
Maintaining our build farm and binary cache is very expensive.
We depend on your donation to ensure the continuous operation
and expansion of the NixOS infrastructure.
Please consider donating a small amount every month
to contribute to sustainable funding.
Donations are handled by a nonprofit organization,
the <a href="[%root%]governance.html#foundation">NixOS Foundation</a>.
</p>

<p>You can donate to the NixOS Foundation by using Open Collective:</p>

<object type="image/svg+xml" data="https://opencollective.com/nixos/tiers/supporter.svg?avatarHeight=80&amp;width=1000"></object>

<p>The NixOS Foundation also accepts donations via SEPA bank transfer. Please send payments to:</p>

<pre class="code">
Stichting NixOS Foundation, De Meern, The Netherlands

IBAN: NL45 KNAB 0732 3586 98
BIC: KNABNL2H
</pre>

<p>Please add your name and purpose (donation) in the description of the transfer.</p>

<i>If you would like to support us with amounts above 2000 euro per year, please contact us at
<a href="mailto:foundation@nixos.org">foundation@nixos.org</a>, as this will have tax implications.
</i>

<h2>Acknowledgments</h2>

<p>The Nix package manager was developed by <a
href="https://edolstra.github.io/">Eelco Dolstra</a> as
part of his PhD research in the <a
href="http://www.cs.uu.nl/wiki/Trace/WebHome">TraCE project</a>,
funded by the <a href="http://www.jacquard.nl/">Jacquard programme</a>
of the <a href="http://www.nwo.nl/">Netherlands Organisation for
Scientific Research</a> (NWO) and <a
href="http://www.serc.nl/">SERC</a>. The first prototype of NixOS was
developed by <a href="http://www.tjaldur.nl/">Armijn Hemel</a> as
his master’s thesis project. Hydra, the Nix-based continuous build
system, was developed as part of the LaQuSo Buildfarm project, funded
by <a href="https://www.4tu.nl/nirict/">NIRICT</a> and <a
href="http://www.laquso.com/">LaQuSo</a>.</p>

<p>The following companies and institutes have supported
the development of NixOS and hosting for it's infrastructure.
We are very grateful for that!
If you would like to support us as well, please contact
<a href="mailto:rob.vermaas@gmail.com">Rob Vermaas</a>.</p>

<div class="row-fluid" style="height: 100px; line-height: 100px;">
<div class="span4" style="display: inline-block !important; vertical-align: middle;">
<a href="http://www.logicblox.com/"><img src="[% root %]logo/lb_logo_small_no_bg.png" alt="LogicBlox logo" style="height:60px;" /></a>
</div>
<div class="span4" style="display: inline-block !important; vertical-align: middle;">
<a href="http://www.tudelft.nl/"><img src="[% root %]logo/tudelft.gif" alt="TU Delft logo" style="height:60px;" /></a>
</div>
<div class="span4" style="display: inline-block !important; vertical-align: middle;">
<a href="http://www.uu.nl/"><img src="[% root %]logo/uu.gif" alt="UU logo" style="height:60px;" /></a>
</div>
</div>

<div class="row-fluid" style="height: 100px; line-height: 100px;">
<div class="span4" style="display: inline-block !important; vertical-align: middle;">
<a href="https://www.3tu.nl/"><img src="[% root %]logo/3tu.jpg" alt="3TU logo" style="height:60px;" /></a>
</div>
<div class="span4" style="display: inline-block !important; vertical-align: middle;">
<a href="https://www.packet.com"><img src="[% root %]logo/packet.net.svg" alt="Premium Bare Metal Servers and Cloud Hosting" style="height:60px;" /></a>
</div>
<div class="span4" style="display: inline-block !important; vertical-align: middle;">
<a href="https://snabb.co"><img src="[% root %]logo/snabb.png" alt="Snabb.co logo" style="height:60px;" /></a>
</div>
</div>

<div class="row-fluid" style="height: 100px; line-height: 100px;">
<div class="span4" style="display: inline-block !important; vertical-align: middle;">
<a href="https://www.macstadium.com/"><img src="[% root %]logo/macstadium.png" alt="MacStadium logo" style="height:60px;" /></a>
</div>
<div class="span4" style="display: inline-block !important; vertical-align: middle;">
<a href="https://www.fastly.com/"><img src="[% root %]logo/fastly.png" alt="Fastly" style="height:60px;" /></a>
</div>
<div class="span4" style="display: inline-block !important; vertical-align: middle;">
<a href="https://www.hetzner.de/"><img src="[% root %]logo/hetzner-online.svg" alt="Hetzner Online GmbH" style="height:60px;" /></a>
</div>
</div>

[% END %]
19 changes: 0 additions & 19 deletions donation.tt

This file was deleted.

4 changes: 4 additions & 0 deletions layout.tt
Expand Up @@ -71,6 +71,7 @@
<li><a href="[%root%]nixos/options.html">Options</a></li>
<li><a href="[%root%]nixos/community.html">Community</a></li>
<li><a href="[%root%]governance.html">Governance</a></li>
<li><a href="[%root%]donate.html">Donate</a></li>
</ul>
<ul class="nav pull-right">
<!--
Expand All @@ -83,6 +84,7 @@
<li><a href="[%root%]download.html">Download</a></li>
<li><a href="[%root%]learn.html">Learn</a></li>
<li><a href="[%root%]governance.html">Governance</a></li>
<li><a href="[%root%]donate.html">Donate</a></li>
</ul>
<ul class="nav pull-right">
<li><a href="https://github.com/NixOS/nix"><i class="fa fa-github"></i></a></li>
Expand All @@ -91,13 +93,15 @@
<li><a href="[%root%]download.html">Download</a></li>
<li><a href="[%root%]learn.html">Learn</a></li>
<li><a href="[%root%]governance.html">Governance</a></li>
<li><a href="[%root%]donate.html">Donate</a></li>
</ul>
<ul class="nav pull-right">
<li><a href="https://github.com/NixOS/nixpkgs"><i class="fa fa-github"></i></a></li>
[% ELSIF menu == 'organization' %]
<ul class="nav pull-right">
<li><a href="[%root%]learn.html">Learn</a></li>
<li><a href="[%root%]governance.html">Governance</a></li>
<li><a href="[%root%]donate.html">Donate</a></li>
<li><a href="https://github.com/NixOS/nixpkgs"><i class="fa fa-github"></i></a></li>
<li><a href="https://twitter.com/nixos_org"><i class="fa fa-twitter"></i></a></li>
[% ELSE %]
Expand Down

0 comments on commit 22a8f18

Please sign in to comment.