mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-11 13:49:23 -05:00
gnu: Add propeller-toolchain.
* gnu/packages/embedded.scm (propeller-toolchain): New variable.
This commit is contained in:
parent
0d0079b2c5
commit
eb88fbafcd
1 changed files with 17 additions and 0 deletions
|
@ -526,3 +526,20 @@ (define-public proplib
|
|||
;; included code is public domain and some changes are BSD licensed.
|
||||
(license license:expat))))
|
||||
|
||||
(define-public propeller-toolchain
|
||||
(package
|
||||
(name "propeller-toolchain")
|
||||
(version (package-version propeller-gcc))
|
||||
(source #f)
|
||||
(build-system trivial-build-system)
|
||||
(arguments '(#:builder (mkdir %output)))
|
||||
(propagated-inputs
|
||||
`(("binutils" ,propeller-binutils)
|
||||
("libc" ,proplib)
|
||||
("gcc" ,propeller-gcc)))
|
||||
(synopsis "Complete GCC tool chain for Propeller micro-controllers")
|
||||
(description "This package provides a complete GCC tool chain for
|
||||
Propeller micro-controller development.")
|
||||
(home-page (package-home-page propeller-gcc))
|
||||
(license (package-license propeller-gcc))))
|
||||
|
||||
|
|
Loading…
Reference in a new issue