├── .editorconfig ├── .github ├── PULL_REQUEST_TEMPLATE.md ├── renovate.json └── workflows │ ├── check-nix-format.yml │ ├── pr.yml │ └── update.yml ├── .gitignore ├── LICENSE ├── README.md ├── bin └── nur ├── bors.toml ├── ci ├── flake.lock ├── flake.nix ├── lib │ └── setup-git.sh ├── nur.nix ├── nur │ ├── __init__.py │ ├── combine.py │ ├── error.py │ ├── eval.py │ ├── fileutils.py │ ├── format_manifest.py │ ├── index.py │ ├── manifest.py │ ├── path.py │ ├── prefetch.py │ └── update.py ├── pyproject.toml ├── setup.py ├── test.sh ├── update-nur-combined.sh ├── update-nur-search.sh └── update-nur.sh ├── default.nix ├── flake.lock ├── flake.nix ├── lib ├── evalRepo.nix └── repoSource.nix ├── repos.json └── repos.json.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/NUR/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/NUR/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/NUR/HEAD/.github/renovate.json -------------------------------------------------------------------------------- /.github/workflows/check-nix-format.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/NUR/HEAD/.github/workflows/check-nix-format.yml -------------------------------------------------------------------------------- /.github/workflows/pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/NUR/HEAD/.github/workflows/pr.yml -------------------------------------------------------------------------------- /.github/workflows/update.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/NUR/HEAD/.github/workflows/update.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/NUR/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/NUR/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/NUR/HEAD/README.md -------------------------------------------------------------------------------- /bin/nur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/NUR/HEAD/bin/nur -------------------------------------------------------------------------------- /bors.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/NUR/HEAD/bors.toml -------------------------------------------------------------------------------- /ci/flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/NUR/HEAD/ci/flake.lock -------------------------------------------------------------------------------- /ci/flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/NUR/HEAD/ci/flake.nix -------------------------------------------------------------------------------- /ci/lib/setup-git.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/NUR/HEAD/ci/lib/setup-git.sh -------------------------------------------------------------------------------- /ci/nur.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/NUR/HEAD/ci/nur.nix -------------------------------------------------------------------------------- /ci/nur/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/NUR/HEAD/ci/nur/__init__.py -------------------------------------------------------------------------------- /ci/nur/combine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/NUR/HEAD/ci/nur/combine.py -------------------------------------------------------------------------------- /ci/nur/error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/NUR/HEAD/ci/nur/error.py -------------------------------------------------------------------------------- /ci/nur/eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/NUR/HEAD/ci/nur/eval.py -------------------------------------------------------------------------------- /ci/nur/fileutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/NUR/HEAD/ci/nur/fileutils.py -------------------------------------------------------------------------------- /ci/nur/format_manifest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/NUR/HEAD/ci/nur/format_manifest.py -------------------------------------------------------------------------------- /ci/nur/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/NUR/HEAD/ci/nur/index.py -------------------------------------------------------------------------------- /ci/nur/manifest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/NUR/HEAD/ci/nur/manifest.py -------------------------------------------------------------------------------- /ci/nur/path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/NUR/HEAD/ci/nur/path.py -------------------------------------------------------------------------------- /ci/nur/prefetch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/NUR/HEAD/ci/nur/prefetch.py -------------------------------------------------------------------------------- /ci/nur/update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/NUR/HEAD/ci/nur/update.py -------------------------------------------------------------------------------- /ci/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/NUR/HEAD/ci/pyproject.toml -------------------------------------------------------------------------------- /ci/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/NUR/HEAD/ci/setup.py -------------------------------------------------------------------------------- /ci/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/NUR/HEAD/ci/test.sh -------------------------------------------------------------------------------- /ci/update-nur-combined.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/NUR/HEAD/ci/update-nur-combined.sh -------------------------------------------------------------------------------- /ci/update-nur-search.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/NUR/HEAD/ci/update-nur-search.sh -------------------------------------------------------------------------------- /ci/update-nur.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/NUR/HEAD/ci/update-nur.sh -------------------------------------------------------------------------------- /default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/NUR/HEAD/default.nix -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/NUR/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/NUR/HEAD/flake.nix -------------------------------------------------------------------------------- /lib/evalRepo.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/NUR/HEAD/lib/evalRepo.nix -------------------------------------------------------------------------------- /lib/repoSource.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/NUR/HEAD/lib/repoSource.nix -------------------------------------------------------------------------------- /repos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/NUR/HEAD/repos.json -------------------------------------------------------------------------------- /repos.json.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/NUR/HEAD/repos.json.lock --------------------------------------------------------------------------------