···2121 with:
2222 # pull_request_target checks out the base branch by default
2323 ref: refs/pull/${{ github.event.pull_request.number }}/merge
2424+ # Fetches the merge commit and its parents
2525+ fetch-depth: 2
2626+ - name: Determining PR git hashes
2727+ run: |
2828+ echo "mergedSha=$(git rev-parse HEAD)" >> "$GITHUB_ENV"
2929+3030+ # For pull_request_target this is the same as $GITHUB_SHA
3131+ echo "baseSha=$(git rev-parse HEAD^1)" >> "$GITHUB_ENV"
3232+3333+ echo "headSha=$(git rev-parse HEAD^2)" >> "$GITHUB_ENV"
2434 - uses: cachix/install-nix-action@v23
2535 - name: Determining channel to use for dependencies
2636 run: |
···5161 # Passing --max-jobs 0 makes sure that we won't build anything
5262 nix-build "$nixpkgs" -A tests.nixpkgs-check-by-name --max-jobs 0
5363 - name: Running nixpkgs-check-by-name
5454- run: result/bin/nixpkgs-check-by-name .
6464+ run: |
6565+ echo "Checking whether the check succeeds on the base branch $GITHUB_BASE_REF"
6666+ git checkout -q "$baseSha"
6767+ if baseOutput=$(result/bin/nixpkgs-check-by-name . 2>&1); then
6868+ baseSuccess=1
6969+ else
7070+ baseSuccess=
7171+ fi
7272+ printf "%s\n" "$baseOutput"
7373+7474+ echo "Checking whether the check would succeed after merging this pull request"
7575+ git checkout -q "$mergedSha"
7676+ if mergedOutput=$(result/bin/nixpkgs-check-by-name . 2>&1); then
7777+ mergedSuccess=1
7878+ exitCode=0
7979+ else
8080+ mergedSuccess=
8181+ exitCode=1
8282+ fi
8383+ printf "%s\n" "$mergedOutput"
8484+8585+ resultToEmoji() {
8686+ if [[ -n "$1" ]]; then
8787+ echo ":heavy_check_mark:"
8888+ else
8989+ echo ":x:"
9090+ fi
9191+ }
9292+9393+ # Print a markdown summary in GitHub actions
9494+ {
9595+ echo "| Nixpkgs version | Check result |"
9696+ echo "| --- | --- |"
9797+ echo "| Latest base commit | $(resultToEmoji "$baseSuccess") |"
9898+ echo "| After merging this PR | $(resultToEmoji "$mergedSuccess") |"
9999+ echo ""
100100+101101+ if [[ -n "$baseSuccess" ]]; then
102102+ if [[ -n "$mergedSuccess" ]]; then
103103+ echo "The check succeeds on both the base branch and after merging this PR"
104104+ else
105105+ echo "The check succeeds on the base branch, but would fail after merging this PR:"
106106+ echo "\`\`\`"
107107+ echo "$mergedOutput"
108108+ echo "\`\`\`"
109109+ echo ""
110110+ fi
111111+ else
112112+ if [[ -n "$mergedSuccess" ]]; then
113113+ echo "The check fails on the base branch, but this PR fixes it, nicely done!"
114114+ else
115115+ echo "The check fails on both the base branch and after merging this PR, unknown if only this PRs changes would satisfy the check, the base branch needs to be fixed first."
116116+ echo ""
117117+ echo "Failure on the base branch:"
118118+ echo "\`\`\`"
119119+ echo "$baseOutput"
120120+ echo "\`\`\`"
121121+ echo ""
122122+ echo "Failure after merging this PR:"
123123+ echo "\`\`\`"
124124+ echo "$mergedOutput"
125125+ echo "\`\`\`"
126126+ echo ""
127127+ fi
128128+ fi
129129+130130+ echo "### Details"
131131+ echo "- nixpkgs-check-by-name tool:"
132132+ echo " - Channel: $channel"
133133+ echo " - Nixpkgs commit: [$rev](https://github.com/${GITHUB_REPOSITORY}/commit/$rev)"
134134+ echo " - Store path: \`$(realpath result)\`"
135135+ echo "- Tested Nixpkgs:"
136136+ echo " - Base branch $GITHUB_BASE_REF"
137137+ echo " - Latest base branch commit: [$baseSha](https://github.com/${GITHUB_REPOSITORY}/commit/$baseSha)"
138138+ echo " - Latest PR commit: [$headSha](https://github.com/${GITHUB_REPOSITORY}/commit/$headSha)"
139139+ echo " - Merge commit: [$mergedSha](https://github.com/${GITHUB_REPOSITORY}/commit/$mergedSha)"
140140+ } >> "$GITHUB_STEP_SUMMARY"
141141+142142+ exit "$exitCode"
143143+
+6-5
doc/languages-frameworks/vim.section.md
···212212213213## Adding new plugins to nixpkgs {#adding-new-plugins-to-nixpkgs}
214214215215-Nix expressions for Vim plugins are stored in [pkgs/applications/editors/vim/plugins](https://github.com/NixOS/nixpkgs/tree/master/pkgs/applications/editors/vim/plugins). For the vast majority of plugins, Nix expressions are automatically generated by running [`./update.py`](https://github.com/NixOS/nixpkgs/blob/master/pkgs/applications/editors/vim/plugins/update.py). This creates a [generated.nix](https://github.com/NixOS/nixpkgs/blob/master/pkgs/applications/editors/vim/plugins/generated.nix) file based on the plugins listed in [vim-plugin-names](https://github.com/NixOS/nixpkgs/blob/master/pkgs/applications/editors/vim/plugins/vim-plugin-names).
215215+Nix expressions for Vim plugins are stored in [pkgs/applications/editors/vim/plugins](https://github.com/NixOS/nixpkgs/tree/master/pkgs/applications/editors/vim/plugins). For the vast majority of plugins, Nix expressions are automatically generated by running [`nix-shell -p vimPluginsUpdater --run vim-plugins-updater`](https://github.com/NixOS/nixpkgs/blob/master/pkgs/applications/editors/vim/plugins/updater.nix). This creates a [generated.nix](https://github.com/NixOS/nixpkgs/blob/master/pkgs/applications/editors/vim/plugins/generated.nix) file based on the plugins listed in [vim-plugin-names](https://github.com/NixOS/nixpkgs/blob/master/pkgs/applications/editors/vim/plugins/vim-plugin-names).
216216217217-After running `./update.py`, if nvim-treesitter received an update, also run [`nvim-treesitter/update.py`](https://github.com/NixOS/nixpkgs/blob/master/pkgs/applications/editors/vim/plugins/update.py) to update the tree sitter grammars for `nvim-treesitter`.
217217+After running the updater, if nvim-treesitter received an update, also run [`nvim-treesitter/update.py`](https://github.com/NixOS/nixpkgs/blob/master/pkgs/applications/editors/vim/plugins/update.py) to update the tree sitter grammars for `nvim-treesitter`.
218218219219Some plugins require overrides in order to function properly. Overrides are placed in [overrides.nix](https://github.com/NixOS/nixpkgs/blob/master/pkgs/applications/editors/vim/plugins/overrides.nix). Overrides are most often required when a plugin requires some dependencies, or extra steps are required during the build process. For example `deoplete-fish` requires both `deoplete-nvim` and `vim-fish`, and so the following override was added:
220220···241241Alternatively, set the number of processes to a lower count to avoid rate-limiting.
242242243243```sh
244244-./pkgs/applications/editors/vim/plugins/update.py --proc 1
244244+245245+nix-shell -p vimPluginsUpdater --run 'vim-plugins-updater --proc 1'
245246```
246247247248## How to maintain an out-of-tree overlay of vim plugins ? {#vim-out-of-tree-overlays}
···250251plugin list:
251252252253```
253253-pkgs/applications/editors/vim/plugins/update.py -i vim-plugin-names -o generated.nix --no-commit
254254+nix-shell -p vimPluginsUpdater --run vim-plugins-updater -i vim-plugin-names -o generated.nix --no-commit
254255```
255256256257with the contents of `vim-plugin-names` being for example:
···264265265266```nix
266267myVimPlugins = pkgs.vimPlugins.extend (
267267- (pkgs.callPackage generated.nix {})
268268+ (pkgs.callPackage ./generated.nix {})
268269);
269270```
270271
+28-1
lib/fileset/README.md
···4141- `_type` (constant string `"fileset"`):
4242 Tag to indicate this value is a file set.
43434444-- `_internalVersion` (constant `2`, the current version):
4444+- `_internalVersion` (constant `3`, the current version):
4545 Version of the representation.
4646+4747+- `_internalIsEmptyWithoutBase` (bool):
4848+ Whether this file set is the empty file set without a base path.
4949+ If `true`, `_internalBase*` and `_internalTree` are not set.
5050+ This is the only way to represent an empty file set without needing a base path.
5151+5252+ Such a value can be used as the identity element for `union` and the return value of `unions []` and co.
46534754- `_internalBase` (path):
4855 Any files outside of this path cannot influence the set of files.
···110117 only removing files explicitly referenced by paths can break a file set expression.
111118- (+) This can be removed later, if we discover it's too restrictive
112119- (-) It leads to errors when a sensible result could sometimes be returned, such as in the above example.
120120+121121+### Empty file set without a base
122122+123123+There is a special representation for an empty file set without a base path.
124124+This is used for return values that should be empty but when there's no base path that would makes sense.
125125+126126+Arguments:
127127+- Alternative: This could also be represented using `_internalBase = /.` and `_internalTree = null`.
128128+ - (+) Removes the need for a special representation.
129129+ - (-) Due to [influence tracking](#influence-tracking),
130130+ `union empty ./.` would have `/.` as the base path,
131131+ which would then prevent `toSource { root = ./.; fileset = union empty ./.; }` from working,
132132+ which is not as one would expect.
133133+ - (-) With the assumption that there can be multiple filesystem roots (as established with the [path library](../path/README.md)),
134134+ this would have to cause an error with `union empty pathWithAnotherFilesystemRoot`,
135135+ which is not as one would expect.
136136+- Alternative: Do not have such a value and error when it would be needed as a return value
137137+ - (+) Removes the need for a special representation.
138138+ - (-) Leaves us with no identity element for `union` and no reasonable return value for `unions []`.
139139+ From a set theory perspective, which has a well-known notion of empty sets, this is unintuitive.
113140114141### Empty directories
115142
+2-5
lib/fileset/default.nix
···156156 lib.fileset.toSource: `root` is of type ${typeOf root}, but it should be a path instead.''
157157 # Currently all Nix paths have the same filesystem root, but this could change in the future.
158158 # See also ../path/README.md
159159- else if rootFilesystemRoot != filesetFilesystemRoot then
159159+ else if ! fileset._internalIsEmptyWithoutBase && rootFilesystemRoot != filesetFilesystemRoot then
160160 throw ''
161161 lib.fileset.toSource: Filesystem roots are not the same for `fileset` and `root` ("${toString root}"):
162162 `root`: root "${toString rootFilesystemRoot}"
···170170 lib.fileset.toSource: `root` (${toString root}) is a file, but it should be a directory instead. Potential solutions:
171171 - If you want to import the file into the store _without_ a containing directory, use string interpolation or `builtins.path` instead of this function.
172172 - If you want to import the file into the store _with_ a containing directory, set `root` to the containing directory, such as ${toString (dirOf root)}, and set `fileset` to the file path.''
173173- else if ! hasPrefix root fileset._internalBase then
173173+ else if ! fileset._internalIsEmptyWithoutBase && ! hasPrefix root fileset._internalBase then
174174 throw ''
175175 lib.fileset.toSource: `fileset` could contain files in ${toString fileset._internalBase}, which is not under the `root` (${toString root}). Potential solutions:
176176 - Set `root` to ${toString fileset._internalBase} or any directory higher up. This changes the layout of the resulting store path.
···264264 filesets:
265265 if ! isList filesets then
266266 throw "lib.fileset.unions: Expected argument to be a list, but got a ${typeOf filesets}."
267267- else if filesets == [ ] then
268268- # TODO: This could be supported, but requires an extra internal representation for the empty file set, which would be special for not having a base path.
269269- throw "lib.fileset.unions: Expected argument to be a list with at least one element, but it contains no elements."
270267 else
271268 pipe filesets [
272269 # Annotate the elements with context, used by _coerceMany for better errors
+56-13
lib/fileset/internal.nix
···2828 drop
2929 elemAt
3030 filter
3131+ findFirst
3132 findFirstIndex
3233 foldl'
3334 head
···6465 # - Increment this version
6566 # - Add an additional migration function below
6667 # - Update the description of the internal representation in ./README.md
6767- _currentVersion = 2;
6868+ _currentVersion = 3;
68696970 # Migrations between versions. The 0th element converts from v0 to v1, and so on
7071 migrations = [
···8990 _internalVersion = 2;
9091 }
9192 )
9393+9494+ # Convert v2 into v3: filesetTree's now have a representation for an empty file set without a base path
9595+ (
9696+ filesetV2:
9797+ filesetV2 // {
9898+ # All v1 file sets are not the new empty file set
9999+ _internalIsEmptyWithoutBase = false;
100100+ _internalVersion = 3;
101101+ }
102102+ )
92103 ];
93104105105+ _noEvalMessage = ''
106106+ lib.fileset: Directly evaluating a file set is not supported. Use `lib.fileset.toSource` to turn it into a usable source instead.'';
107107+108108+ # The empty file set without a base path
109109+ _emptyWithoutBase = {
110110+ _type = "fileset";
111111+112112+ _internalVersion = _currentVersion;
113113+114114+ # The one and only!
115115+ _internalIsEmptyWithoutBase = true;
116116+117117+ # Double __ to make it be evaluated and ordered first
118118+ __noEval = throw _noEvalMessage;
119119+ };
120120+94121 # Create a fileset, see ./README.md#fileset
95122 # Type: path -> filesetTree -> fileset
96123 _create = base: tree:
···103130 _type = "fileset";
104131105132 _internalVersion = _currentVersion;
133133+134134+ _internalIsEmptyWithoutBase = false;
106135 _internalBase = base;
107136 _internalBaseRoot = parts.root;
108137 _internalBaseComponents = components parts.subpath;
109138 _internalTree = tree;
110139111140 # Double __ to make it be evaluated and ordered first
112112- __noEval = throw ''
113113- lib.fileset: Directly evaluating a file set is not supported. Use `lib.fileset.toSource` to turn it into a usable source instead.'';
141141+ __noEval = throw _noEvalMessage;
114142 };
115143116144 # Coerce a value to a fileset, erroring when the value cannot be coerced.
···155183 _coerce "${functionContext}: ${context}" value
156184 ) list;
157185158158- firstBaseRoot = (head filesets)._internalBaseRoot;
186186+ # Find the first value with a base, there may be none!
187187+ firstWithBase = findFirst (fileset: ! fileset._internalIsEmptyWithoutBase) null filesets;
188188+ # This value is only accessed if first != null
189189+ firstBaseRoot = firstWithBase._internalBaseRoot;
159190160191 # Finds the first element with a filesystem root different than the first element, if any
161192 differentIndex = findFirstIndex (fileset:
162162- firstBaseRoot != fileset._internalBaseRoot
193193+ # The empty value without a base doesn't have a base path
194194+ ! fileset._internalIsEmptyWithoutBase
195195+ && firstBaseRoot != fileset._internalBaseRoot
163196 ) null filesets;
164197 in
165165- if differentIndex != null then
198198+ # Only evaluates `differentIndex` if there are any elements with a base
199199+ if firstWithBase != null && differentIndex != null then
166200 throw ''
167201 ${functionContext}: Filesystem roots are not the same:
168202 ${(head list).context}: root "${toString firstBaseRoot}"
···311345 # Special case because the code below assumes that the _internalBase is always included in the result
312346 # which shouldn't be done when we have no files at all in the base
313347 # This also forces the tree before returning the filter, leads to earlier error messages
314314- if tree == null then
348348+ if fileset._internalIsEmptyWithoutBase || tree == null then
315349 empty
316350 else
317351 nonEmpty;
···321355 # Type: [ Fileset ] -> Fileset
322356 _unionMany = filesets:
323357 let
324324- first = head filesets;
358358+ # All filesets that have a base, aka not the ones that are the empty value without a base
359359+ filesetsWithBase = filter (fileset: ! fileset._internalIsEmptyWithoutBase) filesets;
360360+361361+ # The first fileset that has a base.
362362+ # This value is only accessed if there are at all.
363363+ firstWithBase = head filesetsWithBase;
325364326365 # To be able to union filesetTree's together, they need to have the same base path.
327366 # Base paths can be unioned by taking their common prefix,
···332371 # so this cannot cause a stack overflow due to a build-up of unevaluated thunks.
333372 commonBaseComponents = foldl'
334373 (components: el: commonPrefix components el._internalBaseComponents)
335335- first._internalBaseComponents
374374+ firstWithBase._internalBaseComponents
336375 # We could also not do the `tail` here to avoid a list allocation,
337376 # but then we'd have to pay for a potentially expensive
338377 # but unnecessary `commonPrefix` call
339339- (tail filesets);
378378+ (tail filesetsWithBase);
340379341380 # The common base path assembled from a filesystem root and the common components
342342- commonBase = append first._internalBaseRoot (join commonBaseComponents);
381381+ commonBase = append firstWithBase._internalBaseRoot (join commonBaseComponents);
343382344383 # A list of filesetTree's that all have the same base path
345384 # This is achieved by nesting the trees into the components they have over the common base path
···351390 setAttrByPath
352391 (drop (length commonBaseComponents) fileset._internalBaseComponents)
353392 fileset._internalTree
354354- ) filesets;
393393+ ) filesetsWithBase;
355394356395 # Folds all trees together into a single one using _unionTree
357396 # We do not use a fold here because it would cause a thunk build-up
358397 # which could cause a stack overflow for a large number of trees
359398 resultTree = _unionTrees trees;
360399 in
361361- _create commonBase resultTree;
400400+ # If there's no values with a base, we have no files
401401+ if filesetsWithBase == [ ] then
402402+ _emptyWithoutBase
403403+ else
404404+ _create commonBase resultTree;
362405363406 # The union of multiple filesetTree's with the same base path.
364407 # Later elements are only evaluated if necessary.
+40-13
lib/fileset/tests.sh
···282282283283# File sets cannot be evaluated directly
284284expectFailure 'union ./. ./.' 'lib.fileset: Directly evaluating a file set is not supported. Use `lib.fileset.toSource` to turn it into a usable source instead.'
285285+expectFailure '_emptyWithoutBase' 'lib.fileset: Directly evaluating a file set is not supported. Use `lib.fileset.toSource` to turn it into a usable source instead.'
285286286287# Past versions of the internal representation are supported
287288expectEqual '_coerce "<tests>: value" { _type = "fileset"; _internalVersion = 0; _internalBase = ./.; }' \
288288- '{ _internalBase = ./.; _internalBaseComponents = path.subpath.components (path.splitRoot ./.).subpath; _internalBaseRoot = /.; _internalVersion = 2; _type = "fileset"; }'
289289+ '{ _internalBase = ./.; _internalBaseComponents = path.subpath.components (path.splitRoot ./.).subpath; _internalBaseRoot = /.; _internalIsEmptyWithoutBase = false; _internalVersion = 3; _type = "fileset"; }'
289290expectEqual '_coerce "<tests>: value" { _type = "fileset"; _internalVersion = 1; }' \
290290- '{ _type = "fileset"; _internalVersion = 2; }'
291291+ '{ _type = "fileset"; _internalIsEmptyWithoutBase = false; _internalVersion = 3; }'
292292+expectEqual '_coerce "<tests>: value" { _type = "fileset"; _internalVersion = 2; }' \
293293+ '{ _type = "fileset"; _internalIsEmptyWithoutBase = false; _internalVersion = 3; }'
291294292295# Future versions of the internal representation are unsupported
293293-expectFailure '_coerce "<tests>: value" { _type = "fileset"; _internalVersion = 3; }' '<tests>: value is a file set created from a future version of the file set library with a different internal representation:
294294-\s*- Internal version of the file set: 3
295295-\s*- Internal version of the library: 2
296296+expectFailure '_coerce "<tests>: value" { _type = "fileset"; _internalVersion = 4; }' '<tests>: value is a file set created from a future version of the file set library with a different internal representation:
297297+\s*- Internal version of the file set: 4
298298+\s*- Internal version of the library: 3
296299\s*Make sure to update your Nixpkgs to have a newer version of `lib.fileset`.'
297300298301# _create followed by _coerce should give the inputs back without any validation
299302expectEqual '{
300303 inherit (_coerce "<test>" (_create ./. "directory"))
301304 _internalVersion _internalBase _internalTree;
302302-}' '{ _internalBase = ./.; _internalTree = "directory"; _internalVersion = 2; }'
305305+}' '{ _internalBase = ./.; _internalTree = "directory"; _internalVersion = 3; }'
303306304307#### Resulting store path ####
305308···310313tree=(
311314)
312315checkFileset './.'
316316+317317+# The empty value without a base should also result in an empty result
318318+tree=(
319319+ [a]=0
320320+)
321321+checkFileset '_emptyWithoutBase'
313322314323# Directories recursively containing no files are not included
315324tree=(
···408417409418# unions needs a list with at least 1 element
410419expectFailure 'toSource { root = ./.; fileset = unions null; }' 'lib.fileset.unions: Expected argument to be a list, but got a null.'
411411-expectFailure 'toSource { root = ./.; fileset = unions [ ]; }' 'lib.fileset.unions: Expected argument to be a list with at least one element, but it contains no elements.'
412420413421# The tree of later arguments should not be evaluated if a former argument already includes all files
414422tree=()
415423checkFileset 'union ./. (_create ./. (abort "This should not be used!"))'
416424checkFileset 'unions [ ./. (_create ./. (abort "This should not be used!")) ]'
417425426426+# unions doesn't include any files for an empty list or only empty values without a base
427427+tree=(
428428+ [x]=0
429429+ [y/z]=0
430430+)
431431+checkFileset 'unions [ ]'
432432+checkFileset 'unions [ _emptyWithoutBase ]'
433433+checkFileset 'unions [ _emptyWithoutBase _emptyWithoutBase ]'
434434+checkFileset 'union _emptyWithoutBase _emptyWithoutBase'
435435+436436+# The empty value without a base is the left and right identity of union
437437+tree=(
438438+ [x]=1
439439+ [y/z]=0
440440+)
441441+checkFileset 'union ./x _emptyWithoutBase'
442442+checkFileset 'union _emptyWithoutBase ./x'
443443+418444# union doesn't include files that weren't specified
419445tree=(
420446 [x]=1
···467493 tree[$i/a]=1
468494 tree[$i/b]=0
469495done
470470-(
471471- # Locally limit the maximum stack size to 100 * 1024 bytes
472472- # If unions was implemented recursively, this would stack overflow
473473- ulimit -s 100
474474- checkFileset 'unions (mapAttrsToList (name: _: ./. + "/${name}/a") (builtins.readDir ./.))'
475475-)
496496+# This is actually really hard to test:
497497+# A lot of files would be needed to cause a stack overflow.
498498+# And while we could limit the maximum stack size using `ulimit -s`,
499499+# that turns out to not be very deterministic: https://github.com/NixOS/nixpkgs/pull/256417#discussion_r1339396686.
500500+# Meanwhile, the test infra here is not the fastest, creating 10000 would be too slow.
501501+# So, just using 1000 files for now.
502502+checkFileset 'unions (mapAttrsToList (name: _: ./. + "/${name}/a") (builtins.readDir ./.))'
476503477504# TODO: Once we have combinators and a property testing library, derive property tests from https://en.wikipedia.org/wiki/Algebra_of_sets
478505
···3333 modBuildPhase = ''
3434 for plugin in ${builtins.toString (attrsToPlugins externalPlugins)}; do echo $plugin >> plugin.cfg; done
3535 for src in ${builtins.toString (attrsToSources externalPlugins)}; do go get $src; done
3636- go generate
3636+ GOOS= GOARCH= go generate
3737 go mod vendor
3838 '';
3939···4646 chmod -R u+w vendor
4747 mv -t . vendor/go.{mod,sum} vendor/plugin.cfg
48484949- go generate
4949+ GOOS= GOARCH= go generate
5050 '';
51515252 postPatch = ''
···109109 asterisk_19 = throw "asterisk_19: Asterisk 19 is end of life and has been removed"; # Added 2023-04-19
110110 at_spi2_atk = throw "'at_spi2_atk' has been renamed to/replaced by 'at-spi2-atk'"; # Converted to throw 2022-02-22
111111 at_spi2_core = throw "'at_spi2_core' has been renamed to/replaced by 'at-spi2-core'"; # Converted to throw 2022-02-22
112112+ atom = throw "'atom' has been removed because discontinued and deprecated. Consider using 'pulsar', a maintained fork"; # Added 2023-10-01
113113+ atom-beta = throw "'atom-beta' has been removed because discontinued and deprecated. Consider using 'pulsar', a maintained fork"; # Added 2023-10-01
114114+ atomEnv = throw "'atomEnv' has been removed because 'atom' is discontinued and deprecated. Consider using 'pulsar', a maintained fork"; # Added 2023-10-01
115115+ atomPackages = throw "'atomPackages' has been removed because 'atom' is discontinued and deprecated. Consider using 'pulsar', a maintained fork"; # Added 2023-10-01
112116 aucdtect = throw "aucdtect: Upstream no longer provides download urls"; # Added 2020-12-26
113117 audacity-gtk2 = throw "'audacity-gtk2' has been removed to/replaced by 'audacity'"; # Added 2022-10-09
114118 audacity-gtk3 = throw "'audacity-gtk3' has been removed to/replaced by 'audacity'"; # Added 2022-10-09