mirror of
https://gitlab.com/nonguix/nonguix.git
synced 2024-12-24 07:44:52 +01:00
nongnu: lgogdownloader: Fix build.
* nongnu/packages/gog.scm (lgogdownloader)[arguments]: Add patch-find-jsoncpp phase to fix build with newer JsonCpp versions.
This commit is contained in:
parent
08c155d6d4
commit
35646e5acf
1 changed files with 9 additions and 1 deletions
|
@ -43,7 +43,15 @@
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "0a3rrkgqwdqxx3ghzw182jx88gzzw6ldp3jasmgnr4l7gpxkmwws"))))
|
(base32 "0a3rrkgqwdqxx3ghzw182jx88gzzw6ldp3jasmgnr4l7gpxkmwws"))))
|
||||||
(build-system cmake-build-system)
|
(build-system cmake-build-system)
|
||||||
(arguments '(#:tests? #f)) ; no tests
|
(arguments
|
||||||
|
`(#:tests? #f ; no tests
|
||||||
|
#:phases
|
||||||
|
(modify-phases %standard-phases
|
||||||
|
(add-before 'configure 'patch-find-jsoncpp
|
||||||
|
(lambda* _
|
||||||
|
(substitute* "cmake/FindJsoncpp.cmake"
|
||||||
|
(("features.h") "allocator.h"))
|
||||||
|
#t)))))
|
||||||
(inputs
|
(inputs
|
||||||
`(("boost" ,boost)
|
`(("boost" ,boost)
|
||||||
("curl" ,curl)
|
("curl" ,curl)
|
||||||
|
|
Loading…
Reference in a new issue