dhall-haskell/nix/twitterLogo.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

23 lines
454 B
Nix

{ stdenv, fetchurl, unzip }:
stdenv.mkDerivation rec {
name = "twitter-logo";
src = fetchurl {
name = "twitter-logos.zip";
url = "https://about.twitter.com/content/dam/about-twitter/company/brand-resources/en_us/Twitter%20Logos.zip";
sha256 = "1dhqmj3krhak10yrq0zm89ld40a32ndrfnl6ligaaphf5dkff5m6";
};
sourceRoot = ".";
buildInputs = [ unzip ];
dontBuild = true;
installPhase = ''
mkdir $out
cp -r * $out/
'';
}