├── .envrc ├── .github ├── dependabot.yml └── workflows │ └── ci.yml ├── .gitignore ├── COPYING ├── Cargo.lock ├── Cargo.toml ├── README.md ├── flake.lock ├── flake.nix ├── mkrun.bash └── src ├── available.rs ├── cmd.rs ├── error.rs ├── flake.rs ├── installed.rs ├── main.rs ├── opts.rs ├── progress.rs └── repology.rs /.envrc: -------------------------------------------------------------------------------- 1 | use flake 2 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trofi/nix-olde/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trofi/nix-olde/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | result 2 | /target 3 | .direnv 4 | -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trofi/nix-olde/HEAD/COPYING -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trofi/nix-olde/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trofi/nix-olde/HEAD/Cargo.toml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trofi/nix-olde/HEAD/README.md -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trofi/nix-olde/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trofi/nix-olde/HEAD/flake.nix -------------------------------------------------------------------------------- /mkrun.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trofi/nix-olde/HEAD/mkrun.bash -------------------------------------------------------------------------------- /src/available.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trofi/nix-olde/HEAD/src/available.rs -------------------------------------------------------------------------------- /src/cmd.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trofi/nix-olde/HEAD/src/cmd.rs -------------------------------------------------------------------------------- /src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trofi/nix-olde/HEAD/src/error.rs -------------------------------------------------------------------------------- /src/flake.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trofi/nix-olde/HEAD/src/flake.rs -------------------------------------------------------------------------------- /src/installed.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trofi/nix-olde/HEAD/src/installed.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trofi/nix-olde/HEAD/src/main.rs -------------------------------------------------------------------------------- /src/opts.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trofi/nix-olde/HEAD/src/opts.rs -------------------------------------------------------------------------------- /src/progress.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trofi/nix-olde/HEAD/src/progress.rs -------------------------------------------------------------------------------- /src/repology.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trofi/nix-olde/HEAD/src/repology.rs --------------------------------------------------------------------------------