mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 23:46:13 -05:00
gnu: Add ghc-paths.
* gnu/packages/haskell.scm: (ghc-paths): New variable.
This commit is contained in:
parent
7d5baa300d
commit
0939da6e4d
1 changed files with 23 additions and 0 deletions
|
@ -253,4 +253,27 @@ (define-public ghc-mtl
|
|||
http://web.cecs.pdx.edu/~mpj/pubs/springschool.html.")
|
||||
(license bsd-3)))
|
||||
|
||||
(define-public ghc-paths
|
||||
(package
|
||||
(name "ghc-paths")
|
||||
(version "0.1.0.9")
|
||||
(outputs '("out" "doc"))
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (string-append
|
||||
"http://hackage.haskell.org/package/ghc-paths/ghc-paths-"
|
||||
version
|
||||
".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"0ibrr1dxa35xx20cpp8jzgfak1rdmy344dfwq4vlq013c6w8z9mg"))))
|
||||
(build-system haskell-build-system)
|
||||
(home-page "https://github.com/simonmar/ghc-paths")
|
||||
(synopsis
|
||||
"Knowledge of GHC's installation directories")
|
||||
(description
|
||||
"Knowledge of GHC's installation directories.")
|
||||
(license bsd-3)))
|
||||
|
||||
;;; haskell.scm ends here
|
||||
|
|
Loading…
Reference in a new issue