mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-02-01 07:16:39 +01:00
gnu: cvs-fast-export: Use non-native Python 3.
* gnu/packages/version-control.scm (cvs-fast-export)[native-inputs]: Remove python-2. [inputs]: Add python-wrapper.
This commit is contained in:
parent
d462bf0e49
commit
a894ca327b
1 changed files with 8 additions and 6 deletions
|
@ -1580,12 +1580,14 @@ (define-public cvs-fast-export
|
|||
#:parallel-build? #f ; parallel a2x commands fail spectacularly
|
||||
#:make-flags
|
||||
(list "CC=gcc" (string-append "prefix?=" (assoc-ref %outputs "out")))))
|
||||
(inputs `(("git" ,git)))
|
||||
(native-inputs `(("asciidoc" ,asciidoc)
|
||||
;; These are needed for the tests.
|
||||
("cvs" ,cvs)
|
||||
("python" ,python-2)
|
||||
("rcs" ,rcs)))
|
||||
(inputs
|
||||
`(("git" ,git)
|
||||
("python" ,python-wrapper)))
|
||||
(native-inputs
|
||||
`(("asciidoc" ,asciidoc)
|
||||
;; These are needed for the tests.
|
||||
("cvs" ,cvs)
|
||||
("rcs" ,rcs)))
|
||||
(home-page "http://www.catb.org/esr/cvs-fast-export/")
|
||||
(synopsis "Export an RCS or CVS history as a fast-import stream")
|
||||
(description "This program analyzes a collection of RCS files in a CVS
|
||||
|
|
Loading…
Reference in a new issue