···11on:
12 schedule:
13 # * is a special character in YAML so you have to quote this string
14- # Merge every 6 hours
15 - cron: '0 0 * * *'
1617jobs:
···11on:
12 schedule:
13 # * is a special character in YAML so you have to quote this string
14+ # Merge every 24 hours
15 - cron: '0 0 * * *'
1617jobs:
···339 release instead of the old 2.31.0 version.
340 </para>
341 </listitem>
00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000342 </itemizedlist>
343 </section>
344 <section xml:id="sec-release-21.11-notable-changes">
···339 release instead of the old 2.31.0 version.
340 </para>
341 </listitem>
342+ <listitem>
343+ <para>
344+ The <literal>bitwarden_rs</literal> packages and modules were
345+ renamed to <literal>vaultwarden</literal>
346+ <link xlink:href="https://github.com/dani-garcia/vaultwarden/discussions/1642">following
347+ upstream</link>. More specifically,
348+ </para>
349+ <itemizedlist>
350+ <listitem>
351+ <para>
352+ <literal>pkgs.bitwarden_rs</literal>,
353+ <literal>pkgs.bitwarden_rs-sqlite</literal>,
354+ <literal>pkgs.bitwarden_rs-mysql</literal> and
355+ <literal>pkgs.bitwarden_rs-postgresql</literal> were
356+ renamed to <literal>pkgs.vaultwarden</literal>,
357+ <literal>pkgs.vaultwarden-sqlite</literal>,
358+ <literal>pkgs.vaultwarden-mysql</literal> and
359+ <literal>pkgs.vaultwarden-postgresql</literal>,
360+ respectively.
361+ </para>
362+ <itemizedlist spacing="compact">
363+ <listitem>
364+ <para>
365+ Old names are preserved as aliases for backwards
366+ compatibility, but may be removed in the future.
367+ </para>
368+ </listitem>
369+ <listitem>
370+ <para>
371+ The <literal>bitwarden_rs</literal> executable was
372+ also renamed to <literal>vaultwarden</literal> in all
373+ packages.
374+ </para>
375+ </listitem>
376+ </itemizedlist>
377+ </listitem>
378+ <listitem>
379+ <para>
380+ <literal>pkgs.bitwarden_rs-vault</literal> was renamed to
381+ <literal>pkgs.vaultwarden-vault</literal>.
382+ </para>
383+ <itemizedlist spacing="compact">
384+ <listitem>
385+ <para>
386+ <literal>pkgs.bitwarden_rs-vault</literal> is
387+ preserved as an alias for backwards compatibility, but
388+ may be removed in the future.
389+ </para>
390+ </listitem>
391+ <listitem>
392+ <para>
393+ The static files were moved from
394+ <literal>/usr/share/bitwarden_rs</literal> to
395+ <literal>/usr/share/vaultwarden</literal>.
396+ </para>
397+ </listitem>
398+ </itemizedlist>
399+ </listitem>
400+ <listitem>
401+ <para>
402+ The <literal>services.bitwarden_rs</literal> config module
403+ was renamed to <literal>services.vaultwarden</literal>.
404+ </para>
405+ <itemizedlist spacing="compact">
406+ <listitem>
407+ <para>
408+ <literal>services.bitwarden_rs</literal> is preserved
409+ as an alias for backwards compatibility, but may be
410+ removed in the future.
411+ </para>
412+ </listitem>
413+ </itemizedlist>
414+ </listitem>
415+ <listitem>
416+ <para>
417+ <literal>systemd.services.bitwarden_rs</literal>,
418+ <literal>systemd.services.backup-bitwarden_rs</literal>
419+ and <literal>systemd.timers.backup-bitwarden_rs</literal>
420+ were renamed to
421+ <literal>systemd.services.vaultwarden</literal>,
422+ <literal>systemd.services.backup-vaultwarden</literal> and
423+ <literal>systemd.timers.backup-vaultwarden</literal>,
424+ respectively.
425+ </para>
426+ <itemizedlist spacing="compact">
427+ <listitem>
428+ <para>
429+ Old names are preserved as aliases for backwards
430+ compatibility, but may be removed in the future.
431+ </para>
432+ </listitem>
433+ </itemizedlist>
434+ </listitem>
435+ <listitem>
436+ <para>
437+ <literal>users.users.bitwarden_rs</literal> and
438+ <literal>users.groups.bitwarden_rs</literal> were renamed
439+ to <literal>users.users.vaultwarden</literal> and
440+ <literal>users.groups.vaultwarden</literal>, respectively.
441+ </para>
442+ </listitem>
443+ <listitem>
444+ <para>
445+ The data directory remains located at
446+ <literal>/var/lib/bitwarden_rs</literal>, for backwards
447+ compatibility.
448+ </para>
449+ </listitem>
450+ </itemizedlist>
451+ </listitem>
452 </itemizedlist>
453 </section>
454 <section xml:id="sec-release-21.11-notable-changes">
+26
nixos/doc/manual/release-notes/rl-2111.section.md
···85* The `libwnck` package now defaults to the 3.x release instead of the
86 old 2.31.0 version.
870000000000000000000000000088## Other Notable Changes {#sec-release-21.11-notable-changes}
8990- The setting [`services.openssh.logLevel`](options.html#opt-services.openssh.logLevel) `"VERBOSE"` `"INFO"`. This brings NixOS in line with upstream and other Linux distributions, and reduces log spam on servers due to bruteforcing botnets.
···85* The `libwnck` package now defaults to the 3.x release instead of the
86 old 2.31.0 version.
8788+* The `bitwarden_rs` packages and modules were renamed to `vaultwarden`
89+ [following upstream](https://github.com/dani-garcia/vaultwarden/discussions/1642). More specifically,
90+91+ * `pkgs.bitwarden_rs`, `pkgs.bitwarden_rs-sqlite`, `pkgs.bitwarden_rs-mysql` and
92+ `pkgs.bitwarden_rs-postgresql` were renamed to `pkgs.vaultwarden`, `pkgs.vaultwarden-sqlite`,
93+ `pkgs.vaultwarden-mysql` and `pkgs.vaultwarden-postgresql`, respectively.
94+ * Old names are preserved as aliases for backwards compatibility, but may be removed in the future.
95+ * The `bitwarden_rs` executable was also renamed to `vaultwarden` in all packages.
96+97+ * `pkgs.bitwarden_rs-vault` was renamed to `pkgs.vaultwarden-vault`.
98+ * `pkgs.bitwarden_rs-vault` is preserved as an alias for backwards compatibility, but may be removed in the future.
99+ * The static files were moved from `/usr/share/bitwarden_rs` to `/usr/share/vaultwarden`.
100+101+ * The `services.bitwarden_rs` config module was renamed to `services.vaultwarden`.
102+ * `services.bitwarden_rs` is preserved as an alias for backwards compatibility, but may be removed in the future.
103+104+ * `systemd.services.bitwarden_rs`, `systemd.services.backup-bitwarden_rs` and `systemd.timers.backup-bitwarden_rs`
105+ were renamed to `systemd.services.vaultwarden`, `systemd.services.backup-vaultwarden` and
106+ `systemd.timers.backup-vaultwarden`, respectively.
107+ * Old names are preserved as aliases for backwards compatibility, but may be removed in the future.
108+109+ * `users.users.bitwarden_rs` and `users.groups.bitwarden_rs` were renamed to `users.users.vaultwarden` and
110+ `users.groups.vaultwarden`, respectively.
111+112+ * The data directory remains located at `/var/lib/bitwarden_rs`, for backwards compatibility.
113+114## Other Notable Changes {#sec-release-21.11-notable-changes}
115116- The setting [`services.openssh.logLevel`](options.html#opt-services.openssh.logLevel) `"VERBOSE"` `"INFO"`. This brings NixOS in line with upstream and other Linux distributions, and reduces log spam on servers due to bruteforcing botnets.
···117 --tmpdir=$TMPDIR \
118 --override-os ${os} \
119 --override-arch ${arch} \
120- copy "$sourceURL" "docker-archive://$out:$destNameTag"
0121 '';
122123 # We need to sum layer.tar, not a directory, hence tarsum instead of nix-hash.
···117 --tmpdir=$TMPDIR \
118 --override-os ${os} \
119 --override-arch ${arch} \
120+ copy "$sourceURL" "docker-archive://$out:$destNameTag" \
121+ | cat # pipe through cat to force-disable progress bar
122 '';
123124 # We need to sum layer.tar, not a directory, hence tarsum instead of nix-hash.
+1-1
pkgs/data/misc/fedora-backgrounds/generic.nix
···38 description = "A set of default and supplemental wallpapers for Fedora";
39 license = licenses.cc-by-sa-40;
40 platforms = platforms.unix;
41- maintainers = with maintainers; [ danieldk ];
42 };
43}
···38 description = "A set of default and supplemental wallpapers for Fedora";
39 license = licenses.cc-by-sa-40;
40 platforms = platforms.unix;
41+ maintainers = with maintainers; [ ];
42 };
43}
+1-1
pkgs/development/compilers/llvm/rocm/clang.nix
···65 description = "ROCm fork of the clang C/C++/Objective-C/Objective-C++ LLVM compiler frontend";
66 homepage = "https://llvm.org/";
67 license = with licenses; [ ncsa ];
68- maintainers = with maintainers; [ danieldk ];
69 platforms = platforms.linux;
70 };
71}
···65 description = "ROCm fork of the clang C/C++/Objective-C/Objective-C++ LLVM compiler frontend";
66 homepage = "https://llvm.org/";
67 license = with licenses; [ ncsa ];
68+ maintainers = with maintainers; [ ];
69 platforms = platforms.linux;
70 };
71}
···55 description = "Radeon Open Compute common language runtime";
56 homepage = "https://github.com/ROCm-Developer-Tools/ROCclr";
57 license = licenses.mit;
58- maintainers = with maintainers; [ danieldk ];
59 # rocclr seems to have some AArch64 ifdefs, but does not seem
60 # to be supported yet by the build infrastructure. Recheck in
61 # the future.
···55 description = "Radeon Open Compute common language runtime";
56 homepage = "https://github.com/ROCm-Developer-Tools/ROCclr";
57 license = licenses.mit;
58+ maintainers = with maintainers; [ ];
59 # rocclr seems to have some AArch64 ifdefs, but does not seem
60 # to be supported yet by the build infrastructure. Recheck in
61 # the future.
···75 meta = with lib; {
76 description = "An interactive tree view, a fuzzy search, a balanced BFS descent and customizable commands";
77 homepage = "https://dystroy.org/broot/";
78- maintainers = with maintainers; [ danieldk ];
79 license = with licenses; [ mit ];
80 };
81}
···75 meta = with lib; {
76 description = "An interactive tree view, a fuzzy search, a balanced BFS descent and customizable commands";
77 homepage = "https://dystroy.org/broot/";
78+ maintainers = with maintainers; [ ];
79 license = with licenses; [ mit ];
80 };
81}
···88 bittorrentSync = throw "bittorrentSync has been deprecated by resilio-sync."; # added 2019-06-03
89 bittorrentSync14 = throw "bittorrentSync14 has been deprecated by resilio-sync."; # added 2019-06-03
90 bittorrentSync20 = throw "bittorrentSync20 has been deprecated by resilio-sync."; # added 2019-06-03
0000000091 bs1770gain = throw "bs1770gain has been removed from nixpkgs, as it had no maintainer or reverse dependencies."; # added 2021-01-02
92 btc1 = throw "btc1 has been removed, it was abandoned by upstream"; # added 2020-11-03
93 buildPerlPackage = perlPackages.buildPerlPackage; # added 2018-10-12
···88 bittorrentSync = throw "bittorrentSync has been deprecated by resilio-sync."; # added 2019-06-03
89 bittorrentSync14 = throw "bittorrentSync14 has been deprecated by resilio-sync."; # added 2019-06-03
90 bittorrentSync20 = throw "bittorrentSync20 has been deprecated by resilio-sync."; # added 2019-06-03
91+92+ # bitwarden_rs renamed to vaultwarden with release 1.21.0 (2021-04-30)
93+ bitwarden_rs = vaultwarden;
94+ bitwarden_rs-sqlite = vaultwarden-sqlite;
95+ bitwarden_rs-mysql = vaultwarden-mysql;
96+ bitwarden_rs-postgresql = vaultwarden-postgresql;
97+ bitwarden_rs-vault = vaultwarden-vault;
98+99 bs1770gain = throw "bs1770gain has been removed from nixpkgs, as it had no maintainer or reverse dependencies."; # added 2021-01-02
100 btc1 = throw "btc1 has been removed, it was abandoned by upstream"; # added 2020-11-03
101 buildPerlPackage = perlPackages.buildPerlPackage; # added 2018-10-12