gnu: Add propeller-development-suite.

* gnu/packages/embedded.scm (propeller-development-suite): New variable.
master
Ricardo Wurmus 2016-12-25 21:56:57 +01:00
parent 3ebc86d9bd
commit 395bbfdbea
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 20 additions and 0 deletions

View File

@ -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.")
(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))))