From a8dd9bc2656ef43ac850de6538911979a2459d8a Mon Sep 17 00:00:00 2001 From: Franco Bulgarelli Date: Wed, 27 Dec 2017 12:33:08 -0300 Subject: [PATCH] Fixing .cabal errors --- mulang.cabal | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/mulang.cabal b/mulang.cabal index 295e49dce..d6f98eb4f 100644 --- a/mulang.cabal +++ b/mulang.cabal @@ -1,7 +1,7 @@ name: mulang version: 3.5.1 -synopsis: The Mu Language, a non-computable extended Lambda Calculus --- description: +synopsis: An intermediate language designed to perform advanced code analysis +description: Mulang is an intermediate language, a combinators library for static code analysis and a multilanguage comand line tool license: GPL license-file: LICENSE.txt author: Franco Leonardo Bulgarelli @@ -25,7 +25,6 @@ library -fno-warn-missing-pattern-synonym-signatures -fwarn-tabs -funbox-strict-fields - -O exposed-modules: Control.Fallible @@ -64,7 +63,7 @@ library Language.Mulang.Analyzer.DomainLanguageCompiler Language.Mulang.Analyzer.SmellsAnalyzer build-depends: - base , + base <= 5, bytestring , text , unordered-containers , @@ -91,7 +90,7 @@ executable mulang default-language: Haskell2010 build-depends: - base , + base <= 5, bytestring , text , aeson , @@ -113,7 +112,6 @@ executable mulang -fwarn-tabs -funbox-strict-fields -threaded - -O test-suite spec type: exitcode-stdio-1.0 @@ -128,11 +126,10 @@ test-suite spec -fwarn-tabs -funbox-strict-fields -threaded - -O hs-source-dirs: spec main-is: Spec.hs build-depends: - base , + base <= 5, bytestring , text , aeson ,