[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
11/12: gnu: Add spinsim.
From: |
Ricardo Wurmus |
Subject: |
11/12: gnu: Add spinsim. |
Date: |
Sun, 1 Jan 2017 12:56:49 +0000 (UTC) |
rekado pushed a commit to branch master
in repository guix.
commit 3ebc86d9bd57b3e41e8d14d9ef54b1ed7bebf230
Author: Ricardo Wurmus <address@hidden>
Date: Sun Dec 25 21:56:42 2016 +0100
gnu: Add spinsim.
* gnu/packages/embedded.scm (spinsim): New variable.
---
gnu/packages/embedded.scm | 36 ++++++++++++++++++++++++++++++++++++
1 file changed, 36 insertions(+)
diff --git a/gnu/packages/embedded.scm b/gnu/packages/embedded.scm
index c78054d..f44c7be 100644
--- a/gnu/packages/embedded.scm
+++ b/gnu/packages/embedded.scm
@@ -663,3 +663,39 @@ they are much faster than regular Spin bytecodes (but also
quite a bit
larger).")
(license license:expat)))
+(define-public spinsim
+ (let ((commit "66915a7ad1a3a2cf990a725bb341fab8d11eb620")
+ (revision "1"))
+ (package
+ (name "spinsim")
+ (version (string-append "0.75-" revision "." (string-take commit 9)))
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/parallaxinc/spinsim.git")
+ (commit commit)))
+ (file-name (string-append name "-" commit "-checkout"))
+ (sha256
+ (base32
+ "1n9kdhlxsdx7bz6c80w8dhi96zp633gd6qs0x9i4ii8qv4i7sj5k"))))
+ (build-system gnu-build-system)
+ (arguments
+ `(#:tests? #f ; no tests
+ #:phases
+ (modify-phases %standard-phases
+ (delete 'configure)
+ (replace 'install
+ (lambda* (#:key outputs #:allow-other-keys)
+ (let ((bin (string-append (assoc-ref outputs "out")
+ "/bin")))
+ (install-file "build/spinsim" bin))
+ #t)))))
+ (home-page "https://github.com/parallaxinc/spinsim")
+ (synopsis "Spin simulator")
+ (description "This package provides the tool @code{spinsim}, a simulator
+and simple debugger for Spin programs written for a Parallax Propeller
+micro-controller. Spinsim supports execution from cog memory and hub
+execution, but it does not support multi-tasking. It supports about
+two-thirds of the opcodes in the P2 instruction set.")
+ (license license:expat))))
+
- branch master updated (6f7bcaa -> 395bbfd), Ricardo Wurmus, 2017/01/01
- 01/12: gnu: clisp: Use modify-phases syntax., Ricardo Wurmus, 2017/01/01
- 03/12: gnu: Add dummy linker for propeller-elf., Ricardo Wurmus, 2017/01/01
- 12/12: gnu: Add propeller-development-suite., Ricardo Wurmus, 2017/01/01
- 05/12: gnu: Add propeller-gcc., Ricardo Wurmus, 2017/01/01
- 08/12: gnu: Add openspin., Ricardo Wurmus, 2017/01/01
- 09/12: gnu: Add propeller-load., Ricardo Wurmus, 2017/01/01
- 06/12: gnu: Add proplib., Ricardo Wurmus, 2017/01/01
- 02/12: gnu: clisp: Remove timestamps., Ricardo Wurmus, 2017/01/01
- 07/12: gnu: Add propeller-toolchain., Ricardo Wurmus, 2017/01/01
- 11/12: gnu: Add spinsim.,
Ricardo Wurmus <=
- 10/12: gnu: Add spin2cpp., Ricardo Wurmus, 2017/01/01
- 04/12: gnu: Add propeller-binutils., Ricardo Wurmus, 2017/01/01