3
5
Fork 0
mirror of git://git.savannah.gnu.org/guix.git synced 2023-12-14 03:33:07 +01:00

gnu: drawpile: Build with libmicrohttpd 0.9.71.

* gnu/packages/graphics.scm (drawpile): Update to 2.1.17-1.ed1a75deb.

Signed-off-by: Mathieu Othacehe <othacehe@gnu.org>
This commit is contained in:
Michael Rohleder 2020-08-24 23:09:10 +02:00 committed by Mathieu Othacehe
parent d6a454addf
commit 7e66233811
No known key found for this signature in database
GPG key ID: 8354763531769CA6

View file

@ -1654,41 +1654,45 @@ Automated palette selection is supported.")
(license license:expat))) (license license:expat)))
(define-public drawpile (define-public drawpile
(package ;; This commit fix building with libmicrohttpd>=0.71.
(name "drawpile") (let ((commit "ed1a75deb113da2d1df91a28f557509c4897130e")
(version "2.1.17") (revision "1"))
(source (origin (package
(method git-fetch) (name "drawpile")
(uri (git-reference (version (string-append "2.1.17-" revision "." (string-take commit 9)))
(url "https://github.com/drawpile/Drawpile") (source (origin
(commit version))) (method git-fetch)
(file-name (git-file-name name version)) (uri (git-reference
(sha256 (url "https://github.com/drawpile/Drawpile")
(base32 (commit commit)))
"08w8vad8pw4a8kkshys1kd2kjvzpj62klxxxp904rx0qazw5hl80")))) (file-name (git-file-name name version))
(build-system qt-build-system) (sha256
(arguments (base32
'(#:configure-flags (list "-DTESTS=ON" "-DTOOLS=ON" "-DKIS_TABLET=ON"))) "1y21h1hk9ipkjvhjgas0c5hkjyan92vsxbxrn60c906hzqln2fr1"))))
(native-inputs (build-system qt-build-system)
`(("extra-cmake-modules" ,extra-cmake-modules) (arguments
("pkg-config" ,pkg-config))) '(#:configure-flags
(inputs (list "-DTESTS=ON" "-DTOOLS=ON" "-DKIS_TABLET=ON")))
`(("giflib" ,giflib) (native-inputs
("karchive" ,karchive) `(("extra-cmake-modules" ,extra-cmake-modules)
("kdnssd" ,kdnssd) ("pkg-config" ,pkg-config)))
("libmicrohttpd" ,libmicrohttpd) (inputs
("libsodium" ,libsodium) `(("giflib" ,giflib)
("libvpx" ,libvpx) ("karchive" ,karchive)
("libxi" ,libxi) ("kdnssd" ,kdnssd)
;; ("miniupnpc" ,miniupnpc) ;segfaults for some reason ("libmicrohttpd" ,libmicrohttpd)
("qtbase" ,qtbase) ("libsodium" ,libsodium)
("qtkeychain" ,qtkeychain) ("libvpx" ,libvpx)
("qtmultimedia" ,qtmultimedia) ("libxi" ,libxi)
("qtsvg" ,qtsvg) ;; ("miniupnpc" ,miniupnpc) ;segfaults for some reason
("qtx11extras" ,qtx11extras))) ("qtbase" ,qtbase)
(home-page "https://drawpile.net") ("qtkeychain" ,qtkeychain)
(synopsis "Collaborative drawing program") ("qtmultimedia" ,qtmultimedia)
(description "Drawpile is a drawing program that allows share the canvas ("qtsvg" ,qtsvg)
("qtx11extras" ,qtx11extras)))
(home-page "https://drawpile.net")
(synopsis "Collaborative drawing program")
(description "Drawpile is a drawing program that allows share the canvas
with other users in real time. with other users in real time.
Some feature highlights: Some feature highlights:
@ -1704,4 +1708,4 @@ Some feature highlights:
@item Encrypted connections using SSL @item Encrypted connections using SSL
@item Automatic port forwarding with UPnP @item Automatic port forwarding with UPnP
@end itemize\n") @end itemize\n")
(license license:gpl3+))) (license license:gpl3+))))