unofficial mirror of guix-devel@gnu.org 
 help / color / mirror / code / Atom feed
* Re: 04/15: gnu: ghc-doctest: Update to 0.16.3.
       [not found] ` <20201101133611.2636F209B1@vcs0.savannah.gnu.org>
@ 2020-11-01 18:14   ` Ricardo Wurmus
  0 siblings, 0 replies; 5+ messages in thread
From: Ricardo Wurmus @ 2020-11-01 18:14 UTC (permalink / raw)
  To: Carlo Holl, Christopher Baines; +Cc: guix-devel


guix-commits@gnu.org writes:

> cbaines pushed a commit to branch master
> in repository guix.
>
> commit 232eab1d30ac9970faf303034bf994452e8cb905
> Author: Carlo Holl <carloholl@gmail.com>
> AuthorDate: Sat Oct 31 19:02:25 2020 -0700
>
>     gnu: ghc-doctest: Update to 0.16.3.
>     
>     * gnu/packages/haskell-xyz.scm (ghc-doctest): Update to 0.16.3.
>     [inputs,native-inputs]: Replace with what is generated by guix import.

I’m not sure this is a good idea.  The version of doctest in Stackage
and LTSHaskell is 0.16.0.1.  We need to ensure that all Haskell packages
match the versions of the same LTSHaskell release.

-- 
Ricardo


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: 06/15: gnu: Add ghc-lucid.
       [not found] ` <20201101133611.DEFE5209B1@vcs0.savannah.gnu.org>
@ 2020-11-01 18:16   ` Ricardo Wurmus
  0 siblings, 0 replies; 5+ messages in thread
From: Ricardo Wurmus @ 2020-11-01 18:16 UTC (permalink / raw)
  To: Carlo Holl, Christopher Baines; +Cc: guix-devel


guix-commits@gnu.org writes:

> cbaines pushed a commit to branch master
> in repository guix.
>
> commit 27baf2a137e3438e1d0333b2de03b0627c8bdd67
> Author: Carlo Holl <carloholl@gmail.com>
> AuthorDate: Sat Oct 31 19:02:27 2020 -0700
>
>     gnu: Add ghc-lucid.
>     
>     * gnu/packages/haskell-xyz.scm (ghc-lucid): New variable.
>     
>     Signed-off-by: Christopher Baines <mail@cbaines.net>
>
>  gnu/packages/haskell-xyz.scm | 42 ++++++++++++++++++++++++++++++++++++++++++
>  1 file changed, 42 insertions(+)
>
> diff --git a/gnu/packages/haskell-xyz.scm b/gnu/packages/haskell-xyz.scm
> index 21b0f2f..6a8c7ed 100644
> --- a/gnu/packages/haskell-xyz.scm
> +++ b/gnu/packages/haskell-xyz.scm
> @@ -7284,6 +7284,48 @@ Transformers\" available @uref{http://okmij.org/ftp/papers/LogicT.pdf,
>  online}.")
>      (license license:bsd-3)))
>  
> +(define-public ghc-lucid
> +  (package
> +    (name "ghc-lucid")
> +    (version "2.9.12")

LTSHaskell has this at version 2.9.11, not 2.9.12.  We need to make sure
that all Haskell packages remain compatible by keeping them all on the
same LTSHaskell release.

-- 
Ricardo


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: 05/15: gnu: Add ghc-hspec-megaparsec.
       [not found] ` <20201101133611.84884209B1@vcs0.savannah.gnu.org>
@ 2020-11-01 18:17   ` Ricardo Wurmus
  0 siblings, 0 replies; 5+ messages in thread
From: Ricardo Wurmus @ 2020-11-01 18:17 UTC (permalink / raw)
  To: Carlo Holl, Christopher Baines; +Cc: guix-devel


guix-commits@gnu.org writes:

> cbaines pushed a commit to branch master
> in repository guix.
>
> commit e16f7de88f1ef9b9e5c83e40f17255d8c60a8420
> Author: Carlo Holl <carloholl@gmail.com>
> AuthorDate: Sat Oct 31 19:02:26 2020 -0700
>
>     gnu: Add ghc-hspec-megaparsec.
>     
>     * gnu/packages/haskell-xyz.scm (ghc-hspec-megaparsec): New variable.
>     
>     Signed-off-by: Christopher Baines <mail@cbaines.net>
> ---
>  gnu/packages/haskell-xyz.scm | 28 ++++++++++++++++++++++++++++
>  1 file changed, 28 insertions(+)
>
> diff --git a/gnu/packages/haskell-xyz.scm b/gnu/packages/haskell-xyz.scm
> index e6a8580..21b0f2f 100644
> --- a/gnu/packages/haskell-xyz.scm
> +++ b/gnu/packages/haskell-xyz.scm
> @@ -5928,6 +5928,34 @@ are described in a file named @code{package.yaml}.  Both @code{cabal2nix} and
>  @code{package.yaml}.")
>      (license license:expat)))
>  
> +(define-public ghc-hspec-megaparsec
> +  (package
> +    (name "ghc-hspec-megaparsec")
> +    (version "2.0.1")

LTSHaskell has this at version 2.0.0.

-- 
Ricardo


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: 09/15: gnu: Add ghc-tabular.
       [not found] ` <20201101133613.0DA4D209B1@vcs0.savannah.gnu.org>
@ 2020-11-01 18:18   ` Ricardo Wurmus
  2020-11-02 16:58     ` Lint checker for Stackage/LTSHaskell package versions? Ludovic Courtès
  0 siblings, 1 reply; 5+ messages in thread
From: Ricardo Wurmus @ 2020-11-01 18:18 UTC (permalink / raw)
  To: Carlo Holl, Christopher Baines; +Cc: guix-devel


guix-commits@gnu.org writes:

> cbaines pushed a commit to branch master
> in repository guix.
>
> commit 094a9d7ac490e5b745deb0a8be050d6572f71a60
> Author: Carlo Holl <carloholl@gmail.com>
> AuthorDate: Sat Oct 31 19:02:30 2020 -0700
>
>     gnu: Add ghc-tabular.
>     
>     * gnu/packages/haskell-xyz.scm (ghc-tabular): New variable.
>     
>     Signed-off-by: Christopher Baines <mail@cbaines.net>
> ---
>  gnu/packages/haskell-xyz.scm | 43 +++++++++++++++++++++++++++++++++++++++++++
>  1 file changed, 43 insertions(+)
>
> diff --git a/gnu/packages/haskell-xyz.scm b/gnu/packages/haskell-xyz.scm
> index cb24940..71cf860 100644
> --- a/gnu/packages/haskell-xyz.scm
> +++ b/gnu/packages/haskell-xyz.scm
> @@ -12798,6 +12798,49 @@ Unlike the filepath package, this package does not simply reuse String,
>  increasing type safety.")
>      (license license:expat)))
>  
> +(define-public ghc-tabular
> +  (package
> +    (name "ghc-tabular")
> +    (version "0.2.2.8")

LTSHaskell has this at 0.2.2.7.

-- 
Ricardo


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Lint checker for Stackage/LTSHaskell package versions?
  2020-11-01 18:18   ` 09/15: gnu: Add ghc-tabular Ricardo Wurmus
@ 2020-11-02 16:58     ` Ludovic Courtès
  0 siblings, 0 replies; 5+ messages in thread
From: Ludovic Courtès @ 2020-11-02 16:58 UTC (permalink / raw)
  To: Ricardo Wurmus; +Cc: guix-devel, Carlo Holl

Hi,

Ricardo Wurmus <rekado@elephly.net> skribis:

>> +(define-public ghc-tabular
>> +  (package
>> +    (name "ghc-tabular")
>> +    (version "0.2.2.8")
>
> LTSHaskell has this at 0.2.2.7.

How hard would it be to add a ‘lint’ checker for that?  After all we
already have the updater code.  That’d be very helpful!

Ludo’.


^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2020-11-02 16:59 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <20201101133608.14148.65999@vcs0.savannah.gnu.org>
     [not found] ` <20201101133611.2636F209B1@vcs0.savannah.gnu.org>
2020-11-01 18:14   ` 04/15: gnu: ghc-doctest: Update to 0.16.3 Ricardo Wurmus
     [not found] ` <20201101133611.DEFE5209B1@vcs0.savannah.gnu.org>
2020-11-01 18:16   ` 06/15: gnu: Add ghc-lucid Ricardo Wurmus
     [not found] ` <20201101133611.84884209B1@vcs0.savannah.gnu.org>
2020-11-01 18:17   ` 05/15: gnu: Add ghc-hspec-megaparsec Ricardo Wurmus
     [not found] ` <20201101133613.0DA4D209B1@vcs0.savannah.gnu.org>
2020-11-01 18:18   ` 09/15: gnu: Add ghc-tabular Ricardo Wurmus
2020-11-02 16:58     ` Lint checker for Stackage/LTSHaskell package versions? Ludovic Courtès

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).