From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:35010) by lists.gnu.org with esmtp (Exim 4.86_2) (envelope-from ) id 1hnkeC-0006zz-3N for guix-patches@gnu.org; Wed, 17 Jul 2019 10:11:10 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hnke6-0008J3-Uw for guix-patches@gnu.org; Wed, 17 Jul 2019 10:11:08 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:43938) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1hnke6-0008Iw-Rx for guix-patches@gnu.org; Wed, 17 Jul 2019 10:11:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1hnke6-0006Wt-La for guix-patches@gnu.org; Wed, 17 Jul 2019 10:11:02 -0400 Subject: [bug#36705] [PATCH] gnu: Add ghc-tasty-hspec Resent-Message-ID: Received: from eggs.gnu.org ([2001:470:142:3::10]:34759) by lists.gnu.org with esmtp (Exim 4.86_2) (envelope-from ) id 1hnkd5-0006Ox-7X for guix-patches@gnu.org; Wed, 17 Jul 2019 10:10:00 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hnkd4-0007oi-6B for guix-patches@gnu.org; Wed, 17 Jul 2019 10:09:59 -0400 Received: from mx1.mailbox.org ([80.241.60.212]:14006) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1hnkd4-0007oF-01 for guix-patches@gnu.org; Wed, 17 Jul 2019 10:09:58 -0400 From: Robert Vollmert Date: Wed, 17 Jul 2019 16:08:14 +0200 Message-Id: <20190717140814.24545-1-rob@vllmrt.net> MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 36705@debbugs.gnu.org Cc: Robert Vollmert * gnu/packages/haskell-check.scm (ghc-tasty-hspec): New field. --- This builds fine, but warns: Configuring tasty-hspec-1.1.5.1... Warning: This package indirectly depends on multiple versions of the same pack= age. This is very likely to cause a compile failure. package hspec-core (hspec-core-2.5.5-H06vLnMfEeIEsZFdji6h0O) requir= es clock-0.7.2-9qwmBbNbGzEOSffjlyarp package tasty (tasty-1.1.0.3-I8Vu9v0lHj8Jlg3jpKXavp) requires clock= -0.7.2-Cf9UTsaN2AjEpBnoMpmgkU Compare https://debbugs.gnu.org/cgi/bugreport.cgi?bug=3D36084 gnu/packages/haskell-check.scm | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/gnu/packages/haskell-check.scm b/gnu/packages/haskell-check.= scm index 589eee74d9..8833dd5d21 100644 --- a/gnu/packages/haskell-check.scm +++ b/gnu/packages/haskell-check.scm @@ -837,3 +837,37 @@ of generated values by construction. To get started quickly, see the examples: @uref{https://github.com/hedgehogqa/haskell-hedgehog/tree/master/hedgeho= g-example}") (license license:bsd-3))) + +(define-public ghc-tasty-hspec + (package + (name "ghc-tasty-hspec") + (version "1.1.5.1") + (source + (origin + (method url-fetch) + (uri (string-append + "https://hackage.haskell.org/package/tasty-hspec/tasty-hspe= c-" + version + ".tar.gz")) + (sha256 + (base32 + "0i9kdzjpk750sa078jj3iyhp72k0177zk7vxl131r6dkyz09x27y")))) + (build-system haskell-build-system) + (inputs + `(("ghc-hspec" ,ghc-hspec) + ("ghc-hspec-core" ,ghc-hspec-core) + ("ghc-quickcheck" ,ghc-quickcheck) + ("ghc-tasty" ,ghc-tasty) + ("ghc-tasty-smallcheck" ,ghc-tasty-smallcheck) + ("ghc-tasty-quickcheck" ,ghc-tasty-quickcheck))) + (arguments + `(#:cabal-revision + ("3" + "1wgz3z5bnq5qml8d0i18gvz30dmmax3686lmqz3vf4hxd3vqfkpj"))) + (home-page + "https://github.com/mitchellwrosen/tasty-hspec") + (synopsis + "Hspec support for the Tasty test framework.") + (description + "This package provides a Tasty provider for Hspec test suites.") + (license license:bsd-3))) --=20 2.20.1 (Apple Git-117)