summary refs log tree commit diff
path: root/pkgs/common-updater/unstable-updater.nix
Commit message (Collapse)AuthorAge
* unstableGitUpdater: add deepClone argument for non shallow clonesJacob Moody2023-07-23
|
* unstableGitUpdater: fix inaccurate commentsAlyssa Ross2022-09-04
| | | | | | | It used to use src.url, but when that was changed the comments weren't updated. Fixes: 7aae279ad9a ("unstableGitUpdater: fix updating fetchzip-based sources")
* unstableGitUpdater: fix updating fetchzip-based sourcesJan Tojnar2022-05-24
| | | | | | | | | | | a67950f20b97a293b2fefeecc349c6b785321e4b added `url` attribute from `fetchurl` and therefore also from `fetchzip`. We previously relied on `url` from fetchgit-based fetchers to find the repo URL but now it will just return tarballs in the case of `fetchFrom{GitHub,GitLab}`. Let’s add an attribute to `fetch{git,FromGitHub,FromGitLab}` to expose a repo URL consistently.
* unstableGitUpdater: Allow using stable versionsJan Tojnar2022-02-18
| | | | | | | | | | | It is important to keep the version as parsed by `builtins.parseDrvName` monotonic for packages that often switch between stable and unstable versions, for nix-env to be able to update them reliably. Let’s optionally use the version format described by RFC 107: https://github.com/NixOS/rfcs/pull/107 The downside is that it requires fetching more commits to be able to determine the latest tag.
* unstableGitUpdater: Use single derivation for all branchesJan Tojnar2022-02-18
| | | | | This will reduce the number of build when updating a large number of packages at the same time (e.g. when updating all packages of a maintainer).
* unstableGitUpdater: Fix support for fetchFromGit{Hub,Lab}Jan Tojnar2022-02-18
| | | | | | | | | When `fetchFromGitHub` uses `fetchzip` instead of `fetchgit` internally, which is the most common use case, there is no `src.url` attribute so the update will fail. Let’s fix that by falling back to `src.meta.homepage`, which these fetchers set to the repository URL.
* unstable-updater.nix now understands a branch argumentAttila Lendvai2021-06-17
|
* treewide: remove stdenv where not neededPavol Rusnak2021-01-25
|
* unstableUpdater: initFrancesco Gazzetta2020-11-21