me
/
guix
Archived
1
0
Fork 0

gnu: armips: Update to 0.11.0-1-6719ede.

* gnu/packages/assembly.scm (armips): Update to 0.11.0-1-6719ede.
[source]: Add snippet to fix “Core/Types.h”.
[arguments]<#:configure-flags>: Add “-DARMIPS_USE_STD_FILESYSTEM=ON”.
master
Liliana Marie Prikler 2023-04-29 23:43:43 +02:00
parent 3e46970eab
commit b2b0179ec7
No known key found for this signature in database
GPG Key ID: 442A84B8C70E2F87
1 changed files with 40 additions and 29 deletions

View File

@ -37,6 +37,7 @@
#:use-module (guix git-download)
#:use-module ((guix licenses) #:prefix license:)
#:use-module (guix packages)
#:use-module (guix gexp)
#:use-module (gnu packages)
#:use-module (gnu packages admin)
#:use-module (gnu packages autotools)
@ -420,6 +421,8 @@ as 6502A, 6504, 6507, 6510, 7501, 8500, 8501, 8502 ...),
(license license:gpl2)))
(define-public armips
(let ((commit "6719edebaae03330ee5441d9b28280672edf00d5")
(revision "1"))
(package
(name "armips")
(version "0.11.0")
@ -428,13 +431,21 @@ as 6502A, 6504, 6507, 6510, 7501, 8500, 8501, 8502 ...),
(method git-fetch)
(uri (git-reference
(url "https://github.com/Kingcom/armips")
(commit (string-append "v" version))))
(commit commit)))
(file-name (git-file-name name version))
(sha256
(base32 "1c4dhjkvynqn9xm2vcvwzymk7yg8h25alnawkz4z1dnn1z1k3r9g"))))
(base32 "1a85h2b3r3hy9hm07v8drvkklp4qfdq3i3zwb3cgk011s0njdfvz"))
(modules '((guix build utils)))
(snippet
#~(begin
(substitute* "Core/Types.h"
(("#include <string>" all)
(string-append all "\n"
"#include <string_view>")))))))
(build-system cmake-build-system)
(arguments
`(#:phases
`(#:configure-flags '("-DARMIPS_USE_STD_FILESYSTEM=ON")
#:phases
(modify-phases %standard-phases
(replace 'check
(lambda* (#:key inputs #:allow-other-keys)
@ -451,7 +462,7 @@ as 6502A, 6504, 6507, 6510, 7501, 8500, 8501, 8502 ...),
Allegrex and RSP instruction sets, partial support for the EmotionEngine
instruction set, as well as complete support for the ARM7 and ARM9 instruction
sets, both THUMB and ARM mode.")
(license license:expat)))
(license license:expat))))
(define-public intel-xed
(package