Current section

22 Versions

Jump to

Compare versions

2 files changed
+40 additions
-4 deletions
  @@ -1,11 +1,11 @@
1 1 {<<"app">>,<<"nerves_toolchain_arm_unknown_linux_gnueabihf">>}.
2 - {<<"build_tools">>,[]}.
2 + {<<"build_tools">>,[<<"mix">>]}.
3 3 {<<"description">>,<<"Nerves Toolchain - arm-unknown-linux-gnueabihf">>}.
4 4 {<<"elixir">>,<<"~> 1.2">>}.
5 5 {<<"files">>,
6 6 [<<"lib/nerves_toolchain_arm_unknown_linux_gnueabihf.ex">>,
7 7 <<"src/darwin.config">>,<<"src/linux.config">>,<<"README.md">>,
8 - <<"LICENSE">>,<<"nerves.exs">>]}.
8 + <<"LICENSE">>,<<"nerves.exs">>,<<"mix.exs">>]}.
9 9 {<<"licenses">>,[<<"Apache 2.0">>]}.
10 10 {<<"links">>,
11 11 [{<<"Github">>,
  @@ -16,5 +16,5 @@
16 16 [{<<"nerves_toolchain">>,
17 17 [{<<"app">>,<<"nerves_toolchain">>},
18 18 {<<"optional">>,false},
19 - {<<"requirement">>,<<"~> 0.6.1">>}]}]}.
20 - {<<"version">>,<<"0.6.0">>}.
19 + {<<"requirement">>,<<"~> 0.6.2">>}]}]}.
20 + {<<"version">>,<<"0.6.1">>}.
  @@ -0,0 +1,36 @@
1 + defmodule NervesToolchainArmUnknownLinuxGnueabihf.Mixfile do
2 + use Mix.Project
3 +
4 + def project do
5 + [app: :nerves_toolchain_arm_unknown_linux_gnueabihf,
6 + version: "0.6.1",
7 + elixir: "~> 1.2",
8 + compilers: Mix.compilers ++ [:nerves_toolchain],
9 + description: description,
10 + package: package,
11 + deps: deps]
12 + end
13 +
14 + def application do
15 + [env: [
16 + target_tuple: "arm-unknown-linux-gnueabihf"
17 + ]]
18 + end
19 +
20 + defp deps do
21 + [{:nerves_toolchain, "~> 0.6.2"}]
22 + end
23 +
24 + defp description do
25 + """
26 + Nerves Toolchain - arm-unknown-linux-gnueabihf
27 + """
28 + end
29 +
30 + defp package do
31 + [maintainers: ["Frank Hunleth", "Justin Schneck"],
32 + files: ["lib", "src", "README.md", "LICENSE", "nerves.exs", "mix.exs"],
33 + licenses: ["Apache 2.0"],
34 + links: %{"Github" => "https://github.com/nerves-project/nerves_toolchain_arm_unknown_linux_gnueabihf"}]
35 + end
36 + end