mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-25 20:19:18 -05:00
gnu: Add ghc-mountpoints.
* gnu/packages/haskell-xyz.scm (ghc-mountpoints): New variable.
This commit is contained in:
parent
04d8f94cf1
commit
c00d001d79
1 changed files with 23 additions and 0 deletions
|
@ -27,6 +27,7 @@
|
|||
;;; Copyright © 2020 Nicolas Goaziou <mail@nicolasgoaziou.fr>
|
||||
;;; Copyright © 2020 Alexandru-Sergiu Marton <brown121407@member.fsf.org>
|
||||
;;; Copyright © 2020 Carlo Holl <carloholl@gmail.com>
|
||||
;;; Copyright © 2020 Christopher Lemmer Webber <cwebber@dustycloud.org>
|
||||
;;;
|
||||
;;; This file is part of GNU Guix.
|
||||
;;;
|
||||
|
@ -8306,6 +8307,28 @@ (define-public ghc-monoid-extras
|
|||
\"cut\" monoids.")
|
||||
(license license:bsd-3)))
|
||||
|
||||
(define-public ghc-mountpoints
|
||||
(package
|
||||
(name "ghc-mountpoints")
|
||||
(version "1.0.2")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (string-append
|
||||
"https://hackage.haskell.org/package/mountpoints/mountpoints-"
|
||||
version
|
||||
".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"1hnm31pqcffphyc463wf0vbik9fzm5lb2r4wjdc1y4dqzmjdzz37"))))
|
||||
(build-system haskell-build-system)
|
||||
(home-page
|
||||
"http://hackage.haskell.org/package/mountpoints")
|
||||
(synopsis "Haskell library for listing mount points")
|
||||
(description "This library provides Haskell bindings for checking
|
||||
currently mounted filesystems.")
|
||||
(license license:lgpl2.1+)))
|
||||
|
||||
(define-public ghc-mtl-compat
|
||||
(package
|
||||
(name "ghc-mtl-compat")
|
||||
|
|
Loading…
Reference in a new issue