Skip to content

Instantly share code, notes, and snippets.

@mfelsche
Created January 28, 2015 23:45
Show Gist options
  • Save mfelsche/9386a66d48d5c48a47cd to your computer and use it in GitHub Desktop.
Save mfelsche/9386a66d48d5c48a47cd to your computer and use it in GitHub Desktop.
example mix file for failing craterl compilation
defmodule Cratex.Mixfile do
use Mix.Project
def project do
[app: :cratex,
version: "0.0.1",
elixir: "~> 1.0",
deps: deps]
end
def application do
[applications: [:logger]]
end
defp deps do
[
{:craterl, "~> 0.2.1"}
]
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment