Archived
1
0
Fork 0

gnu: fasm: Update to 1.73.28.

* gnu/packages/assembly.scm (fasm): Update to 1.73.28.
[arguments]: Don't explicitly return #t from phases.
This commit is contained in:
Tobias Geerinckx-Rice 2021-12-16 23:40:37 +01:00
parent 028bf93355
commit 4a1f79da36
No known key found for this signature in database
GPG key ID: 0DB0FF884F556D79

View file

@ -181,14 +181,14 @@ speed on x86, NEON on ARM, etc.).")
(define-public fasm (define-public fasm
(package (package
(name "fasm") (name "fasm")
(version "1.73.27") (version "1.73.28")
(source (source
(origin (origin
(method url-fetch) (method url-fetch)
(uri (string-append "https://flatassembler.net/fasm-" (uri (string-append "https://flatassembler.net/fasm-"
version ".tgz")) version ".tgz"))
(sha256 (sha256
(base32 "1cghiks49ql77b9l4mwrnlk76kai0fm0z22j71kbdlxngwvlh0b8")))) (base32 "14ljh0ngdaqlwzsr0l70k09r2d520lqpgswl388p84gxhnsfplcy"))))
(build-system gnu-build-system) (build-system gnu-build-system)
(arguments (arguments
`(#:tests? #f ; no tests exist `(#:tests? #f ; no tests exist
@ -207,8 +207,7 @@ speed on x86, NEON on ARM, etc.).")
(replace 'install (replace 'install
(lambda _ (lambda _
(let ((out (assoc-ref %outputs "out"))) (let ((out (assoc-ref %outputs "out")))
(install-file "fasm" (string-append out "/bin"))) (install-file "fasm" (string-append out "/bin"))))))))
#t)))))
(supported-systems '("x86_64-linux" "i686-linux")) (supported-systems '("x86_64-linux" "i686-linux"))
(synopsis "Assembler for x86 processors") (synopsis "Assembler for x86 processors")
(description (description