Skip to content

Instantly share code, notes, and snippets.

@ivanperez-keera
Created November 5, 2024 05:32
Show Gist options
  • Save ivanperez-keera/68ec35a6cbd2d6a088fac3a7ea8fc566 to your computer and use it in GitHub Desktop.
Save ivanperez-keera/68ec35a6cbd2d6a088fac3a7ea8fc566 to your computer and use it in GitHub Desktop.
Copilot Homebrew Formulas
class Copilotlanguage < Formula
desc "Stream-based Programming Language for real time"
homepage "copilot-language.github.io"
url "https://github.com/Copilot-Language/copilot/archive/refs/tags/v3.17.tar.gz"
sha256 "a567c9b8c094bec85238cae5c305c77fef1444359e793a54c21c5f15e35b5515"
license "BSD-3-Clause"
head "https://github.com/copilot-language/copilot.git", branch: "master"
depends_on "cabal-install" => :build
depends_on "[email protected]" => :build
def install
system "cabal", "v2-update"
system "cabal", "v2-install", *std_cabal_v2_args, "copilot**/"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment