me
/
guix
Archived
1
0
Fork 0

gnu: Add wxwidgets-3.1.

* gnu/packages/wxwidgets.scm (wxwidgets-3.1): New variable.
master
Thomas Danckaert 2017-04-20 18:33:07 +02:00 committed by Thomas Danckaert
parent b5b20bda17
commit 1d5b3f432e
No known key found for this signature in database
GPG Key ID: 5C3B064C724A5726
1 changed files with 23 additions and 0 deletions

View File

@ -5,6 +5,7 @@
;;; Copyright © 2016 Danny Milosavljevic <dannym@scratchpost.org>
;;; Copyright © 2017 Rene Saavedra <rennes@openmailbox.org>
;;; Copyright © 2017 Efraim Flashner <efraim@flashner.co.il>
;;; Copyright © 2017 Thomas Danckaert <post@thomasdanckaert.be>
;;;
;;; This file is part of GNU Guix.
;;;
@ -28,6 +29,7 @@
#:use-module (guix build-system glib-or-gtk)
#:use-module (guix build-system python)
#:use-module (guix build utils)
#:use-module (guix utils)
#:use-module (gnu packages)
#:use-module (gnu packages compression)
#:use-module (gnu packages databases)
@ -102,6 +104,27 @@ and many other languages.")
(package-inputs wxwidgets))))
(name "wxwidgets-gtk2")))
;; Development version of wxWidgets, required to build against gstreamer-1.x.
;; This can be removed when wxWidgets is updated to the next stable version.
(define-public wxwidgets-3.1
(package (inherit wxwidgets)
(version "3.1.0")
(source
(origin
(method url-fetch)
(uri (string-append "https://github.com/wxWidgets/wxWidgets/archive/v"
version ".tar.gz"))
(file-name (string-append "wxwidgets-" version ".tar.gz"))
(sha256
(base32 "1yan5ysjwh6a7xw82sfjd1xn0nsy1dn2s0cx9ac7cw19191blc3y"))))
(inputs `(("gstreamer" ,gstreamer)
("gst-plugins-base" ,gst-plugins-base)
,@(package-inputs wxwidgets)))
(arguments
(substitute-keyword-arguments (package-arguments wxwidgets)
((#:configure-flags flags)
`(cons "--enable-mediactrl" ,flags))))))
(define-public python2-wxpython
(package
(name "python2-wxpython")