tangled
alpha
login
or
join now
aria.rip
/
dissertation
0
fork
atom
this repo has no description
0
fork
atom
overview
issues
pulls
pipelines
rename back to candelabra-cli
aria.rip
2 years ago
947c712a
3d79d3cf
+4
-5
3 changed files
expand all
collapse all
unified
split
nix
candelabra.nix
src
Justfile
crates
cli
Cargo.toml
+1
-2
nix/candelabra.nix
reviewed
···
20
20
in
21
21
pkgs.runCommand "candelabra" {} ''
22
22
. ${pkgs.makeWrapper}/nix-support/setup-hook
23
23
-
mkdir -p $out/{bin,nix-support}
24
24
-
makeWrapper ${rustCrate}/bin/candelabra $out/bin/candelabra \
23
23
+
makeWrapper ${rustCrate}/bin/candelabra-cli $out/bin/candelabra-cli \
25
24
--set CANDELABRA_SRC_DIR ${pkgs.lib.sourceByRegex ../src [
26
25
".*crates"
27
26
".*racket_specs.*"
+1
-1
src/Justfile
reviewed
···
1
1
-
candelabra := `which candelabra 2>/dev/null || echo ./target/debug/candelabra`
1
1
+
candelabra := `which candelabra-cli 2>/dev/null || echo ./target/debug/candelabra-cli`
2
2
target_dir := justfile_directory() / "target"
3
3
tests_dir := justfile_directory() / "tests"
4
4
tests_manifest := tests_dir / "Cargo.toml"
+2
-2
src/crates/cli/Cargo.toml
reviewed
···
2
2
name = "candelabra-cli"
3
3
version = "0.1.0"
4
4
edition = "2021"
5
5
-
default-run = "candelabra"
5
5
+
default-run = "candelabra-cli"
6
6
7
7
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
8
8
···
17
17
tabled = "0.14.0"
18
18
19
19
[[bin]]
20
20
-
name = "candelabra"
20
20
+
name = "candelabra-cli"
21
21
path = "src/main.rs"