mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: Add cbqn-bootstrap.
* gnu/packages/bqn.scm: Add cbqn-bootstrap package. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
7bae4f1650
commit
ee5a85166c
1 changed files with 41 additions and 0 deletions
|
@ -123,3 +123,44 @@ (define bqn-sources
|
|||
(file-name (git-file-name "bqn-sources" commit))
|
||||
(sha256
|
||||
(base32 "0r6pa9lscl2395g4xlvmg90vpdsjzhin4f1r0s7brymmpvmns2yc")))))
|
||||
|
||||
(define cbqn-bootstrap
|
||||
(let* ((revision "1")
|
||||
(commit "9c1cbdc99863b1da0116df61cd832137b196dc5c"))
|
||||
(package
|
||||
(name "cbqn-bootstrap")
|
||||
(version (git-version "0" "1" commit))
|
||||
(source (origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/dzaima/CBQN")
|
||||
(commit commit)))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"0w38fhwf20drkyijy6nfnhmc5g5gw0zmzgmy1q605x57znlj85a2"))))
|
||||
(build-system gnu-build-system)
|
||||
(arguments
|
||||
(list #:tests? #f ;skipping tests for bootstrap
|
||||
#:phases #~(modify-phases %standard-phases
|
||||
(delete 'configure)
|
||||
(add-before 'build 'generate-bytecode
|
||||
(lambda* (#:key inputs #:allow-other-keys)
|
||||
(system (string-append #+dbqn
|
||||
"/bin/dbqn ./genRuntime "
|
||||
#+bqn-sources))))
|
||||
(replace 'install
|
||||
(lambda* (#:key outputs #:allow-other-keys)
|
||||
(mkdir-p (string-append #$output "/bin"))
|
||||
(chmod "BQN" #o755)
|
||||
(copy-recursively "BQN"
|
||||
(string-append #$output
|
||||
"/bin/bqn")))))))
|
||||
(native-inputs (list dbqn clang-toolchain bqn-sources))
|
||||
(inputs (list icedtea-8 libffi))
|
||||
(synopsis "BQN implementation in C")
|
||||
(description "This package provides the reference implementation of
|
||||
@uref{https://mlochbaum.github.io/BQN/, BQN}, a programming language inspired
|
||||
by APL.")
|
||||
(home-page "https://mlochbaum.github.io/BQN/")
|
||||
(license license:gpl3))))
|
||||
|
|
Loading…
Reference in a new issue