Skip to content

Instantly share code, notes, and snippets.

View magnusart's full-sized avatar

Magnus Andersson magnusart

View GitHub Profile
@felixbuenemann
felixbuenemann / ghc.rb
Last active April 21, 2021 23:54
Homebrew formula for official ghc 7.10.2 binaries
class Ghc < Formula
desc "Glorious Glasgow Haskell Compilation System"
homepage "https://haskell.org/ghc/"
url "https://downloads.haskell.org/~ghc/7.10.2/ghc-7.10.2-x86_64-apple-darwin.tar.xz"
sha256 "ef0f00885096e3621cec84a112dfae050cf546ad39bdef29a7719407c6bc5b36"
def install
system "./configure", "--prefix=#{prefix}"
ENV.deparallelize { system "make", "install" }