start working on gi-gdk
parent
471a8d7bb5
commit
b470e21a06
|
@ -1,4 +1,5 @@
|
||||||
;;; Copyright © 2022 Anders Ågren Thuné <anders.agren-thune@it.uu.se>
|
;;; Copyright © 2022 Anders Ågren Thuné <anders.agren-thune@it.uu.se>
|
||||||
|
;;; Copyright © 2024-present Hashirama Senju
|
||||||
|
|
||||||
(define-module (ajatt packages haskell)
|
(define-module (ajatt packages haskell)
|
||||||
#:use-module ((guix licenses) #:prefix license:)
|
#:use-module ((guix licenses) #:prefix license:)
|
||||||
|
@ -716,7 +717,7 @@
|
||||||
(inputs
|
(inputs
|
||||||
(list
|
(list
|
||||||
freetype
|
freetype
|
||||||
;; todo add gi-freetype2 (needs packaging)
|
ghc-gi-freetype2
|
||||||
ghc-haskell-gi-base
|
ghc-haskell-gi-base
|
||||||
ghc-haskell-gi
|
ghc-haskell-gi
|
||||||
ghc-haskell-gi-overloading
|
ghc-haskell-gi-overloading
|
||||||
|
@ -800,7 +801,7 @@
|
||||||
version
|
version
|
||||||
".tar.gz"))
|
".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "0qvz1r3xc4rz2fvaw1mimwn39xim55zn6zhbkavw2n5jm6xnydkh"))))
|
(base32 "1kp3jnnjik1caiax3j548aypn77qzi1l8r9b2zki95s2yg5rpv9p"))))
|
||||||
(build-system haskell-build-system)
|
(build-system haskell-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
'(#:phases
|
'(#:phases
|
||||||
|
@ -816,6 +817,7 @@
|
||||||
ghc-haskell-gi-overloading
|
ghc-haskell-gi-overloading
|
||||||
ghc-gi-gobject
|
ghc-gi-gobject
|
||||||
ghc-gi-glib
|
ghc-gi-glib
|
||||||
|
ghc-gi-gio
|
||||||
ghc-gi-harfbuzz
|
ghc-gi-harfbuzz
|
||||||
gobject-introspection
|
gobject-introspection
|
||||||
pango))
|
pango))
|
||||||
|
@ -851,10 +853,21 @@
|
||||||
ghc-gi-gdkpixbuf
|
ghc-gi-gdkpixbuf
|
||||||
ghc-gi-gobject
|
ghc-gi-gobject
|
||||||
ghc-gi-glib
|
ghc-gi-glib
|
||||||
|
ghc-transformers
|
||||||
|
ghc-bytestring-builder
|
||||||
gobject-introspection
|
gobject-introspection
|
||||||
gtk+))
|
;; needs ghc-gi-grapehene and ghc-gi-gsk
|
||||||
|
gtk))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list pkg-config))
|
(list pkg-config
|
||||||
|
gtk)) ;; was gtk+, but in guix gtk is the name for gtk-4
|
||||||
|
(arguments
|
||||||
|
'(#:phases
|
||||||
|
(modify-phases %standard-phases
|
||||||
|
(add-before 'configure 'set-configure-environment-variables
|
||||||
|
(lambda _
|
||||||
|
(setenv "GI_TYPELIB_PATH" (getenv "GI_TYPELIB_PATH"))
|
||||||
|
#t)))))
|
||||||
(home-page "https://github.com/haskell-gi/haskell-gi")
|
(home-page "https://github.com/haskell-gi/haskell-gi")
|
||||||
(synopsis "Gdk bindings")
|
(synopsis "Gdk bindings")
|
||||||
(description "Bindings for Gdk, autogenerated by haskell-gi.")
|
(description "Bindings for Gdk, autogenerated by haskell-gi.")
|
||||||
|
@ -1184,5 +1197,4 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
;;ghc-gi-gtk
|
ghc-gi-gtk
|
||||||
ghc-gi-freetype2
|
|
||||||
|
|
Loading…
Reference in New Issue