all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Thomas Albers via Guix-patches via <guix-patches@gnu.org>
To: 49643@debbugs.gnu.org
Cc: Thomas Albers <tgalbers2000@gmail.com>
Subject: [bug#49643] [PATCH 1/2] gnu: Add z80asm
Date: Fri, 13 Aug 2021 16:31:55 +0200	[thread overview]
Message-ID: <20210813143156.16449-1-thomas@thomaslabs.org> (raw)
In-Reply-To: <87v956mrzv.fsf@thomaslabs.org>

From: Thomas Albers <tgalbers2000@gmail.com>

---
 gnu/packages/assembly.scm | 28 ++++++++++++++++++++++++++++
 1 file changed, 28 insertions(+)

diff --git a/gnu/packages/assembly.scm b/gnu/packages/assembly.scm
index 51c0572674..a60370ad8d 100644
--- a/gnu/packages/assembly.scm
+++ b/gnu/packages/assembly.scm
@@ -533,3 +533,31 @@ family of command line utility wrappers in the default output.  Each of the cli
 tools is named like @code{xed*}.  Documentation for the cli tools is sparse, so
 this is a case where ``the code is the documentation.''")
     (license license:asl2.0)))
+
+(define-public z80asm
+  (package
+    (name "z80asm")
+    (version "1.8")
+    (source
+     (origin
+       (uri "http://download.savannah.nongnu.org/releases/z80asm/z80asm-1.8.tar.gz")
+       (sha256
+        (base32 "0r2za4qb7b0n13xksj6vwddixn2jzcc5h8qk06kxzkc20naakyv7"))
+       (method url-fetch)))
+    (build-system gnu-build-system)
+    (arguments
+     '(#:phases
+       (modify-phases %standard-phases
+         (delete 'configure)
+         (delete 'check)
+         (replace 'install
+           (lambda* (#:key outputs #:allow-other-keys)
+             (let ((bin (string-append (assoc-ref outputs "out")
+                                       "/bin")))
+               (install-file "z80asm" bin)
+               #t))))))
+    (synopsis "Assembler for the Z80 microprocessor")
+    (description "Assembler for the Z80 microprocessor which supports all
+official mnemonics together with many unofficial ones.")
+    (home-page "http://savannah.nongnu.org/projects/z80asm")
+    (license license:gpl3)))
-- 
2.32.0





  parent reply	other threads:[~2021-08-13 14:49 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-07-19 12:02 [bug#49643] [PATCH] z80asm and z80dasm Thomas Albers via Guix-patches via
2021-08-11 14:23 ` Ludovic Courtès
2021-08-13 14:46   ` Thomas Albers via Guix-patches via
2021-08-11 18:20 ` [bug#49643] [PATCH] gnu: Add z80asm Thomas Albers via Guix-patches via
2021-08-13 14:31 ` Thomas Albers via Guix-patches via [this message]
2021-08-13 14:31   ` [bug#49643] [PATCH 2/2] gnu: Add z80dasm Thomas Albers via Guix-patches via

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20210813143156.16449-1-thomas@thomaslabs.org \
    --to=guix-patches@gnu.org \
    --cc=49643@debbugs.gnu.org \
    --cc=tgalbers2000@gmail.com \
    --cc=thomas@thomaslabs.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.