Skip to content

Instantly share code, notes, and snippets.

@okeuday
Created October 13, 2014 20:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save okeuday/da6e7f651db939f3f91d to your computer and use it in GitHub Desktop.
Save okeuday/da6e7f651db939f3f91d to your computer and use it in GitHub Desktop.
hex.pm package file
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