summaryrefslogtreecommitdiffstats
path: root/pkgs/desktops/pantheon/nixpkgs_github_update/mix.exs
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/desktops/pantheon/nixpkgs_github_update/mix.exs')
-rw-r--r--pkgs/desktops/pantheon/nixpkgs_github_update/mix.exs28
1 files changed, 28 insertions, 0 deletions
diff --git a/pkgs/desktops/pantheon/nixpkgs_github_update/mix.exs b/pkgs/desktops/pantheon/nixpkgs_github_update/mix.exs
new file mode 100644
index 000000000000..3498c7066a43
--- /dev/null
+++ b/pkgs/desktops/pantheon/nixpkgs_github_update/mix.exs
@@ -0,0 +1,28 @@
+defmodule NixpkgsGitHubUpdate.MixProject do
+ use Mix.Project
+
+ def project do
+ [
+ app: :nixpkgs_github_update,
+ version: "0.1.0",
+ elixir: "~> 1.9",
+ escript: [main_module: NixpkgsGitHubUpdate.CLI],
+ start_permanent: Mix.env() == :prod,
+ deps: deps()
+ ]
+ end
+
+ # Run "mix help compile.app" to learn about applications.
+ def application do
+ [
+ extra_applications: [:logger, :inets, :ssl]
+ ]
+ end
+
+ # Run "mix help deps" to learn about dependencies.
+ defp deps do
+ [
+ {:poison, "~> 4.0.1"}
+ ]
+ end
+end