Created
October 13, 2014 20:28
-
-
Save okeuday/da6e7f651db939f3f91d to your computer and use it in GitHub Desktop.
hex.pm package file
This file contains hidden or 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
defmodule ErlangSyslog.Mixfile do | |
use Mix.Project | |
def project do | |
[app: :syslog, | |
version: "1.0.3", | |
description: description, | |
package: package, | |
deps: deps] | |
end | |
defp deps do | |
[] | |
end | |
defp description do | |
"Erlang port driver for interacting with syslog via syslog" | |
end | |
defp package do | |
[files: ~w(src c_src README.md), | |
contributors: ["Andrew Thompson"], | |
licenses: ["BSD"], | |
links: %{"GitHub" => "https://github.com/Vagabond/erlang-syslog"}] | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment