mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: Add ghc-x11-xft.
* gnu/packages/haskell.scm (ghc-x11-xft): New variable. Signed-off-by: Eric Bavier <bavier@member.fsf.org>
This commit is contained in:
parent
720fb41c69
commit
c34507d662
1 changed files with 30 additions and 1 deletions
|
@ -18,12 +18,13 @@
|
|||
|
||||
(define-module (gnu packages haskell)
|
||||
#:use-module (ice-9 regex)
|
||||
#:use-module ((guix licenses) #:select (bsd-3))
|
||||
#:use-module ((guix licenses) #:select (bsd-3 lgpl2.1))
|
||||
#:use-module (guix packages)
|
||||
#:use-module (guix download)
|
||||
#:use-module (guix utils)
|
||||
#:use-module (guix build-system gnu)
|
||||
#:use-module (guix build-system haskell)
|
||||
#:use-module (gnu packages pkg-config)
|
||||
#:use-module (gnu packages perl)
|
||||
#:use-module (gnu packages compression)
|
||||
#:use-module (gnu packages elf)
|
||||
|
@ -529,6 +530,34 @@ (define-public ghc-x11
|
|||
bindings are a direct translation of the C bindings.")
|
||||
(license bsd-3)))
|
||||
|
||||
(define-public ghc-x11-xft
|
||||
(package
|
||||
(name "ghc-x11-xft")
|
||||
(version "0.3.1")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "http://hackage.haskell.org/package/X11-xft/"
|
||||
"X11-xft-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32 "1lgqb0s2qfwwgbvwxhjbi23rbwamzdi0l0slfr20c3jpcbp3zfjf"))))
|
||||
(propagated-inputs
|
||||
`(("ghc-x11" ,ghc-x11)
|
||||
("ghc-utf8-string" ,ghc-utf8-string)))
|
||||
(inputs
|
||||
`(("libx11" ,libx11)
|
||||
("libxft" ,libxft)
|
||||
("xproto" ,xproto)))
|
||||
(native-inputs
|
||||
`(("pkg-config" ,pkg-config)))
|
||||
(build-system haskell-build-system)
|
||||
(home-page "http://hackage.haskell.org/package/X11-xft")
|
||||
(synopsis "Bindings to Xft")
|
||||
(description
|
||||
"Bindings to the Xft, X Free Type interface library, and some Xrender
|
||||
parts.")
|
||||
(license lgpl2.1)))
|
||||
|
||||
(define-public ghc-zlib
|
||||
(package
|
||||
(name "ghc-zlib")
|
||||
|
|
Loading…
Reference in a new issue