Skip to content

Instantly share code, notes, and snippets.

@jschoch
Created July 19, 2013 23:37
Show Gist options
  • Save jschoch/6043120 to your computer and use it in GitHub Desktop.
Save jschoch/6043120 to your computer and use it in GitHub Desktop.
[ec2-user@ip-10-40-65-192 paxos_test]$ mix deps.get
* Getting gen_paxos [git: "https://github.com/gburd/gen_paxos.git"]
Cloning into 'deps/gen_paxos'...
remote: Counting objects: 139, done.
remote: Compressing objects: 100% (63/63), done.
remote: Total 139 (delta 72), reused 138 (delta 71)
Receiving objects: 100% (139/139), 151.91 KiB, done.
Resolving deltas: 100% (72/72), done.
* Getting edown [git: "git://github.com/esl/edown.git"]
Cloning into '/home/ec2-user/test/paxos_test/deps/edown'...
remote: Counting objects: 750, done.
remote: Compressing objects: 100% (283/283), done.
remote: Total 750 (delta 487), reused 716 (delta 458)
Receiving objects: 100% (750/750), 374.62 KiB, done.
Resolving deltas: 100% (487/487), done.
* Compiling edown
==> edown (compile)
Compiled src/edown_make.erl
Compiled src/edown_lib.erl
Compiled src/edown_xmerl.erl
Compiled src/edown_doclet.erl
Compiled src/edown_layout.erl
* Compiling gen_paxos
==> Entering directory `/home/ec2-user/test/paxos_test/deps/edown'
==> Leaving directory `/home/ec2-user/test/paxos_test/deps/edown'
==> gen_paxos (compile)
* Compiling gen_paxos
==> Entering directory `/home/ec2-user/test/paxos_test/deps/edown'
==> Leaving directory `/home/ec2-user/test/paxos_test/deps/edown'
==> gen_paxos (compile)
Unchecked dependencies for environment dev:
* gen_paxos [git: "https://github.com/gburd/gen_paxos.git"]
could not find an app file at deps/gen_paxos/ebin/gen_paxos.app
** (Mix) Can't continue due to errors on dependencies
[ec2-user@ip-10-40-65-192 paxos_test]$ cat mix.exs
defmodule PaxosTest.Mixfile do
use Mix.Project
def project do
[ app: :paxos_test,
compile_path: "ebin",
version: "0.0.1",
elixir: "~> 0.10.0",
deps: deps ]
end
# Configuration for the OTP application
def application do
[]
end
# Returns the list of dependencies in the format:
# { :foobar, "0.1", git: "https://github.com/elixir-lang/foobar.git" }
defp deps do
[{:gen_paxos, "0.1",git: "https://github.com/gburd/gen_paxos.git"}]
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment