Skip to content

Instantly share code, notes, and snippets.

@alco
Created July 27, 2014 23:58
Show Gist options
  • Save alco/51ca308fc0801e69c800 to your computer and use it in GitHub Desktop.
Save alco/51ca308fc0801e69c800 to your computer and use it in GitHub Desktop.
λ cat mix.exs
defmodule Fuego.Mixfile do
use Mix.Project
def project do
[app: :fuego,
version: "0.0.1",
elixir: "~> 0.14.2",
deps: deps]
end
# Configuration for the OTP application
#
# Type `mix help compile.app` for more information
def application do
[applications: []]
end
# Dependencies can be hex.pm packages:
#
# {:mydep, "~> 0.3.0"}
#
# Or git/path repositories:
#
# {:mydep, git: "https://github.com/elixir-lang/mydep.git", tag: "0.1"}
#
# Type `mix help deps` for more examples and options
defp deps do
[
{ :encurses, github: "jzellner/encurses" }
]
end
end
%
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment