mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-26 20:49:29 -05:00
gnu: Add xa.
* gnu/packages/assembly.scm (xa): New variable.
This commit is contained in:
parent
f7f67495ba
commit
dfe15d9919
1 changed files with 29 additions and 0 deletions
|
@ -7,6 +7,7 @@
|
||||||
;;; Copyright © 2019 Guy Fleury Iteriteka <hoonandon@gmail.com>
|
;;; Copyright © 2019 Guy Fleury Iteriteka <hoonandon@gmail.com>
|
||||||
;;; Copyright © 2019 Andy Tai <atai@atai.org>
|
;;; Copyright © 2019 Andy Tai <atai@atai.org>
|
||||||
;;; Copyright © 2020 Jakub Kądziołka <kuba@kadziolka.net>
|
;;; Copyright © 2020 Jakub Kądziołka <kuba@kadziolka.net>
|
||||||
|
;;; Copyright © 2020 Christopher Lemmer Webber <cwebber@dustycloud.org>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -342,3 +343,31 @@ (define-public wla-dx
|
||||||
@item spc700
|
@item spc700
|
||||||
@end itemize")
|
@end itemize")
|
||||||
(license license:gpl2)))
|
(license license:gpl2)))
|
||||||
|
|
||||||
|
(define-public xa
|
||||||
|
(package
|
||||||
|
(name "xa")
|
||||||
|
(version "2.3.10")
|
||||||
|
(source (origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (string-append "https://www.floodgap.com/retrotech/xa"
|
||||||
|
"/dists/xa-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"0y5sd247g11jfk5msxy91hz2nhpy7smj125dzfyfhjsjnqk5nyw6"))))
|
||||||
|
(build-system gnu-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:tests? #f ; TODO: custom test harness, not sure how it works
|
||||||
|
#:phases
|
||||||
|
(modify-phases %standard-phases
|
||||||
|
(delete 'configure)) ; no "configure" script
|
||||||
|
#:make-flags (list (string-append "DESTDIR=" (assoc-ref %outputs "out")))))
|
||||||
|
(native-inputs `(("perl" ,perl)))
|
||||||
|
(home-page "https://www.floodgap.com/retrotech/xa/")
|
||||||
|
(synopsis "Two-pass portable cross-assembler")
|
||||||
|
(description
|
||||||
|
"xa is a high-speed, two-pass portable cross-assembler.
|
||||||
|
It understands mnemonics and generates code for NMOS 6502s (such
|
||||||
|
as 6502A, 6504, 6507, 6510, 7501, 8500, 8501, 8502 ...),
|
||||||
|
CMOS 6502s (65C02 and Rockwell R65C02) and the 65816.")
|
||||||
|
(license license:gpl2)))
|
||||||
|
|
Loading…
Reference in a new issue