gnu: Add propeller-development-suite.
* gnu/packages/embedded.scm (propeller-development-suite): New variable.master
parent
3ebc86d9bd
commit
395bbfdbea
|
@ -699,3 +699,23 @@ execution, but it does not support multi-tasking. It supports about
|
||||||
two-thirds of the opcodes in the P2 instruction set.")
|
two-thirds of the opcodes in the P2 instruction set.")
|
||||||
(license license:expat))))
|
(license license:expat))))
|
||||||
|
|
||||||
|
(define-public propeller-development-suite
|
||||||
|
(package
|
||||||
|
(name "propeller-development-suite")
|
||||||
|
(version (package-version propeller-gcc))
|
||||||
|
(source #f)
|
||||||
|
(build-system trivial-build-system)
|
||||||
|
(arguments '(#:builder (mkdir %output)))
|
||||||
|
(propagated-inputs
|
||||||
|
`(("toolchain" ,propeller-toolchain)
|
||||||
|
("openspin" ,openspin)
|
||||||
|
("propeller-load" ,propeller-load)
|
||||||
|
("spin2cpp" ,spin2cpp)
|
||||||
|
("spinsim" ,spinsim)))
|
||||||
|
(synopsis "Complete development suite for Propeller micro-controllers")
|
||||||
|
(description "This meta-package provides a complete environment for the
|
||||||
|
development with Parallax Propeller micro-controllers. It includes the GCC
|
||||||
|
toolchain, the loader, the Openspin compiler, the Spin2cpp tool, and the Spin
|
||||||
|
simulator.")
|
||||||
|
(home-page (package-home-page propeller-gcc))
|
||||||
|
(license (package-license propeller-gcc))))
|
||||||
|
|
Reference in New Issue