mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: microscheme: Update to 0.9.4.
* gnu/packages/avr.scm (microscheme): Update to 0.9.4. [native-inputs]: Add clang and cppcheck. Signed-off-by: Guillaume Le Vaillant <glv@posteo.net>
This commit is contained in:
parent
8a64495ef6
commit
996f897cf1
1 changed files with 5 additions and 3 deletions
|
@ -31,10 +31,12 @@ (define-module (gnu packages avr)
|
||||||
#:use-module (guix build-system gnu)
|
#:use-module (guix build-system gnu)
|
||||||
#:use-module (guix build-system trivial)
|
#:use-module (guix build-system trivial)
|
||||||
#:use-module (gnu packages)
|
#:use-module (gnu packages)
|
||||||
|
#:use-module (gnu packages check)
|
||||||
#:use-module (gnu packages compression)
|
#:use-module (gnu packages compression)
|
||||||
#:use-module (gnu packages cross-base)
|
#:use-module (gnu packages cross-base)
|
||||||
#:use-module (gnu packages flashing-tools)
|
#:use-module (gnu packages flashing-tools)
|
||||||
#:use-module (gnu packages gcc)
|
#:use-module (gnu packages gcc)
|
||||||
|
#:use-module (gnu packages llvm)
|
||||||
#:use-module (gnu packages vim))
|
#:use-module (gnu packages vim))
|
||||||
|
|
||||||
(define-public avr-binutils
|
(define-public avr-binutils
|
||||||
|
@ -148,7 +150,7 @@ (define-public avr-toolchain
|
||||||
(define-public microscheme
|
(define-public microscheme
|
||||||
(package
|
(package
|
||||||
(name "microscheme")
|
(name "microscheme")
|
||||||
(version "0.9.3")
|
(version "0.9.4")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
|
@ -156,7 +158,7 @@ (define-public microscheme
|
||||||
(url "https://github.com/ryansuchocki/microscheme")
|
(url "https://github.com/ryansuchocki/microscheme")
|
||||||
(commit (string-append "v" version))))
|
(commit (string-append "v" version))))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "1r3ng4pw1s9yy1h5rafra1rq19d3vmb5pzbpcz1913wz22qdd976"))
|
(base32 "1bflwirpcd58bngbs6hgjfwxl894ni2gpdd4pj10pm2mjhyj5dgw"))
|
||||||
(file-name (git-file-name name version))))
|
(file-name (git-file-name name version))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
|
@ -168,7 +170,7 @@ (define-public microscheme
|
||||||
#:make-flags
|
#:make-flags
|
||||||
(list (string-append "PREFIX=" (assoc-ref %outputs "out")))))
|
(list (string-append "PREFIX=" (assoc-ref %outputs "out")))))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list unzip xxd))
|
(list clang cppcheck unzip xxd))
|
||||||
(home-page "https://github.com/ryansuchocki/microscheme/")
|
(home-page "https://github.com/ryansuchocki/microscheme/")
|
||||||
(synopsis "Scheme subset for Atmel microcontrollers")
|
(synopsis "Scheme subset for Atmel microcontrollers")
|
||||||
(description
|
(description
|
||||||
|
|
Loading…
Reference in a new issue