(zilch lang rust): initial commit
This commit is contained in:
parent
d52a1e7796
commit
5380ac9307
12 changed files with 1392 additions and 3 deletions
19
lang/rust/default.nix
Normal file
19
lang/rust/default.nix
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
{ chickenPackages, libsodium, callPackage, xxd }:
|
||||
(callPackage ../../lib/build-chicken-parallel {}) {
|
||||
name = "zilch-lang-rust";
|
||||
src = ./.;
|
||||
|
||||
buildInputs = with chickenPackages.chickenEggs; [
|
||||
chickenPackages.chicken
|
||||
r7rs
|
||||
json
|
||||
srfi-152
|
||||
srfi-113
|
||||
srfi-207
|
||||
(callPackage ../../core {})
|
||||
(callPackage ../go {})
|
||||
];
|
||||
overrides.preBuild = ''
|
||||
(cat buildrs-runner.rs; printf '\0') | xxd -i -n runner_source > runner_source.h
|
||||
'';
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue