···336336 [
337337 gitMinimal
338338 openssh
339339- # TODO (#409339): remove this patch. We had to add it to avoid a mass rebuild
340340- # for the 25.05 release. Once the staging cycle referenced in the above PR completes,
341341- # switch back to plain util-linux.
342342- util-linux.withPatches
339339+ util-linuxMinimal
343340 iproute2
344341 ethtool
345342 thin-provisioning-tools
···332332 ldflags = versionldflags;
333333 }).overrideAttrs
334334 overrideContainerdAttrs;
335335-336336- # TODO (#409339): remove this patch. We had to add it to avoid a mass rebuild
337337- # for the 25.05 release. Once the staging cycle referenced in the above PR completes,
338338- # switch back to plain util-linuxMinimal.
339339- k3sUtilLinux = util-linuxMinimal.withPatches;
340335in
341336buildGoModule rec {
342337 pname = "k3s";
···383378 ipset
384379 bridge-utils
385380 ethtool
386386- k3sUtilLinux # kubelet wants 'nsenter' and 'mount' from util-linux: https://github.com/kubernetes/kubernetes/issues/26093#issuecomment-705994388
381381+ util-linuxMinimal # kubelet wants 'nsenter' and 'mount' from util-linux: https://github.com/kubernetes/kubernetes/issues/26093#issuecomment-705994388
387382 conntrack-tools
388383 runc
389384 bash
+8-4
pkgs/by-name/ag/agorakit/package.nix
···22 lib,
33 fetchFromGitHub,
44 php82,
55+ nix-update-script,
56 dataDir ? "/var/lib/agorakit",
67}:
7889php82.buildComposerProject2 (finalAttrs: {
910 pname = "agorakit";
1010- version = "1.9.3";
1111+ version = "1.11";
11121213 src = fetchFromGitHub {
1314 owner = "agorakit";
1415 repo = "agorakit";
1515- tag = finalAttrs.version;
1616- sha256 = "sha256-mBBl/8nXG3FsMeecbERLyY2tGFhh+5nS8A4nd7HI+8c=";
1616+ tag = "v${finalAttrs.version}";
1717+ sha256 = "sha256-YCHszRi+atEkaM9bHncpRtQsuiS6P22yKSqYzXq8flk=";
1718 };
18191920 installPhase = ''
···2627 runHook postInstall
2728 '';
28292929- vendorHash = "sha256-PBymOrvorGfByTBVu/r+kBxQya5qIlu07mfu4ttT7xs=";
3030+ vendorHash = "sha256-tBB3Zl/N1XqPTD84at5WoGrD0G5rJbobk4E8BFOSm+M=";
3031 composerStrictValidation = false;
31323333+ passthru.updateScript = nix-update-script { };
3434+3235 meta = {
3336 description = "Web-based, open-source groupware";
3437 longDescription = "AgoraKit is web-based, open-source groupware for citizens' initiatives. By creating collaborative groups, people can discuss topics, organize events, store files and keep everyone updated as needed. AgoraKit is a forum, calendar, file manager and email notifier.";
···3639 license = lib.licenses.agpl3Only;
3740 platforms = lib.platforms.all;
3841 maintainers = with lib.maintainers; [ shogo ];
4242+ teams = with lib.teams; [ ngi ];
3943 };
4044})
···205205 '';
206206207207 passthru = {
208208- # TODO (#409339): Remove this hack. We had to add it to avoid a mass rebuild
209209- # for the 25.05 release to fix Kubernetes. Once the staging cycle referenced
210210- # in the above PR completes, this passthru and all consumers of it should go away.
211211- withPatches = finalPackage.overrideAttrs (prev: {
212212- patches = lib.unique (
213213- prev.patches or [ ]
214214- ++ [
215215- ./fix-mount-regression.patch
216216- ]
217217- );
218218- });
219219-220208 updateScript = gitUpdater {
221209 # No nicer place to find latest release.
222210 url = "https://git.kernel.org/pub/scm/utils/util-linux/util-linux.git";