gnu: openboard: Update to 1.7-dev-0.47a96e1.
* gnu/packages/education.scm (openboard)[version]: Update to 1.7-dev-0.47a96e1. [arguments]: Fix quazip substitution in `fix-library-path'. Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>master
parent
45c173b3c8
commit
375137185b
|
@ -452,11 +452,11 @@ specialized device.")
|
||||||
;; The last release builds from qtwebkit, which has been removed from
|
;; The last release builds from qtwebkit, which has been removed from
|
||||||
;; Guix, so use the latest commit of the 1.7-dev branch, which builds with
|
;; Guix, so use the latest commit of the 1.7-dev branch, which builds with
|
||||||
;; qtwebengine-5.
|
;; qtwebengine-5.
|
||||||
(let ((commit "39e914f600d26565706f0e5b6ea2482b8b4038c7") ;1.6.2-rc0311
|
(let ((commit "47a96e1d6bbdc0250977d22f1b79f11fcc1cbeee")
|
||||||
(revision "1"))
|
(revision "0"))
|
||||||
(package
|
(package
|
||||||
(name "openboard")
|
(name "openboard")
|
||||||
(version (git-version "1.6.1" revision commit))
|
(version (git-version "1.7-dev" revision commit))
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
|
@ -465,7 +465,7 @@ specialized device.")
|
||||||
(commit commit)))
|
(commit commit)))
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "1763l5dywirzidzc93726dggf9819p47hh6a7p7dwzd1bfq1wb2q"))))
|
(base32 "04pwmg41vlkwigym3zzkid6srh6f05b44g4mbihd6mhj6vsagx1f"))))
|
||||||
(build-system qt-build-system)
|
(build-system qt-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
(list
|
(list
|
||||||
|
@ -500,7 +500,7 @@ specialized device.")
|
||||||
(add-after 'unpack 'fix-library-path
|
(add-after 'unpack 'fix-library-path
|
||||||
(lambda* (#:key inputs #:allow-other-keys)
|
(lambda* (#:key inputs #:allow-other-keys)
|
||||||
(substitute* "OpenBoard.pro"
|
(substitute* "OpenBoard.pro"
|
||||||
(("/usr/include/quazip")
|
(("/usr/include/quazip5")
|
||||||
(search-input-directory inputs "/include/quazip5"))
|
(search-input-directory inputs "/include/quazip5"))
|
||||||
(("/usr/include/poppler")
|
(("/usr/include/poppler")
|
||||||
(search-input-directory inputs "/include/poppler")))))
|
(search-input-directory inputs "/include/poppler")))))
|
||||||
|
|
Reference in New Issue