diff options
author | Marius Bakke <[email protected]> | 2020-01-21 22:39:42 +0100 |
---|---|---|
committer | Marius Bakke <[email protected]> | 2020-01-21 22:39:42 +0100 |
commit | 8ed9be3faccb865204de46d2a8ed3e96e59281b6 (patch) | |
tree | 77ba4c90cda569048bc9ce2e414ede1567130c88 /gnu/packages/synergy.scm | |
parent | 36930b2463fc933e7c5580f49413dbd14cf1df48 (diff) | |
parent | 715110a8a2e9e4b1a89635950744eb5260b8ee7f (diff) |
Merge branch 'staging' into core-updates
Diffstat (limited to 'gnu/packages/synergy.scm')
-rw-r--r-- | gnu/packages/synergy.scm | 15 |
1 files changed, 4 insertions, 11 deletions
diff --git a/gnu/packages/synergy.scm b/gnu/packages/synergy.scm index 9de3ee57e4..367bb323b3 100644 --- a/gnu/packages/synergy.scm +++ b/gnu/packages/synergy.scm @@ -1,5 +1,5 @@ ;;; GNU Guix --- Functional package management for GNU -;;; Copyright © 2014, 2015, 2016 Eric Bavier <[email protected]> +;;; Copyright © 2014, 2015, 2016, 2020 Eric Bavier <[email protected]> ;;; Copyright © 2016 Efraim Flashner <[email protected]> ;;; Copyright © 2017 Vasile Dumitrascu <[email protected]> ;;; Copyright © 2019 Ricardo Wurmus <[email protected]> @@ -37,17 +37,17 @@ (define-public synergy (package (name "synergy") - (version "1.10.1") + (version "1.11.0") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/symless/synergy-core.git") - (commit (string-append "v" version "-stable")))) + (commit (string-append version "-stable")))) (file-name (git-file-name name version)) (sha256 (base32 - "112w2xrp04cysd14xk1ax7cllqpcki0pyica4ivrdngr5qw0r9hp")) + "1jk60xw4h6s5crha89wk4y8rrf1f3bixgh5mzh3cq3xyrkba41gh")) (modules '((guix build utils))) (snippet ;; Remove unnecessary bundled source and binaries @@ -64,13 +64,6 @@ (setenv "CPLUS_INCLUDE_PATH" (string-append (assoc-ref inputs "avahi") "/include/avahi-compat-libdns_sd")) - ;; See https://github.com/symless/synergy-core/pull/6359/ - (substitute* "src/gui/src/ScreenSetupView.cpp" - (("#include <QtGui>" m) - (string-append m "\n#include <QHeaderView>"))) - (substitute* "src/gui/src/ActionDialog.cpp" - (("#include <QtGui>" m) - (string-append m "\n#include <QButtonGroup>"))) #t))))) (inputs `(("avahi" ,avahi) |