diff options
author | Klaus T. Aehlig <aehlig@linta.de> | 2024-06-25 17:59:39 +0200 |
---|---|---|
committer | Klaus T. Aehlig <aehlig@linta.de> | 2024-06-25 18:29:41 +0200 |
commit | e65cf1d265210738a9b3c0b811fbfeffa0741c39 (patch) | |
tree | 3b1bfe9958b324b5bd0768b48bfa76aaaa3eecc7 /etc/defaults/rust/TARGETS | |
parent | 628cb0ab06332086a7ea022bcebfb69d95c38068 (diff) | |
download | hello-nix-e65cf1d265210738a9b3c0b811fbfeffa0741c39.tar.gz |
Import rust rules and add a minimal example
Note that the PATH for rust targets also has to include
that for the C compiler and hence also coreutils, as the
rust compiler calls out to `cc`.
Diffstat (limited to 'etc/defaults/rust/TARGETS')
-rw-r--r-- | etc/defaults/rust/TARGETS | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/etc/defaults/rust/TARGETS b/etc/defaults/rust/TARGETS new file mode 100644 index 0000000..fbd1a69 --- /dev/null +++ b/etc/defaults/rust/TARGETS @@ -0,0 +1,43 @@ +{ "defaults": + { "type": "configure" + , "target": "defaults (unconfigured)" + , "arguments_config": ["TOOLCHAIN_CONFIG"] + , "config": + { "type": "let*" + , "bindings": + [ [ "toolchain" + , { "type": "lookup" + , "map": + { "type": "var" + , "name": "TOOLCHAIN_CONFIG" + , "default": {"type": "empty_map"} + } + , "key": "RUST" + , "default": {"type": "empty_map"} + } + ] + , [ "RUSTC" + , { "type": "lookup" + , "map": {"type": "var", "name": "toolchain"} + , "key": "RUSTC" + , "default": "rustc" + } + ] + , [ "PATH" + , { "type": "lookup" + , "map": {"type": "var", "name": "toolchain"} + , "key": "PATH" + , "default": [] + } + ] + ] + , "body": {"type": "env", "vars": ["RUSTC", "PATH"]} + } + } +, "defaults (unconfigured)": + { "type": "defaults" + , "arguments_config": ["RUSTC", "PATH"] + , "RUSTC": [{"type": "var", "name": "RUSTC"}] + , "PATH": {"type": "var", "name": "PATH"} + } +} |