├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── README.md ├── default.nix ├── flake.nix ├── nilla-cli-def ├── Cargo.lock ├── Cargo.toml └── src │ ├── commands │ ├── build.rs │ ├── completions.rs │ ├── mod.rs │ ├── run.rs │ ├── shell.rs │ └── show.rs │ └── lib.rs ├── nilla.nix ├── npins ├── default.nix └── sources.json └── src ├── commands ├── build.rs ├── mod.rs ├── run.rs ├── shell.rs └── show.rs ├── lib.rs ├── main.rs └── util ├── errors.rs ├── git.rs ├── mod.rs ├── nix.rs ├── project.rs └── search.rs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilla-nix/cli/HEAD/.gitignore -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilla-nix/cli/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilla-nix/cli/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilla-nix/cli/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilla-nix/cli/HEAD/README.md -------------------------------------------------------------------------------- /default.nix: -------------------------------------------------------------------------------- 1 | import ./nilla.nix 2 | -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilla-nix/cli/HEAD/flake.nix -------------------------------------------------------------------------------- /nilla-cli-def/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilla-nix/cli/HEAD/nilla-cli-def/Cargo.lock -------------------------------------------------------------------------------- /nilla-cli-def/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilla-nix/cli/HEAD/nilla-cli-def/Cargo.toml -------------------------------------------------------------------------------- /nilla-cli-def/src/commands/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilla-nix/cli/HEAD/nilla-cli-def/src/commands/build.rs -------------------------------------------------------------------------------- /nilla-cli-def/src/commands/completions.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilla-nix/cli/HEAD/nilla-cli-def/src/commands/completions.rs -------------------------------------------------------------------------------- /nilla-cli-def/src/commands/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilla-nix/cli/HEAD/nilla-cli-def/src/commands/mod.rs -------------------------------------------------------------------------------- /nilla-cli-def/src/commands/run.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilla-nix/cli/HEAD/nilla-cli-def/src/commands/run.rs -------------------------------------------------------------------------------- /nilla-cli-def/src/commands/shell.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilla-nix/cli/HEAD/nilla-cli-def/src/commands/shell.rs -------------------------------------------------------------------------------- /nilla-cli-def/src/commands/show.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilla-nix/cli/HEAD/nilla-cli-def/src/commands/show.rs -------------------------------------------------------------------------------- /nilla-cli-def/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilla-nix/cli/HEAD/nilla-cli-def/src/lib.rs -------------------------------------------------------------------------------- /nilla.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilla-nix/cli/HEAD/nilla.nix -------------------------------------------------------------------------------- /npins/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilla-nix/cli/HEAD/npins/default.nix -------------------------------------------------------------------------------- /npins/sources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilla-nix/cli/HEAD/npins/sources.json -------------------------------------------------------------------------------- /src/commands/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilla-nix/cli/HEAD/src/commands/build.rs -------------------------------------------------------------------------------- /src/commands/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilla-nix/cli/HEAD/src/commands/mod.rs -------------------------------------------------------------------------------- /src/commands/run.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilla-nix/cli/HEAD/src/commands/run.rs -------------------------------------------------------------------------------- /src/commands/shell.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilla-nix/cli/HEAD/src/commands/shell.rs -------------------------------------------------------------------------------- /src/commands/show.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilla-nix/cli/HEAD/src/commands/show.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilla-nix/cli/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilla-nix/cli/HEAD/src/main.rs -------------------------------------------------------------------------------- /src/util/errors.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilla-nix/cli/HEAD/src/util/errors.rs -------------------------------------------------------------------------------- /src/util/git.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilla-nix/cli/HEAD/src/util/git.rs -------------------------------------------------------------------------------- /src/util/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilla-nix/cli/HEAD/src/util/mod.rs -------------------------------------------------------------------------------- /src/util/nix.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilla-nix/cli/HEAD/src/util/nix.rs -------------------------------------------------------------------------------- /src/util/project.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilla-nix/cli/HEAD/src/util/project.rs -------------------------------------------------------------------------------- /src/util/search.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilla-nix/cli/HEAD/src/util/search.rs --------------------------------------------------------------------------------