mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: cvs: Use external zlib.
* gnu/packages/version-control.scm (cvs)[arguments]: add configure flag --with-exernal-zlib.
This commit is contained in:
parent
f94f481988
commit
7fbbd3e7a0
1 changed files with 3 additions and 1 deletions
|
@ -6,6 +6,7 @@
|
||||||
;;; Copyright © 2015 Mathieu Lirzin <mthl@openmailbox.org>
|
;;; Copyright © 2015 Mathieu Lirzin <mthl@openmailbox.org>
|
||||||
;;; Copyright © 2014, 2015 Mark H Weaver <mhw@netris.org>
|
;;; Copyright © 2014, 2015 Mark H Weaver <mhw@netris.org>
|
||||||
;;; Copyright © 2014 Eric Bavier <bavier@member.fsf.org>
|
;;; Copyright © 2014 Eric Bavier <bavier@member.fsf.org>
|
||||||
|
;;; Copyright © 2015 Efraim Flashner <efraim@flashner.co.il>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -672,7 +673,8 @@ (define-public cvs
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
;; XXX: The test suite looks flawed, and the package is obsolete anyway.
|
;; XXX: The test suite looks flawed, and the package is obsolete anyway.
|
||||||
'(#:tests? #f))
|
'(#:tests? #f
|
||||||
|
#:configure-flags (list "--with-external-zlib")))
|
||||||
(inputs `(("zlib" ,zlib)
|
(inputs `(("zlib" ,zlib)
|
||||||
("nano" ,nano))) ; the default editor
|
("nano" ,nano))) ; the default editor
|
||||||
(home-page "http://cvs.nongnu.org")
|
(home-page "http://cvs.nongnu.org")
|
||||||
|
|
Loading…
Reference in a new issue