mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: Add propeller-development-suite.
* gnu/packages/embedded.scm (propeller-development-suite): New variable.
This commit is contained in:
parent
3ebc86d9bd
commit
395bbfdbea
1 changed files with 20 additions and 0 deletions
|
@ -699,3 +699,23 @@ (define-public spinsim
|
|||
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))))
|
||||
|
|
Loading…
Reference in a new issue