├── .envrc ├── .github ├── dependabot.yml └── workflows │ ├── automerge.yml │ ├── publish.yml │ ├── test.yml │ └── update-flake-inputs.yml ├── .gitignore ├── .mergify.yml ├── LICENSE.rst ├── MANIFEST.in ├── README.md ├── bin ├── create-release.sh └── nix-update ├── default.nix ├── flake.lock ├── flake.nix ├── nix_update ├── __init__.py ├── cargo.py ├── dependency_hashes.py ├── diff_urls.py ├── errors.py ├── eval.nix ├── eval.py ├── git.py ├── hashes.py ├── lockfile.py ├── options.py ├── update.py ├── utils.py ├── version │ ├── __init__.py │ ├── bitbucket.py │ ├── crate.py │ ├── gitea.py │ ├── github.py │ ├── gitlab.py │ ├── http.py │ ├── npm.py │ ├── pypi.py │ ├── rubygems.py │ ├── savannah.py │ ├── sourcehut.py │ └── version.py └── version_info.py ├── pyproject.toml ├── renovate.json ├── tests ├── __init__.py ├── conftest.py ├── consul.patch ├── pytest_shard │ ├── __init__.py │ └── pytest_shard.py ├── test_bitbucket.py ├── test_branch.py ├── test_branch_commits_master.atom ├── test_branch_releases.atom ├── test_branch_releases.json ├── test_build_without_flake.py ├── test_cargo_lock_expand.py ├── test_cargo_lock_generate.py ├── test_cargo_lock_update.py ├── test_cargo_vendor_deps.py ├── test_composer.py ├── test_composer_old.py ├── test_fetchurl_github_release.py ├── test_flake.py ├── test_flake_use_update_script.py ├── test_fod_subpackage.py ├── test_git.py ├── test_gitea.py ├── test_github.py ├── test_gitlab.py ├── test_gradle_mitm_cache.py ├── test_hash_extraction.py ├── test_maven.py ├── test_mix.py ├── test_npm.py ├── test_npm_fetch_latest_version.py ├── test_npm_lock_generate.py ├── test_npm_package.py ├── test_npm_scoped.py ├── test_nuget_deps_generate.py ├── test_options.py ├── test_pnpm.py ├── test_pypi.py ├── test_savanna.py ├── test_sourcehut.py ├── test_src_only.py ├── test_subpackage.py ├── test_update.py ├── test_version_regex_no_rev.py └── testpkgs │ ├── bitbucket.nix │ ├── cargo-lock-expand │ ├── Cargo.lock │ └── default.nix │ ├── cargo-lock-generate │ ├── simple │ │ ├── Cargo.lock │ │ └── default.nix │ ├── with-lockfile-metadata-path-outside-workspace │ │ ├── Cargo.lock │ │ └── default.nix │ └── with-lockfile-metadata-path │ │ ├── Cargo.lock │ │ └── default.nix │ ├── cargo-lock-update │ └── default.nix │ ├── cargo-vendor-deps │ ├── non-rust-package.nix │ └── rust-package.nix │ ├── composer-old.nix │ ├── composer.nix │ ├── crate.nix │ ├── default.nix │ ├── fetchurl-github-release.nix │ ├── flake-use-update-script.nix │ ├── flake.nix │ ├── fod-subpackage.nix │ ├── gitea.nix │ ├── github-fetchtree-private.nix │ ├── github-fetchtree.nix │ ├── github-forcefetchgit.nix │ ├── github-no-release.nix │ ├── github-tag.nix │ ├── github.nix │ ├── gitlab.nix │ ├── gradle-mitm-cache │ ├── default.nix │ └── deps.json │ ├── let-bound-version.nix │ ├── maven.nix │ ├── mix.nix │ ├── net-news-wire.nix │ ├── npm-lock-generate │ ├── default.nix │ └── package-lock.json │ ├── npm-package.nix │ ├── npm-scoped.nix │ ├── npm.nix │ ├── nuget-deps-generate │ ├── default.nix │ └── deps.json │ ├── pnpm.nix │ ├── postgresql.nix │ ├── pypi.nix │ ├── savanna.nix │ ├── set.nix │ ├── sourcehut-snapshot.nix │ ├── sourcehut.nix │ └── subpackage.nix └── treefmt.nix /.envrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mic92/nix-update/HEAD/.envrc -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mic92/nix-update/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/automerge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mic92/nix-update/HEAD/.github/workflows/automerge.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mic92/nix-update/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mic92/nix-update/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.github/workflows/update-flake-inputs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mic92/nix-update/HEAD/.github/workflows/update-flake-inputs.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mic92/nix-update/HEAD/.gitignore -------------------------------------------------------------------------------- /.mergify.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mic92/nix-update/HEAD/.mergify.yml -------------------------------------------------------------------------------- /LICENSE.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mic92/nix-update/HEAD/LICENSE.rst -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include nix_update/eval.nix 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mic92/nix-update/HEAD/README.md -------------------------------------------------------------------------------- /bin/create-release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mic92/nix-update/HEAD/bin/create-release.sh -------------------------------------------------------------------------------- /bin/nix-update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mic92/nix-update/HEAD/bin/nix-update -------------------------------------------------------------------------------- /default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mic92/nix-update/HEAD/default.nix -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mic92/nix-update/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mic92/nix-update/HEAD/flake.nix -------------------------------------------------------------------------------- /nix_update/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mic92/nix-update/HEAD/nix_update/__init__.py -------------------------------------------------------------------------------- /nix_update/cargo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mic92/nix-update/HEAD/nix_update/cargo.py -------------------------------------------------------------------------------- /nix_update/dependency_hashes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mic92/nix-update/HEAD/nix_update/dependency_hashes.py -------------------------------------------------------------------------------- /nix_update/diff_urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mic92/nix-update/HEAD/nix_update/diff_urls.py -------------------------------------------------------------------------------- /nix_update/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mic92/nix-update/HEAD/nix_update/errors.py -------------------------------------------------------------------------------- /nix_update/eval.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mic92/nix-update/HEAD/nix_update/eval.nix -------------------------------------------------------------------------------- /nix_update/eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mic92/nix-update/HEAD/nix_update/eval.py -------------------------------------------------------------------------------- /nix_update/git.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mic92/nix-update/HEAD/nix_update/git.py -------------------------------------------------------------------------------- /nix_update/hashes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mic92/nix-update/HEAD/nix_update/hashes.py -------------------------------------------------------------------------------- /nix_update/lockfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mic92/nix-update/HEAD/nix_update/lockfile.py -------------------------------------------------------------------------------- /nix_update/options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mic92/nix-update/HEAD/nix_update/options.py -------------------------------------------------------------------------------- /nix_update/update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mic92/nix-update/HEAD/nix_update/update.py -------------------------------------------------------------------------------- /nix_update/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mic92/nix-update/HEAD/nix_update/utils.py -------------------------------------------------------------------------------- /nix_update/version/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mic92/nix-update/HEAD/nix_update/version/__init__.py -------------------------------------------------------------------------------- /nix_update/version/bitbucket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mic92/nix-update/HEAD/nix_update/version/bitbucket.py -------------------------------------------------------------------------------- /nix_update/version/crate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mic92/nix-update/HEAD/nix_update/version/crate.py -------------------------------------------------------------------------------- /nix_update/version/gitea.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mic92/nix-update/HEAD/nix_update/version/gitea.py -------------------------------------------------------------------------------- /nix_update/version/github.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mic92/nix-update/HEAD/nix_update/version/github.py -------------------------------------------------------------------------------- /nix_update/version/gitlab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mic92/nix-update/HEAD/nix_update/version/gitlab.py -------------------------------------------------------------------------------- /nix_update/version/http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mic92/nix-update/HEAD/nix_update/version/http.py -------------------------------------------------------------------------------- /nix_update/version/npm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mic92/nix-update/HEAD/nix_update/version/npm.py -------------------------------------------------------------------------------- /nix_update/version/pypi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mic92/nix-update/HEAD/nix_update/version/pypi.py -------------------------------------------------------------------------------- /nix_update/version/rubygems.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mic92/nix-update/HEAD/nix_update/version/rubygems.py -------------------------------------------------------------------------------- /nix_update/version/savannah.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mic92/nix-update/HEAD/nix_update/version/savannah.py -------------------------------------------------------------------------------- /nix_update/version/sourcehut.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mic92/nix-update/HEAD/nix_update/version/sourcehut.py -------------------------------------------------------------------------------- /nix_update/version/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mic92/nix-update/HEAD/nix_update/version/version.py -------------------------------------------------------------------------------- /nix_update/version_info.py: -------------------------------------------------------------------------------- 1 | VERSION = "v1.14.0" 2 | -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mic92/nix-update/HEAD/pyproject.toml -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mic92/nix-update/HEAD/renovate.json -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mic92/nix-update/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mic92/nix-update/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/consul.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mic92/nix-update/HEAD/tests/consul.patch -------------------------------------------------------------------------------- /tests/pytest_shard/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mic92/nix-update/HEAD/tests/pytest_shard/__init__.py -------------------------------------------------------------------------------- /tests/pytest_shard/pytest_shard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mic92/nix-update/HEAD/tests/pytest_shard/pytest_shard.py -------------------------------------------------------------------------------- /tests/test_bitbucket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mic92/nix-update/HEAD/tests/test_bitbucket.py -------------------------------------------------------------------------------- /tests/test_branch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mic92/nix-update/HEAD/tests/test_branch.py -------------------------------------------------------------------------------- /tests/test_branch_commits_master.atom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mic92/nix-update/HEAD/tests/test_branch_commits_master.atom -------------------------------------------------------------------------------- /tests/test_branch_releases.atom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mic92/nix-update/HEAD/tests/test_branch_releases.atom -------------------------------------------------------------------------------- /tests/test_branch_releases.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mic92/nix-update/HEAD/tests/test_branch_releases.json -------------------------------------------------------------------------------- /tests/test_build_without_flake.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mic92/nix-update/HEAD/tests/test_build_without_flake.py -------------------------------------------------------------------------------- /tests/test_cargo_lock_expand.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mic92/nix-update/HEAD/tests/test_cargo_lock_expand.py -------------------------------------------------------------------------------- /tests/test_cargo_lock_generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mic92/nix-update/HEAD/tests/test_cargo_lock_generate.py -------------------------------------------------------------------------------- /tests/test_cargo_lock_update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mic92/nix-update/HEAD/tests/test_cargo_lock_update.py -------------------------------------------------------------------------------- /tests/test_cargo_vendor_deps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mic92/nix-update/HEAD/tests/test_cargo_vendor_deps.py -------------------------------------------------------------------------------- /tests/test_composer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mic92/nix-update/HEAD/tests/test_composer.py -------------------------------------------------------------------------------- /tests/test_composer_old.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mic92/nix-update/HEAD/tests/test_composer_old.py -------------------------------------------------------------------------------- /tests/test_fetchurl_github_release.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mic92/nix-update/HEAD/tests/test_fetchurl_github_release.py -------------------------------------------------------------------------------- /tests/test_flake.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mic92/nix-update/HEAD/tests/test_flake.py -------------------------------------------------------------------------------- /tests/test_flake_use_update_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mic92/nix-update/HEAD/tests/test_flake_use_update_script.py -------------------------------------------------------------------------------- /tests/test_fod_subpackage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mic92/nix-update/HEAD/tests/test_fod_subpackage.py -------------------------------------------------------------------------------- /tests/test_git.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mic92/nix-update/HEAD/tests/test_git.py -------------------------------------------------------------------------------- /tests/test_gitea.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mic92/nix-update/HEAD/tests/test_gitea.py -------------------------------------------------------------------------------- /tests/test_github.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mic92/nix-update/HEAD/tests/test_github.py -------------------------------------------------------------------------------- /tests/test_gitlab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mic92/nix-update/HEAD/tests/test_gitlab.py -------------------------------------------------------------------------------- /tests/test_gradle_mitm_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mic92/nix-update/HEAD/tests/test_gradle_mitm_cache.py -------------------------------------------------------------------------------- /tests/test_hash_extraction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mic92/nix-update/HEAD/tests/test_hash_extraction.py -------------------------------------------------------------------------------- /tests/test_maven.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mic92/nix-update/HEAD/tests/test_maven.py -------------------------------------------------------------------------------- /tests/test_mix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mic92/nix-update/HEAD/tests/test_mix.py -------------------------------------------------------------------------------- /tests/test_npm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mic92/nix-update/HEAD/tests/test_npm.py -------------------------------------------------------------------------------- /tests/test_npm_fetch_latest_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mic92/nix-update/HEAD/tests/test_npm_fetch_latest_version.py -------------------------------------------------------------------------------- /tests/test_npm_lock_generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mic92/nix-update/HEAD/tests/test_npm_lock_generate.py -------------------------------------------------------------------------------- /tests/test_npm_package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mic92/nix-update/HEAD/tests/test_npm_package.py -------------------------------------------------------------------------------- /tests/test_npm_scoped.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mic92/nix-update/HEAD/tests/test_npm_scoped.py -------------------------------------------------------------------------------- /tests/test_nuget_deps_generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mic92/nix-update/HEAD/tests/test_nuget_deps_generate.py -------------------------------------------------------------------------------- /tests/test_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mic92/nix-update/HEAD/tests/test_options.py -------------------------------------------------------------------------------- /tests/test_pnpm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mic92/nix-update/HEAD/tests/test_pnpm.py -------------------------------------------------------------------------------- /tests/test_pypi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mic92/nix-update/HEAD/tests/test_pypi.py -------------------------------------------------------------------------------- /tests/test_savanna.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mic92/nix-update/HEAD/tests/test_savanna.py -------------------------------------------------------------------------------- /tests/test_sourcehut.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mic92/nix-update/HEAD/tests/test_sourcehut.py -------------------------------------------------------------------------------- /tests/test_src_only.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mic92/nix-update/HEAD/tests/test_src_only.py -------------------------------------------------------------------------------- /tests/test_subpackage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mic92/nix-update/HEAD/tests/test_subpackage.py -------------------------------------------------------------------------------- /tests/test_update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mic92/nix-update/HEAD/tests/test_update.py -------------------------------------------------------------------------------- /tests/test_version_regex_no_rev.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mic92/nix-update/HEAD/tests/test_version_regex_no_rev.py -------------------------------------------------------------------------------- /tests/testpkgs/bitbucket.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mic92/nix-update/HEAD/tests/testpkgs/bitbucket.nix -------------------------------------------------------------------------------- /tests/testpkgs/cargo-lock-expand/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mic92/nix-update/HEAD/tests/testpkgs/cargo-lock-expand/Cargo.lock -------------------------------------------------------------------------------- /tests/testpkgs/cargo-lock-expand/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mic92/nix-update/HEAD/tests/testpkgs/cargo-lock-expand/default.nix -------------------------------------------------------------------------------- /tests/testpkgs/cargo-lock-generate/simple/Cargo.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testpkgs/cargo-lock-generate/simple/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mic92/nix-update/HEAD/tests/testpkgs/cargo-lock-generate/simple/default.nix -------------------------------------------------------------------------------- /tests/testpkgs/cargo-lock-generate/with-lockfile-metadata-path-outside-workspace/Cargo.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testpkgs/cargo-lock-generate/with-lockfile-metadata-path-outside-workspace/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mic92/nix-update/HEAD/tests/testpkgs/cargo-lock-generate/with-lockfile-metadata-path-outside-workspace/default.nix -------------------------------------------------------------------------------- /tests/testpkgs/cargo-lock-generate/with-lockfile-metadata-path/Cargo.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testpkgs/cargo-lock-generate/with-lockfile-metadata-path/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mic92/nix-update/HEAD/tests/testpkgs/cargo-lock-generate/with-lockfile-metadata-path/default.nix -------------------------------------------------------------------------------- /tests/testpkgs/cargo-lock-update/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mic92/nix-update/HEAD/tests/testpkgs/cargo-lock-update/default.nix -------------------------------------------------------------------------------- /tests/testpkgs/cargo-vendor-deps/non-rust-package.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mic92/nix-update/HEAD/tests/testpkgs/cargo-vendor-deps/non-rust-package.nix -------------------------------------------------------------------------------- /tests/testpkgs/cargo-vendor-deps/rust-package.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mic92/nix-update/HEAD/tests/testpkgs/cargo-vendor-deps/rust-package.nix -------------------------------------------------------------------------------- /tests/testpkgs/composer-old.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mic92/nix-update/HEAD/tests/testpkgs/composer-old.nix -------------------------------------------------------------------------------- /tests/testpkgs/composer.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mic92/nix-update/HEAD/tests/testpkgs/composer.nix -------------------------------------------------------------------------------- /tests/testpkgs/crate.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mic92/nix-update/HEAD/tests/testpkgs/crate.nix -------------------------------------------------------------------------------- /tests/testpkgs/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mic92/nix-update/HEAD/tests/testpkgs/default.nix -------------------------------------------------------------------------------- /tests/testpkgs/fetchurl-github-release.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mic92/nix-update/HEAD/tests/testpkgs/fetchurl-github-release.nix -------------------------------------------------------------------------------- /tests/testpkgs/flake-use-update-script.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mic92/nix-update/HEAD/tests/testpkgs/flake-use-update-script.nix -------------------------------------------------------------------------------- /tests/testpkgs/flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mic92/nix-update/HEAD/tests/testpkgs/flake.nix -------------------------------------------------------------------------------- /tests/testpkgs/fod-subpackage.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mic92/nix-update/HEAD/tests/testpkgs/fod-subpackage.nix -------------------------------------------------------------------------------- /tests/testpkgs/gitea.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mic92/nix-update/HEAD/tests/testpkgs/gitea.nix -------------------------------------------------------------------------------- /tests/testpkgs/github-fetchtree-private.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mic92/nix-update/HEAD/tests/testpkgs/github-fetchtree-private.nix -------------------------------------------------------------------------------- /tests/testpkgs/github-fetchtree.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mic92/nix-update/HEAD/tests/testpkgs/github-fetchtree.nix -------------------------------------------------------------------------------- /tests/testpkgs/github-forcefetchgit.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mic92/nix-update/HEAD/tests/testpkgs/github-forcefetchgit.nix -------------------------------------------------------------------------------- /tests/testpkgs/github-no-release.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mic92/nix-update/HEAD/tests/testpkgs/github-no-release.nix -------------------------------------------------------------------------------- /tests/testpkgs/github-tag.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mic92/nix-update/HEAD/tests/testpkgs/github-tag.nix -------------------------------------------------------------------------------- /tests/testpkgs/github.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mic92/nix-update/HEAD/tests/testpkgs/github.nix -------------------------------------------------------------------------------- /tests/testpkgs/gitlab.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mic92/nix-update/HEAD/tests/testpkgs/gitlab.nix -------------------------------------------------------------------------------- /tests/testpkgs/gradle-mitm-cache/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mic92/nix-update/HEAD/tests/testpkgs/gradle-mitm-cache/default.nix -------------------------------------------------------------------------------- /tests/testpkgs/gradle-mitm-cache/deps.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /tests/testpkgs/let-bound-version.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mic92/nix-update/HEAD/tests/testpkgs/let-bound-version.nix -------------------------------------------------------------------------------- /tests/testpkgs/maven.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mic92/nix-update/HEAD/tests/testpkgs/maven.nix -------------------------------------------------------------------------------- /tests/testpkgs/mix.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mic92/nix-update/HEAD/tests/testpkgs/mix.nix -------------------------------------------------------------------------------- /tests/testpkgs/net-news-wire.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mic92/nix-update/HEAD/tests/testpkgs/net-news-wire.nix -------------------------------------------------------------------------------- /tests/testpkgs/npm-lock-generate/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mic92/nix-update/HEAD/tests/testpkgs/npm-lock-generate/default.nix -------------------------------------------------------------------------------- /tests/testpkgs/npm-lock-generate/package-lock.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testpkgs/npm-package.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mic92/nix-update/HEAD/tests/testpkgs/npm-package.nix -------------------------------------------------------------------------------- /tests/testpkgs/npm-scoped.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mic92/nix-update/HEAD/tests/testpkgs/npm-scoped.nix -------------------------------------------------------------------------------- /tests/testpkgs/npm.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mic92/nix-update/HEAD/tests/testpkgs/npm.nix -------------------------------------------------------------------------------- /tests/testpkgs/nuget-deps-generate/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mic92/nix-update/HEAD/tests/testpkgs/nuget-deps-generate/default.nix -------------------------------------------------------------------------------- /tests/testpkgs/nuget-deps-generate/deps.json: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /tests/testpkgs/pnpm.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mic92/nix-update/HEAD/tests/testpkgs/pnpm.nix -------------------------------------------------------------------------------- /tests/testpkgs/postgresql.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mic92/nix-update/HEAD/tests/testpkgs/postgresql.nix -------------------------------------------------------------------------------- /tests/testpkgs/pypi.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mic92/nix-update/HEAD/tests/testpkgs/pypi.nix -------------------------------------------------------------------------------- /tests/testpkgs/savanna.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mic92/nix-update/HEAD/tests/testpkgs/savanna.nix -------------------------------------------------------------------------------- /tests/testpkgs/set.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mic92/nix-update/HEAD/tests/testpkgs/set.nix -------------------------------------------------------------------------------- /tests/testpkgs/sourcehut-snapshot.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mic92/nix-update/HEAD/tests/testpkgs/sourcehut-snapshot.nix -------------------------------------------------------------------------------- /tests/testpkgs/sourcehut.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mic92/nix-update/HEAD/tests/testpkgs/sourcehut.nix -------------------------------------------------------------------------------- /tests/testpkgs/subpackage.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mic92/nix-update/HEAD/tests/testpkgs/subpackage.nix -------------------------------------------------------------------------------- /treefmt.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mic92/nix-update/HEAD/treefmt.nix --------------------------------------------------------------------------------