mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: wxwidgets: Enable webview support.
* gnu/packages/wxwidgets.scm (wxwidgets)[inputs]: Add webkitgtk-2.4. [arguments]: Add configure flags to enable webview via the webkitgtk backend.
This commit is contained in:
parent
2729509003
commit
fc7c74e43d
1 changed files with 8 additions and 2 deletions
|
@ -1,5 +1,6 @@
|
|||
;;; GNU Guix --- Functional package management for GNU
|
||||
;;; Copyright © 2015 Taylan Ulrich Bayırlı/Kammer <taylanbayirli@gmail.com>
|
||||
;;; Copyright © 2016 Ricardo Wurmus <rekado@elephly.net>
|
||||
;;;
|
||||
;;; This file is part of GNU Guix.
|
||||
;;;
|
||||
|
@ -31,6 +32,7 @@ (define-module (gnu packages wxwidgets)
|
|||
#:use-module (gnu packages image)
|
||||
#:use-module (gnu packages pkg-config)
|
||||
#:use-module (gnu packages sdl)
|
||||
#:use-module (gnu packages webkit)
|
||||
#:use-module (gnu packages xorg))
|
||||
|
||||
(define-public wxwidgets
|
||||
|
@ -45,7 +47,6 @@ (define-public wxwidgets
|
|||
(sha256
|
||||
(base32 "0paq27brw4lv8kspxh9iklpa415mxi8zc117vbbbhfjgapf7js1l"))))
|
||||
(build-system glib-or-gtk-build-system)
|
||||
;; TODO: add WebKit
|
||||
(inputs
|
||||
`(("glu" ,glu)
|
||||
;; XXX gstreamer-0.10 builds fail
|
||||
|
@ -56,12 +57,17 @@ (define-public wxwidgets
|
|||
("libsm" ,libsm)
|
||||
("libtiff" ,libtiff)
|
||||
("mesa" ,mesa)
|
||||
("webkitgtk" ,webkitgtk-2.4)
|
||||
("sdl" ,sdl)))
|
||||
(native-inputs
|
||||
`(("pkg-config" ,pkg-config)))
|
||||
(arguments
|
||||
'(#:configure-flags
|
||||
'("--with-regex=sys" "--with-libmspack" "--with-sdl")
|
||||
'("--with-regex=sys" "--with-libmspack"
|
||||
"--with-sdl"
|
||||
"--enable-webview"
|
||||
"--enable-webkit"
|
||||
"--enable-webviewwebkit")
|
||||
#:make-flags
|
||||
(list (string-append "LDFLAGS=-Wl,-rpath="
|
||||
(assoc-ref %outputs "out") "/lib"))
|
||||
|
|
Loading…
Reference in a new issue