[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
30/40: gnu: Add ghc-system-filepath-bootstrap.
From: |
Leo Famulari |
Subject: |
30/40: gnu: Add ghc-system-filepath-bootstrap. |
Date: |
Fri, 23 Sep 2016 00:10:19 +0000 (UTC) |
lfam pushed a commit to branch master
in repository guix.
commit ddd5955b1ed0b4a3d67d91d027ee88165bf865e3
Author: ng0 <address@hidden>
Date: Sun Sep 18 16:10:10 2016 +0000
gnu: Add ghc-system-filepath-bootstrap.
* gnu/packages/haskell.scm (ghc-system-filepath-bootstrap): New variable.
Signed-off-by: Leo Famulari <address@hidden>
---
gnu/packages/haskell.scm | 31 +++++++++++++++++++++++++++++++
1 file changed, 31 insertions(+)
diff --git a/gnu/packages/haskell.scm b/gnu/packages/haskell.scm
index 92f3ccf..00f5872 100644
--- a/gnu/packages/haskell.scm
+++ b/gnu/packages/haskell.scm
@@ -7125,4 +7125,35 @@ a vocabulary for working with them.")
instance of @code{MonadBase} or @code{MonadBaseControl}.")
(license license:bsd-3)))
+;; Ghc-shelly depends on ghc-system-filepath and ghc-system-fileio, who in
turn depend on
+;; ghc-chell and ghc-chell-quickcheck for the test phase. Ghc-chell depends on
ghc-options
+;; which depends on ghc-chell and ghc-chell-quickcheck.
+;; Therefore we bootstrap it with tests disabled.
+(define ghc-system-filepath-bootstrap
+ (package
+ (name "ghc-system-filepath-bootstrap")
+ (version "0.4.13.4")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+
"https://hackage.haskell.org/package/system-filepath/system-filepath-"
+ version ".tar.gz"))
+ (sha256
+ (base32
+ "1yy5zsmmimhg6iaw9fmpwrxvxrgi5s6bfyqfihdsnx4bjvn7sp9l"))))
+ (build-system haskell-build-system)
+ (arguments
+ `(#:tests? #f))
+ (inputs
+ `(("ghc-text" ,ghc-text)
+ ("ghc-quickcheck" ,ghc-quickcheck)))
+ (home-page "https://github.com/fpco/haskell-filesystem")
+ (synopsis "High-level, byte-based file and directory path manipulations")
+ (description
+ "Provides a FilePath datatype and utility functions for operating on it.
+Unlike the filepath package, this package does not simply reuse String,
+increasing type safety.")
+ (license license:expat)))
+
;;; haskell.scm ends here
- 22/40: gnu: Add ghc-process., (continued)
- 22/40: gnu: Add ghc-process., Leo Famulari, 2016/09/22
- 14/40: gnu: Add ghc-tar., Leo Famulari, 2016/09/22
- 25/40: gnu: Add ghc-fgl-arbitrary., Leo Famulari, 2016/09/22
- 27/40: gnu: Add ghc-array., Leo Famulari, 2016/09/22
- 17/40: gnu: Add ghc-patience., Leo Famulari, 2016/09/22
- 18/40: gnu: Add ghc-monads-tf., Leo Famulari, 2016/09/22
- 24/40: gnu: ghc-fgl: Update to 5.5.3.0., Leo Famulari, 2016/09/22
- 15/40: gnu: Add ghc-transformers., Leo Famulari, 2016/09/22
- 16/40: gnu: Add ghc-findbin., Leo Famulari, 2016/09/22
- 34/40: gnu: Add ghc-chell., Leo Famulari, 2016/09/22
- 30/40: gnu: Add ghc-system-filepath-bootstrap.,
Leo Famulari <=
- 36/40: gnu: Add ghc-chell-quickcheck., Leo Famulari, 2016/09/22
- 38/40: gnu: Add ghc-system-filepath., Leo Famulari, 2016/09/22
- 35/40: gnu: Add ghc-chell-quickcheck-bootstrap., Leo Famulari, 2016/09/22
- 37/40: gnu: Add ghc-options., Leo Famulari, 2016/09/22
- 28/40: gnu: Add ghc-constraints., Leo Famulari, 2016/09/22
- 26/40: gnu: Add ghc-graphviz., Leo Famulari, 2016/09/22
- 31/40: gnu: Add ghc-system-fileio-bootstrap., Leo Famulari, 2016/09/22
- 40/40: gnu: Add ghc-transformers-0.4.2.0., Leo Famulari, 2016/09/22
- 39/40: gnu: Add ghc-system-fileio., Leo Famulari, 2016/09/22