gnu: bitlbee: Build with check@0.12.
* gnu/packages/check.scm (check-0.12): New public variable. * gnu/packages/messaging.scm (bitlbee)[native-inputs]: Change from CHECK to CHECK-0.12.
This commit is contained in:
parent
bb4f4862a8
commit
2a84b55041
2 changed files with 15 additions and 1 deletions
|
@ -99,6 +99,19 @@ faults or other signals. The output from unit tests can be used within
|
||||||
source code editors and IDEs.")
|
source code editors and IDEs.")
|
||||||
(license license:lgpl2.1+)))
|
(license license:lgpl2.1+)))
|
||||||
|
|
||||||
|
;; Some packages require this older version. Removed once no longer needed.
|
||||||
|
(define-public check-0.12
|
||||||
|
(package/inherit
|
||||||
|
check
|
||||||
|
(version "0.12.0")
|
||||||
|
(source (origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (string-append "https://github.com/libcheck/check/releases"
|
||||||
|
"/download/" version "/check-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"0d22h8xshmbpl9hba9ch3xj8vb9ybm5akpsbbh7yj07fic4h2hj6"))))))
|
||||||
|
|
||||||
(define-public cunit
|
(define-public cunit
|
||||||
(package
|
(package
|
||||||
(name "cunit")
|
(name "cunit")
|
||||||
|
|
|
@ -182,7 +182,8 @@ end-to-end encryption.")
|
||||||
(base32 "0sgsn0fv41rga46mih3fyv65cvfa6rvki8x92dn7bczbi7yxfdln"))))
|
(base32 "0sgsn0fv41rga46mih3fyv65cvfa6rvki8x92dn7bczbi7yxfdln"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(native-inputs `(("pkg-config" ,pkg-config)
|
(native-inputs `(("pkg-config" ,pkg-config)
|
||||||
("check" ,check)))
|
;; Note: Change to 'check' for versions > 3.6.
|
||||||
|
("check" ,check-0.12)))
|
||||||
(inputs `(("glib" ,glib)
|
(inputs `(("glib" ,glib)
|
||||||
("libotr" ,libotr)
|
("libotr" ,libotr)
|
||||||
("gnutls" ,gnutls)
|
("gnutls" ,gnutls)
|
||||||
|
|
Reference in a new issue