From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:55242) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jCddz-0006su-6s for guix-patches@gnu.org; Fri, 13 Mar 2020 02:18:04 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1jCddy-0005El-19 for guix-patches@gnu.org; Fri, 13 Mar 2020 02:18:03 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:52068) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1jCddx-0005Eb-Uv for guix-patches@gnu.org; Fri, 13 Mar 2020 02:18:01 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1jCddx-0006Ox-QA for guix-patches@gnu.org; Fri, 13 Mar 2020 02:18:01 -0400 Subject: [bug#40050] [PATCH] gnu: Add ghcid. Resent-Message-ID: Received: from eggs.gnu.org ([2001:470:142:3::10]:54391) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jCddG-0006rU-H8 for guix-patches@gnu.org; Fri, 13 Mar 2020 02:17:19 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1jCddF-00049H-AS for guix-patches@gnu.org; Fri, 13 Mar 2020 02:17:18 -0400 Received: from mout02.posteo.de ([185.67.36.66]:48931) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1jCddE-00044c-RJ for guix-patches@gnu.org; Fri, 13 Mar 2020 02:17:17 -0400 Received: from submission (posteo.de [89.146.220.130]) by mout02.posteo.de (Postfix) with ESMTPS id A360E2400E6 for ; Fri, 13 Mar 2020 07:17:14 +0100 (CET) From: brown121407@posteo.ro Date: Fri, 13 Mar 2020 08:17:55 +0200 Message-Id: <20200313061755.1853-1-brown121407@posteo.ro> 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: 40050@debbugs.gnu.org Cc: Alexandru-Sergiu Marton From: Alexandru-Sergiu Marton * gnu/packages/haskell-apps.scm (ghcid): New variable. --- gnu/packages/haskell-apps.scm | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/gnu/packages/haskell-apps.scm b/gnu/packages/haskell-apps.sc= m index 6005816260..58552666f1 100644 --- a/gnu/packages/haskell-apps.scm +++ b/gnu/packages/haskell-apps.scm @@ -266,6 +266,40 @@ unique algebra of patches called @url{http://darcs.n= et/Theory,Patchtheory}. @end enumerate") (license license:gpl2))) =20 +(define-public ghcid + (package + (name "ghcid") + (version "0.8.3") + (source + (origin + (method url-fetch) + (uri (string-append "https://hackage.haskell.org/package/ghcid/" = ; + "ghcid-" version ".tar.gz")) + (sha256 + (base32 + "1b8a8mx6z2ridw79gijjv90b2jgk0qrncvg0sjbmvyyyajx1h5f7")))) + (build-system haskell-build-system) + (inputs + `(("ghc-extra" ,ghc-extra) + ("ghc-ansi-terminal" ,ghc-ansi-terminal) + ("ghc-cmdargs" ,ghc-cmdargs) + ("ghc-fsnotify" ,ghc-fsnotify) + ("ghc-terminal-size" ,ghc-terminal-size))) + (native-inputs + `(("ghc-tasty" ,ghc-tasty) + ("ghc-tasty-hunit" ,ghc-tasty-hunit))) + (home-page + "https://github.com/ndmitchell/ghcid#readme") + (synopsis "GHCi based bare bones IDE") + (description + "Either \"GHCi as a daemon\" or \"GHC + a bit of an IDE\". A very = simple Haskell +development tool which shows you the errors in your project and updates = them whenever +you save. Run @code{ghcid --topmost --command=3Dghci}, where @code{--to= pmost} makes the +window on top of all others (Windows only) and @code{--command} is the c= ommand to start +GHCi on your project (defaults to @code{ghci} if you have a @file{.ghci}= file, or else +to @code{cabal repl}).") + (license license:bsd-3))) + (define-public git-annex (package (name "git-annex") --=20 2.25.1