Skip to content

Commit b281282

Browse files
Merge master into staging-next
2 parents 983620c + ff07dec commit b281282

File tree

43 files changed

+251
-633
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+251
-633
lines changed

nixos/modules/module-list.nix

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -355,7 +355,6 @@
355355
./programs/xonsh.nix
356356
./programs/xss-lock.nix
357357
./programs/xwayland.nix
358-
./programs/yabar.nix
359358
./programs/yazi.nix
360359
./programs/ydotool.nix
361360
./programs/yubikey-touch-detector.nix

nixos/modules/programs/yabar.nix

Lines changed: 0 additions & 187 deletions
This file was deleted.

nixos/modules/rename.nix

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,9 @@ in
7575
"way-cooler is abandoned by its author: "
7676
+ "https://way-cooler.org/blog/2020/01/09/way-cooler-post-mortem.html"
7777
))
78+
(mkRemovedOptionModule [ "programs" "yabar" ]
79+
"programs.yabar has been removed from NixOS. This is because the yabar repository has been archived upstream."
80+
)
7881
(mkRemovedOptionModule [ "security" "hideProcessInformation" ] ''
7982
The hidepid module was removed, since the underlying machinery
8083
is broken when using cgroups-v2.

nixos/modules/services/logging/vector.nix

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,15 @@ in
2222
'';
2323
};
2424

25+
gracefulShutdownLimitSecs = lib.mkOption {
26+
type = lib.types.ints.positive;
27+
default = 60;
28+
description = ''
29+
Set the duration in seconds to wait for graceful shutdown after SIGINT or SIGTERM are received.
30+
After the duration has passed, Vector will force shutdown.
31+
'';
32+
};
33+
2534
settings = lib.mkOption {
2635
type = (pkgs.formats.json { }).type;
2736
default = { };
@@ -56,7 +65,7 @@ in
5665
'';
5766
in
5867
{
59-
ExecStart = "${lib.getExe cfg.package} --config ${validateConfig conf}";
68+
ExecStart = "${lib.getExe cfg.package} --config ${validateConfig conf} --graceful-shutdown-limit-secs ${builtins.toString cfg.gracefulShutdownLimitSecs}";
6069
DynamicUser = true;
6170
Restart = "always";
6271
StateDirectory = "vector";

nixos/tests/all-tests.nix

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1508,7 +1508,6 @@ in
15081508
xss-lock = runTest ./xss-lock.nix;
15091509
xterm = runTest ./xterm.nix;
15101510
xxh = runTest ./xxh.nix;
1511-
yabar = runTest ./yabar.nix;
15121511
yarr = runTest ./yarr.nix;
15131512
ydotool = handleTest ./ydotool.nix { };
15141513
yggdrasil = runTest ./yggdrasil.nix;

nixos/tests/yabar.nix

Lines changed: 0 additions & 30 deletions
This file was deleted.

pkgs/applications/editors/vscode/extensions/reditorsupport.r/default.nix

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
vscode-utils,
44
jq,
55
moreutils,
6-
python311Packages,
76
R,
87
rPackages,
8+
radian,
99
}:
1010

1111
vscode-utils.buildVscodeMarketplaceExtension {
@@ -20,16 +20,16 @@ vscode-utils.buildVscodeMarketplaceExtension {
2020
moreutils
2121
];
2222
buildInputs = [
23-
python311Packages.radian
23+
radian
2424
R
2525
rPackages.languageserver
2626
];
2727
postInstall = ''
2828
cd "$out/$installPrefix"
2929
jq '.contributes.configuration.properties."r.rpath.mac".default = "${lib.getExe' R "R"}"' package.json | sponge package.json
3030
jq '.contributes.configuration.properties."r.rpath.linux".default = "${lib.getExe' R "R"}"' package.json | sponge package.json
31-
jq '.contributes.configuration.properties."r.rterm.mac".default = "${lib.getExe python311Packages.radian}"' package.json | sponge package.json
32-
jq '.contributes.configuration.properties."r.rterm.linux".default = "${lib.getExe python311Packages.radian}"' package.json | sponge package.json
31+
jq '.contributes.configuration.properties."r.rterm.mac".default = "${lib.getExe radian}"' package.json | sponge package.json
32+
jq '.contributes.configuration.properties."r.rterm.linux".default = "${lib.getExe radian}"' package.json | sponge package.json
3333
'';
3434
meta = {
3535
changelog = "https://marketplace.visualstudio.com/items/REditorSupport.r/changelog";

pkgs/applications/window-managers/yabar/build.nix

Lines changed: 0 additions & 93 deletions
This file was deleted.

0 commit comments

Comments
 (0)