mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-24 11:39:46 -05:00
gnu: Add wla-dx.
* gnu/packages/assembly.scm (wla-dx): New variable. Signed-off-by: Julien Lepiller <julien@lepiller.eu>
This commit is contained in:
parent
71e33e32fc
commit
8273188cca
1 changed files with 43 additions and 0 deletions
|
@ -24,6 +24,7 @@
|
|||
;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
(define-module (gnu packages assembly)
|
||||
#:use-module (guix build-system cmake)
|
||||
#:use-module (guix build-system gnu)
|
||||
#:use-module (guix download)
|
||||
#:use-module (guix git-download)
|
||||
|
@ -44,6 +45,7 @@ (define-module (gnu packages assembly)
|
|||
#:use-module (gnu packages pkg-config)
|
||||
#:use-module (gnu packages texinfo)
|
||||
#:use-module (gnu packages python)
|
||||
#:use-module (gnu packages sphinx)
|
||||
#:use-module (gnu packages xml)
|
||||
#:use-module ((guix utils)
|
||||
#:select (%current-system)))
|
||||
|
@ -299,3 +301,44 @@ (define-public rgbds
|
|||
@item rgbgfx (PNG-to-Game Boy graphics converter)
|
||||
@end itemize")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public wla-dx
|
||||
(package
|
||||
(name "wla-dx")
|
||||
(version "9.10")
|
||||
(source (origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/vhelin/wla-dx.git")
|
||||
(commit (string-append "v" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"022isf7s9q5i0j4xj69zpp0lgw8p9n37sn7ii25v68r15zaahk2w"))))
|
||||
(build-system cmake-build-system)
|
||||
(native-inputs
|
||||
`(("sphinx" ,python-sphinx))) ; to generate man pages
|
||||
(arguments
|
||||
`(#:tests? #f)) ; no tests
|
||||
(home-page "https://github.com/vhelin/wla-dx")
|
||||
(synopsis "Assemblers for various processors")
|
||||
(description "WLA DX is a set of tools to assemble assembly files to
|
||||
object or library files (@code{wla-ARCH}) and link them together (@code{wlalink}).
|
||||
Supported architectures are:
|
||||
|
||||
@itemize @bullet
|
||||
@item z80
|
||||
@item gb (z80-gb)
|
||||
@item 6502
|
||||
@item 65c02
|
||||
@item 6510
|
||||
@item 65816
|
||||
@item 6800
|
||||
@item 6801
|
||||
@item 6809
|
||||
@item 8008
|
||||
@item 8080
|
||||
@item huc6280
|
||||
@item spc700
|
||||
@end itemize")
|
||||
(license license:gpl2)))
|
||||
|
|
Loading…
Reference in a new issue