Created
July 27, 2014 23:58
-
-
Save alco/51ca308fc0801e69c800 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
λ 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