[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
05/07: gnu: Add wxwidgets-3.1.
From: |
Thomas Danckaert |
Subject: |
05/07: gnu: Add wxwidgets-3.1. |
Date: |
Wed, 10 May 2017 03:33:34 -0400 (EDT) |
thomasd pushed a commit to branch master
in repository guix.
commit 1d5b3f432efa59ea7604380ca3fd0f8771ae3ecf
Author: Thomas Danckaert <address@hidden>
Date: Thu Apr 20 18:33:07 2017 +0200
gnu: Add wxwidgets-3.1.
* gnu/packages/wxwidgets.scm (wxwidgets-3.1): New variable.
---
gnu/packages/wxwidgets.scm | 23 +++++++++++++++++++++++
1 file changed, 23 insertions(+)
diff --git a/gnu/packages/wxwidgets.scm b/gnu/packages/wxwidgets.scm
index 329920d..cf4329a 100644
--- a/gnu/packages/wxwidgets.scm
+++ b/gnu/packages/wxwidgets.scm
@@ -5,6 +5,7 @@
;;; Copyright © 2016 Danny Milosavljevic <address@hidden>
;;; Copyright © 2017 Rene Saavedra <address@hidden>
;;; Copyright © 2017 Efraim Flashner <address@hidden>
+;;; Copyright © 2017 Thomas Danckaert <address@hidden>
;;;
;;; 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")
- branch master updated (28a1041 -> 52cb22c), Thomas Danckaert, 2017/05/10
- 06/07: gnu: Add wxsvg., Thomas Danckaert, 2017/05/10
- 04/07: gnu: Add dvdauthor., Thomas Danckaert, 2017/05/10
- 05/07: gnu: Add wxwidgets-3.1.,
Thomas Danckaert <=
- 03/07: gnu: brasero: Embed growisofs store item., Thomas Danckaert, 2017/05/10
- 07/07: gnu: Add dvdstyler., Thomas Danckaert, 2017/05/10
- 01/07: gnu: Add cdrtools., Thomas Danckaert, 2017/05/10
- 02/07: gnu: Add dvd+rw-tools., Thomas Danckaert, 2017/05/10