2017-12-21 17:32:22 +00:00
|
|
|
require "language/haskell"
|
|
|
|
|
|
|
|
class Hlint < Formula
|
|
|
|
include Language::Haskell::Cabal
|
|
|
|
|
|
|
|
desc "Haskell source code suggestions"
|
|
|
|
homepage "https://github.com/ndmitchell/hlint"
|
2018-04-18 14:01:47 +00:00
|
|
|
url "https://hackage.haskell.org/package/hlint-2.1.3/hlint-2.1.3.tar.gz"
|
|
|
|
sha256 "6abc547c380937af2bb51570425c7edf6402ee051d6e1a6f4417d44d125a2722"
|
2017-12-21 17:32:22 +00:00
|
|
|
head "https://github.com/ndmitchell/hlint.git"
|
|
|
|
|
2018-01-19 13:07:17 +00:00
|
|
|
bottle do
|
2018-04-17 06:44:31 +00:00
|
|
|
sha256 "a5f2aba78ae640f3e78b7aaab7820dc0050323ca8d42c19ecf31851592f75487" => :high_sierra
|
|
|
|
sha256 "dfabda3fe0dd5a46451f82fa8f2fac43192c582e2182384cc54ad9c9793cdd3f" => :sierra
|
|
|
|
sha256 "f5ee47f18b23134359b895106211984e19b97bad9cf177367b0b5b154eaba0fb" => :el_capitan
|
2018-01-19 13:07:17 +00:00
|
|
|
end
|
|
|
|
|
2017-12-21 17:32:22 +00:00
|
|
|
depends_on "cabal-install" => :build
|
|
|
|
depends_on "ghc" => :build
|
|
|
|
|
|
|
|
def install
|
|
|
|
install_cabal_package :using => "happy"
|
|
|
|
man1.install "data/hlint.1"
|
|
|
|
end
|
|
|
|
|
|
|
|
test do
|
|
|
|
(testpath/"test.hs").write <<~EOS
|
|
|
|
main = do putStrLn "Hello World"
|
|
|
|
EOS
|
|
|
|
assert_match "Redundant do", shell_output("#{bin}/hlint test.hs", 1)
|
|
|
|
end
|
|
|
|
end
|