guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

117/154: gnu: Add hlint.


From: Paul
Subject: 117/154: gnu: Add hlint.
Date: Thu, 22 Oct 2015 13:52:26 +0000

toothbrush pushed a commit to branch wip-haskell-platform-7.10.2-a
in repository guix.

commit 654ac78e49365ee45796847f8e7b97bafe70a6df
Author: Paul van der Walt <address@hidden>
Date:   Thu Oct 22 13:18:11 2015 +0200

    gnu: Add hlint.
    
    * gnu/packages/haskell.scm (hlint): New variable.
---
 gnu/packages/haskell.scm |   28 ++++++++++++++++++++++++++++
 1 files changed, 28 insertions(+), 0 deletions(-)

diff --git a/gnu/packages/haskell.scm b/gnu/packages/haskell.scm
index 4e9898e..2c7a62b 100644
--- a/gnu/packages/haskell.scm
+++ b/gnu/packages/haskell.scm
@@ -494,6 +494,34 @@ are supported.  Apart from these standard extensions, it 
also handles regular
 patterns as per the HaRP extension as well as HSX-style embedded XML syntax.")
     (license bsd-3)))
 
+(define-public hlint
+  (package
+    (name "hlint")
+    (version "1.9.21")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append
+             "http://hackage.haskell.org/package/"; name
+             "/" name "-" version ".tar.gz"))
+       (sha256
+        (base32
+         "14v3rdjjlml9nimdk7d5dvir2bw78ai49yylvms9lnzmw29s3546"))))
+    (build-system haskell-build-system)
+    (inputs
+     `(("cpphs" ,cpphs)
+       ("ghc-cmdargs" ,ghc-cmdargs)
+       ("ghc-haskell-src-exts" ,ghc-haskell-src-exts)
+       ("ghc-uniplate" ,ghc-uniplate)
+       ("ghc-ansi-terminal" ,ghc-ansi-terminal)
+       ("ghc-extra" ,ghc-extra)
+       ("ghc-hscolour" ,ghc-hscolour)))
+    (home-page "http://community.haskell.org/~ndm/hlint/";)
+    (synopsis "Source code suggestions")
+    (description "HLint gives suggestions on how to improve your Haskell
+source code.")
+    (license bsd-3)))
+
 (define-public cpphs
   (package
     (name "cpphs")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]