gnu: synergy: Update to 1.11.0.
* gnu/packages/synergy.scm (synergy): Update to 1.11.0. [arguments]: Remove upstreamed patches.
This commit is contained in:
parent
7f6592c453
commit
b410c0355a
1 changed files with 4 additions and 11 deletions
|
@ -1,5 +1,5 @@
|
||||||
;;; GNU Guix --- Functional package management for GNU
|
;;; GNU Guix --- Functional package management for GNU
|
||||||
;;; Copyright © 2014, 2015, 2016 Eric Bavier <bavier@member.fsf.org>
|
;;; Copyright © 2014, 2015, 2016, 2020 Eric Bavier <bavier@posteo.net>
|
||||||
;;; Copyright © 2016 Efraim Flashner <efraim@flashner.co.il>
|
;;; Copyright © 2016 Efraim Flashner <efraim@flashner.co.il>
|
||||||
;;; Copyright © 2017 Vasile Dumitrascu <va511e@yahoo.com>
|
;;; Copyright © 2017 Vasile Dumitrascu <va511e@yahoo.com>
|
||||||
;;; Copyright © 2019 Ricardo Wurmus <rekado@elephly.net>
|
;;; Copyright © 2019 Ricardo Wurmus <rekado@elephly.net>
|
||||||
|
@ -37,17 +37,17 @@
|
||||||
(define-public synergy
|
(define-public synergy
|
||||||
(package
|
(package
|
||||||
(name "synergy")
|
(name "synergy")
|
||||||
(version "1.10.1")
|
(version "1.11.0")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
(uri (git-reference
|
(uri (git-reference
|
||||||
(url "https://github.com/symless/synergy-core.git")
|
(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))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"112w2xrp04cysd14xk1ax7cllqpcki0pyica4ivrdngr5qw0r9hp"))
|
"1jk60xw4h6s5crha89wk4y8rrf1f3bixgh5mzh3cq3xyrkba41gh"))
|
||||||
(modules '((guix build utils)))
|
(modules '((guix build utils)))
|
||||||
(snippet
|
(snippet
|
||||||
;; Remove unnecessary bundled source and binaries
|
;; Remove unnecessary bundled source and binaries
|
||||||
|
@ -64,13 +64,6 @@
|
||||||
(setenv "CPLUS_INCLUDE_PATH"
|
(setenv "CPLUS_INCLUDE_PATH"
|
||||||
(string-append (assoc-ref inputs "avahi")
|
(string-append (assoc-ref inputs "avahi")
|
||||||
"/include/avahi-compat-libdns_sd"))
|
"/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)))))
|
#t)))))
|
||||||
(inputs
|
(inputs
|
||||||
`(("avahi" ,avahi)
|
`(("avahi" ,avahi)
|
||||||
|
|
Reference in a new issue