dhall-haskell/nix/githubLogo.nix
Gabriel Gonzalez d7d8139d39
Expand "Try dhall" into dhall-lang.org home page (#747)
This expands the "Try dhall" page to serve as a functional home page for
"dhall-lang.org" in the short term by making the following changes:

* Adding a navigation bar to the top that links to useful resources and
  official integrations
* Adding a quick summary explaining what Dhall is
2018-12-10 12:28:19 -08:00

20 lines
362 B
Nix

{ stdenv, fetchurl, unzip }:
stdenv.mkDerivation rec {
name = "github-logo";
src = fetchurl {
url = "https://github-media-downloads.s3.amazonaws.com/GitHub-Mark.zip";
sha256 = "11znjcl0kwvws0wk600hlhq5z0mp7a0234zwryn20x6ib8qqb9v9";
};
buildInputs = [ unzip ];
dontBuild = true;
installPhase = ''
mkdir $out
cp -r * $out/
'';
}