guix-commits
[Top][All Lists]
Advanced

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

268/272: gnu: shellcheck: Update to 0.5.0.


From: Ricardo Wurmus
Subject: 268/272: gnu: shellcheck: Update to 0.5.0.
Date: Mon, 1 Oct 2018 06:13:59 -0400 (EDT)

rekado pushed a commit to branch master
in repository guix.

commit eaa1f873e69c64e5d7f7535e95f6ae0be75c3ac9
Author: 宋文武 <address@hidden>
Date:   Sun Sep 30 20:05:55 2018 +0800

    gnu: shellcheck: Update to 0.5.0.
    
    * gnu/packages/haskell.scm (shellcheck): Update to 0.5.0.
    [source]: Use tarball from hackage.
    [inputs]: Add ghc-aeson.  Remove ghc-json.
---
 gnu/packages/haskell.scm | 13 +++++++------
 1 file changed, 7 insertions(+), 6 deletions(-)

diff --git a/gnu/packages/haskell.scm b/gnu/packages/haskell.scm
index 0e2dfd8..df0190d 100644
--- a/gnu/packages/haskell.scm
+++ b/gnu/packages/haskell.scm
@@ -8489,20 +8489,21 @@ generated SQL and optimize it for your backend.")
 (define-public shellcheck
   (package
     (name "shellcheck")
-    (version "0.4.6")
+    (version "0.5.0")
     (source
      (origin
        (method url-fetch)
-       (uri (string-append "https://github.com/koalaman/shellcheck/archive/";
-                           "v" version ".tar.gz"))
+       (uri (string-append
+             "https://hackage.haskell.org/package/ShellCheck/ShellCheck-";
+             version ".tar.gz"))
        (sha256
         (base32
-         "1qkd69lc34n3l23ss9rq1azvx49bfq4hi4bmaj76rgxybscxhg0w"))
+         "0z1hscbr11hwkq8k1v0vaa947hb9m6k4cm831jk1gpj8dxrk151b"))
        (file-name (string-append name "-" version ".tar.gz"))))
     (build-system haskell-build-system)
     (inputs
-     `(("ghc-quickcheck" ,ghc-quickcheck)
-       ("ghc-json" ,ghc-json)
+     `(("ghc-aeson" ,ghc-aeson)
+       ("ghc-quickcheck" ,ghc-quickcheck)
        ("ghc-parsec" ,ghc-parsec)
        ("ghc-regex-tdfa" ,ghc-regex-tdfa)))
     (home-page "https://github.com/koalaman/shellcheck";)



reply via email to

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