From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:59752) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1ipwIX-0000vT-26 for guix-patches@gnu.org; Fri, 10 Jan 2020 10:34:06 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ipwIV-0003pX-Ml for guix-patches@gnu.org; Fri, 10 Jan 2020 10:34:04 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:48870) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1ipwIV-0003nn-8l for guix-patches@gnu.org; Fri, 10 Jan 2020 10:34:03 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1ipwIV-0001EF-63 for guix-patches@gnu.org; Fri, 10 Jan 2020 10:34:03 -0500 Subject: [bug#39071] [PATCH] Add ghc-clay Resent-Message-ID: Received: from eggs.gnu.org ([2001:470:142:3::10]:56796) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1ipuRw-0007v2-4m for guix-patches@gnu.org; Fri, 10 Jan 2020 08:35:41 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ipuRu-0006Eh-HW for guix-patches@gnu.org; Fri, 10 Jan 2020 08:35:39 -0500 Received: from mail-40135.protonmail.ch ([185.70.40.135]:19818) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1ipuRt-00063s-WA for guix-patches@gnu.org; Fri, 10 Jan 2020 08:35:38 -0500 Date: Fri, 10 Jan 2020 13:35:25 +0000 Message-ID: <0Aa4s7vRDfoPVcvl3y8kcbTAk0hCT_PsUoVeTa4d1Y2sKW8kViVWdwmBR-6EY-3VtDvH5K6ry-CQh-BGWuycchPAZKTE6CEyZDyUBNZpfrE=@protonmail.ch> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 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" Reply-to: Guillaume Salvan , Guillaume Salvan via Guix-patches From: Guillaume Salvan via Guix-patches via To: 39071@debbugs.gnu.org Cc: Guillaume Salvan --- gnu/packages/haskell-web.scm | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/gnu/packages/haskell-web.scm b/gnu/packages/haskell-web.scm index 5888e8542e..793068e46a 100644 --- a/gnu/packages/haskell-web.scm +++ b/gnu/packages/haskell-web.scm @@ -1595,3 +1595,27 @@ cookies, serving files, and more.") (description "Haskell library which exposes zero-copy sendfile functionality in a = portable way.") (license license:bsd-3))) + +(define-public ghc-clay + (package + (name "ghc-clay") + (version "0.13.3") + (source + (origin + (method url-fetch) + (uri (string-append + "https://hackage.haskell.org/package/clay/clay-" + version + ".tar.gz")) + (sha256 + (base32 + "192lsbyj6azjs2ygpx4i47fyr8zfmvwcas8mia07ndqglk2c9csx")))) + (build-system haskell-build-system) + (arguments `(#:tests? #f)) ;; Fix tests + (home-page "http://fvisser.nl/clay/") + (synopsis + "CSS preprocessor as embedded Haskell") + (description + "Clay is a CSS preprocessor like LESS and Sass, +but implemented as an embedded domain specific language.") + (license license:bsd-3))) --=20 2.24.1