From 72429736c3cffc10bab7be491568bf7b4a96bf4f Mon Sep 17 00:00:00 2001 From: fetsorn Date: Mon, 8 May 2023 21:54:01 +0400 Subject: [PATCH 01/29] node-packages: fix typo "packges" -> "packages" --- pkgs/development/node-packages/overrides.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/node-packages/overrides.nix b/pkgs/development/node-packages/overrides.nix index 3a7f33569deb..41aea0550ec1 100644 --- a/pkgs/development/node-packages/overrides.nix +++ b/pkgs/development/node-packages/overrides.nix @@ -1,4 +1,4 @@ -# Do not use overrides in this file to add `meta.mainProgram` to packges. Use `./main-programs.nix` +# Do not use overrides in this file to add `meta.mainProgram` to packages. Use `./main-programs.nix` # instead. { pkgs, nodejs }: From d454823d203aead2a5536e51b4ef92bd4060ebaf Mon Sep 17 00:00:00 2001 From: fetsorn Date: Mon, 8 May 2023 21:54:35 +0400 Subject: [PATCH 02/29] opencv: fix typo "perfomanceTests" -> "performanceTests" --- pkgs/development/libraries/opencv/tests.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/opencv/tests.nix b/pkgs/development/libraries/opencv/tests.nix index 5a155a9119b0..03a89db0882f 100644 --- a/pkgs/development/libraries/opencv/tests.nix +++ b/pkgs/development/libraries/opencv/tests.nix @@ -57,7 +57,7 @@ let (map (test: "${testRunner}${opencv4.package_tests}/opencv_test_${test} --test_threads=$NIX_BUILD_CORES --gtest_filter=$GTEST_FILTER" ) testNames) } ''; - perfomanceTests = lib.optionalString runPerformanceTests '' + performanceTests = lib.optionalString runPerformanceTests '' ${ builtins.concatStringsSep "\n" (map (test: "${testRunner}${opencv4.package_tests}/opencv_perf_${test} --perf_impl=plain --perf_min_samples=10 --perf_force_samples=10 --perf_verify_sanity --skip_unstable=1 --gtest_filter=$GTEST_FILTER") perfTestNames) } @@ -67,4 +67,4 @@ runCommand "opencv4-tests" { nativeBuildInputs = lib.optionals enableGStreamer (with gst_all_1; [ gstreamer gst-plugins-base gst-plugins-good ]); } - (testsPreparation + accuracyTests + perfomanceTests) + (testsPreparation + accuracyTests + performanceTests) From 849897fa300db00a7957d7d94ef88459d7bd4afc Mon Sep 17 00:00:00 2001 From: fetsorn Date: Mon, 8 May 2023 21:55:12 +0400 Subject: [PATCH 03/29] perf-linux: fix typo "embeded" -> "embedded" --- pkgs/os-specific/linux/kernel/perf/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/os-specific/linux/kernel/perf/default.nix b/pkgs/os-specific/linux/kernel/perf/default.nix index 1ae1bae26fd6..620ecfc43df2 100644 --- a/pkgs/os-specific/linux/kernel/perf/default.nix +++ b/pkgs/os-specific/linux/kernel/perf/default.nix @@ -148,7 +148,7 @@ stdenv.mkDerivation { preFixup = '' # Pull in 'objdump' into PATH to make annotations work. - # The embeded Python interpreter will search PATH to calculate the Python path configuration(Should be fixed by upstream). + # The embedded Python interpreter will search PATH to calculate the Python path configuration(Should be fixed by upstream). # Add python.interpreter to PATH for now. wrapProgram $out/bin/perf \ --prefix PATH : ${lib.makeBinPath [ binutils-unwrapped python3 ]} From 0d90723fb0363a5e991d8e5ac58ebea8214add2b Mon Sep 17 00:00:00 2001 From: fetsorn Date: Mon, 8 May 2023 21:55:40 +0400 Subject: [PATCH 04/29] polypane: fix typo "acessibility" -> "accessibility" --- pkgs/applications/networking/browsers/polypane/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/networking/browsers/polypane/default.nix b/pkgs/applications/networking/browsers/polypane/default.nix index 40c7fda9dbad..6d264e9abc49 100644 --- a/pkgs/applications/networking/browsers/polypane/default.nix +++ b/pkgs/applications/networking/browsers/polypane/default.nix @@ -27,7 +27,7 @@ in appimageTools.wrapType2 { ''; meta = with lib; { - description = "Browser with unified devtools targeting responsability and acessibility"; + description = "Browser with unified devtools targeting responsability and accessibility"; longDescription = '' The stand-alone browser for ambitious developers that want to build responsive, accessible and performant websites in a fraction of the time it takes with other browsers. From 5214b0890c33cf64114505760245d72475562e11 Mon Sep 17 00:00:00 2001 From: fetsorn Date: Mon, 8 May 2023 21:56:02 +0400 Subject: [PATCH 05/29] python3Packages.betterproto: fix typo "packge" -> "package" --- pkgs/development/python-modules/betterproto/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/betterproto/default.nix b/pkgs/development/python-modules/betterproto/default.nix index 0ef6aac87506..6de1933fca8d 100644 --- a/pkgs/development/python-modules/betterproto/default.nix +++ b/pkgs/development/python-modules/betterproto/default.nix @@ -53,7 +53,7 @@ buildPythonPackage rec { ] ++ passthru.optional-dependencies.compiler; # The tests require the generation of code before execution. This requires - # the protoc-gen-python_betterproto script from the packge to be on PATH. + # the protoc-gen-python_betterproto script from the package to be on PATH. preCheck = '' export PATH=$PATH:$out/bin ${python.interpreter} -m tests.generate From 2d091690f500908f2d15d78838145d82d397d9b1 Mon Sep 17 00:00:00 2001 From: fetsorn Date: Mon, 8 May 2023 21:56:26 +0400 Subject: [PATCH 06/29] python3Packages.extractcode: fix typo "libarchve" -> "libarchive" --- pkgs/development/python-modules/extractcode/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/extractcode/default.nix b/pkgs/development/python-modules/extractcode/default.nix index 9f45b7178ee8..c2193539814a 100644 --- a/pkgs/development/python-modules/extractcode/default.nix +++ b/pkgs/development/python-modules/extractcode/default.nix @@ -73,7 +73,7 @@ buildPythonPackage rec { ]; meta = with lib; { - description = "Universal archive extractor using z7zip, libarchve, other libraries and the Python standard library"; + description = "Universal archive extractor using z7zip, libarchive, other libraries and the Python standard library"; homepage = "https://github.com/nexB/extractcode"; changelog = "https://github.com/nexB/extractcode/releases/tag/v${version}"; license = licenses.asl20; From e371de93d1a397e7df2d13f2e5685581998cadf2 Mon Sep 17 00:00:00 2001 From: fetsorn Date: Mon, 8 May 2023 21:56:49 +0400 Subject: [PATCH 07/29] python3Packages.notion-client: fix typo "defalt" -> "default" --- pkgs/development/python-modules/notion-client/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/notion-client/default.nix b/pkgs/development/python-modules/notion-client/default.nix index 2ed0b0f8c2e9..91cf18e3a2c1 100644 --- a/pkgs/development/python-modules/notion-client/default.nix +++ b/pkgs/development/python-modules/notion-client/default.nix @@ -25,7 +25,7 @@ buildPythonPackage rec { httpx ]; - # disable coverage options as they don't provide us value, and they break the defalt pytestCheckHook + # disable coverage options as they don't provide us value, and they break the default pytestCheckHook preCheck = '' sed -i '/addopts/d' ./setup.cfg ''; From db1bb2d7e8fb3efcf11889e063c39f0dc9b4f33e Mon Sep 17 00:00:00 2001 From: fetsorn Date: Mon, 8 May 2023 21:57:13 +0400 Subject: [PATCH 08/29] python3Packages.os-service-type: fix typo "sevice" -> "service" --- pkgs/development/python-modules/os-service-types/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/os-service-types/default.nix b/pkgs/development/python-modules/os-service-types/default.nix index 147685fb2b91..de138c5a1602 100644 --- a/pkgs/development/python-modules/os-service-types/default.nix +++ b/pkgs/development/python-modules/os-service-types/default.nix @@ -33,7 +33,7 @@ buildPythonPackage rec { pythonImportsCheck = [ "os_service_types" ]; meta = with lib; { - description = "Python library for consuming OpenStack sevice-types-authority data"; + description = "Python library for consuming OpenStack service-types-authority data"; homepage = "https://github.com/openstack/os-service-types"; license = licenses.asl20; maintainers = teams.openstack.members; From 1ab5058e7c9023ca90279f2f8975ddb1a3115c1b Mon Sep 17 00:00:00 2001 From: fetsorn Date: Mon, 8 May 2023 21:57:34 +0400 Subject: [PATCH 09/29] python3Packages.protobuf: fix typo "corespond" -> "correspond" --- pkgs/development/python-modules/protobuf/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/protobuf/default.nix b/pkgs/development/python-modules/protobuf/default.nix index 8df8bb7c4a7d..1aaeca9c6413 100644 --- a/pkgs/development/python-modules/protobuf/default.nix +++ b/pkgs/development/python-modules/protobuf/default.nix @@ -15,7 +15,7 @@ in buildPythonPackage { inherit (protobuf) pname src; - # protobuf 3.21 coresponds with its python library 4.21 + # protobuf 3.21 corresponds with its python library 4.21 version = if lib.versionAtLeast protobuf.version "3.21" then "${toString (lib.toInt versionMajor + 1)}.${versionMinor}.${versionPatch}" From b12038291dca645e422ecabc353949349ee9bb13 Mon Sep 17 00:00:00 2001 From: fetsorn Date: Mon, 8 May 2023 21:57:59 +0400 Subject: [PATCH 10/29] python3Packages.pytest-cases: fix typo "dependecies" -> "dependencies" --- pkgs/development/python-modules/pytest-cases/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/pytest-cases/default.nix b/pkgs/development/python-modules/pytest-cases/default.nix index 9df7b9a07f07..c1813c6994c4 100644 --- a/pkgs/development/python-modules/pytest-cases/default.nix +++ b/pkgs/development/python-modules/pytest-cases/default.nix @@ -40,7 +40,7 @@ buildPythonPackage rec { # Tests have dependencies (pytest-harvest, pytest-steps) which # are not available in Nixpkgs. Most of the packages (decopatch, - # makefun, pytest-*) have circular dependecies. + # makefun, pytest-*) have circular dependencies. doCheck = false; pythonImportsCheck = [ From c13a5e7eb68916563c68fd9082ef18a897e5bc28 Mon Sep 17 00:00:00 2001 From: fetsorn Date: Mon, 8 May 2023 21:58:19 +0400 Subject: [PATCH 11/29] quicksynergy: fix typo "diferent" -> "different" --- pkgs/applications/misc/quicksynergy/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/misc/quicksynergy/default.nix b/pkgs/applications/misc/quicksynergy/default.nix index 81a4ef3d99f1..d26972d97fb7 100644 --- a/pkgs/applications/misc/quicksynergy/default.nix +++ b/pkgs/applications/misc/quicksynergy/default.nix @@ -24,7 +24,7 @@ stdenv.mkDerivation rec { keyboard between two or more computers. Without the need for any external hardware, Synergy2 uses the TCP-IP - protocol to share the resources, even between machines with diferent + protocol to share the resources, even between machines with different operating systems, such as Mac OS, Linux and Windows. Remember to open port 24800 (used by synergys program) if you want to From f14fbf0278b6cee8b1a4e8b85335da42672c600f Mon Sep 17 00:00:00 2001 From: fetsorn Date: Mon, 8 May 2023 21:59:05 +0400 Subject: [PATCH 12/29] siesta: fix typos "manualy" -> "manually" "becuase" -> "because" --- pkgs/applications/science/chemistry/siesta/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/science/chemistry/siesta/default.nix b/pkgs/applications/science/chemistry/siesta/default.nix index f49b9d1f45f9..c0e0e874cbd6 100644 --- a/pkgs/applications/science/chemistry/siesta/default.nix +++ b/pkgs/applications/science/chemistry/siesta/default.nix @@ -31,7 +31,7 @@ stdenv.mkDerivation rec { enableParallelBuilding = false; # Started making trouble with gcc-11 - # Must do manualy becuase siesta does not do the regular + # Must do manually because siesta does not do the regular # ./configure; make; make install configurePhase = '' cd Obj From 6ce732d86f9c48b3380de0ac0e1b3f3dca542aff Mon Sep 17 00:00:00 2001 From: fetsorn Date: Mon, 8 May 2023 21:59:29 +0400 Subject: [PATCH 13/29] spice-gtk: fix typo "reqires" -> "requires" --- pkgs/development/libraries/spice-gtk/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/libraries/spice-gtk/default.nix b/pkgs/development/libraries/spice-gtk/default.nix index 002012db505e..16a68ed67ea0 100644 --- a/pkgs/development/libraries/spice-gtk/default.nix +++ b/pkgs/development/libraries/spice-gtk/default.nix @@ -40,7 +40,7 @@ }: # If this package is built with polkit support (withPolkit=true), -# usb redirection reqires spice-client-glib-usb-acl-helper to run setuid root. +# usb redirection requires spice-client-glib-usb-acl-helper to run setuid root. # The helper confirms via polkit that the user has an active session, # then adds a device acl entry for that user. # Example NixOS config to create a setuid wrapper for the helper: From 90e71a48eea9735c005f3ffcdeecc6520f6016e3 Mon Sep 17 00:00:00 2001 From: fetsorn Date: Mon, 8 May 2023 21:59:48 +0400 Subject: [PATCH 14/29] statik: fix typo "embeded" -> "embedded" --- pkgs/development/tools/statik/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/tools/statik/default.nix b/pkgs/development/tools/statik/default.nix index 977b08602735..a5af2ed2d31c 100644 --- a/pkgs/development/tools/statik/default.nix +++ b/pkgs/development/tools/statik/default.nix @@ -15,7 +15,7 @@ buildGoModule rec { # Avoid building example subPackages = [ "." "fs" ]; - # Tests are checking that the files embeded are preserving + # Tests are checking that the files embedded are preserving # their meta data like dates etc, but it assumes to be in 2048 # which is not the case once entered the nix store doCheck = false; From 2fe24d598425057d7fb284bd3895eb93e6cf0550 Mon Sep 17 00:00:00 2001 From: fetsorn Date: Mon, 8 May 2023 22:01:05 +0400 Subject: [PATCH 15/29] tinywm: fix typo "manger" -> "manager" --- pkgs/applications/window-managers/tinywm/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/window-managers/tinywm/default.nix b/pkgs/applications/window-managers/tinywm/default.nix index 50fbae605da2..903502db5015 100644 --- a/pkgs/applications/window-managers/tinywm/default.nix +++ b/pkgs/applications/window-managers/tinywm/default.nix @@ -28,7 +28,7 @@ stdenv.mkDerivation rec { ''; meta = with lib;{ - description = "A tiny window manger for X11"; + description = "A tiny window manager for X11"; longDescription = '' TinyWM is a tiny window manager that I created as an exercise in From 16bfccf49fee207437e5d5339e35071c7789693b Mon Sep 17 00:00:00 2001 From: fetsorn Date: Mon, 8 May 2023 22:01:23 +0400 Subject: [PATCH 16/29] tpacpi-bat: fix typo "thesholds" -> "thresholds" --- pkgs/os-specific/linux/tpacpi-bat/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/os-specific/linux/tpacpi-bat/default.nix b/pkgs/os-specific/linux/tpacpi-bat/default.nix index 5512eed63abb..2ec8badb1ce5 100644 --- a/pkgs/os-specific/linux/tpacpi-bat/default.nix +++ b/pkgs/os-specific/linux/tpacpi-bat/default.nix @@ -28,7 +28,7 @@ stdenv.mkDerivation rec { meta = { maintainers = [lib.maintainers.orbekk]; platforms = lib.platforms.linux; - description = "Tool to set battery charging thesholds on Lenovo Thinkpad"; + description = "Tool to set battery charging thresholds on Lenovo Thinkpad"; license = lib.licenses.gpl3Plus; }; } From 84dec7a8b9189227212f3c73df0063431b7d50b1 Mon Sep 17 00:00:00 2001 From: fetsorn Date: Mon, 8 May 2023 22:01:42 +0400 Subject: [PATCH 17/29] vocal: fix typo "indepedent" -> "independent" --- pkgs/applications/audio/vocal/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/audio/vocal/default.nix b/pkgs/applications/audio/vocal/default.nix index e5ab69c14b3a..00f4ac9172ac 100644 --- a/pkgs/applications/audio/vocal/default.nix +++ b/pkgs/applications/audio/vocal/default.nix @@ -86,7 +86,7 @@ stdenv.mkDerivation rec { meta = with lib; { description = "The podcast client for the modern free desktop"; longDescription = '' - Vocal is a powerful, fast, and intuitive application that helps users find new podcasts, manage their libraries, and enjoy the best that indepedent audio and video publishing has to offer. Vocal features full support for both episode downloading and streaming, native system integration, iTunes store search and top 100 charts (with international results support), iTunes link parsing, OPML importing and exporting, and so much more. Plus, it has great smart features like automatically keeping your library clean from old files, and the ability to set custom skip intervals. + Vocal is a powerful, fast, and intuitive application that helps users find new podcasts, manage their libraries, and enjoy the best that independent audio and video publishing has to offer. Vocal features full support for both episode downloading and streaming, native system integration, iTunes store search and top 100 charts (with international results support), iTunes link parsing, OPML importing and exporting, and so much more. Plus, it has great smart features like automatically keeping your library clean from old files, and the ability to set custom skip intervals. ''; homepage = "https://github.com/needle-and-thread/vocal"; license = licenses.gpl3Plus; From f7811fef7af5cee7e75b00d739b97fe70f821259 Mon Sep 17 00:00:00 2001 From: fetsorn Date: Mon, 8 May 2023 22:02:59 +0400 Subject: [PATCH 18/29] zlib: fix typo "verion" -> "version" --- pkgs/development/libraries/zlib/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/libraries/zlib/default.nix b/pkgs/development/libraries/zlib/default.nix index 85d125be099d..051a55df8e49 100644 --- a/pkgs/development/libraries/zlib/default.nix +++ b/pkgs/development/libraries/zlib/default.nix @@ -57,7 +57,7 @@ stdenv.mkDerivation (finalAttrs: { export CHOST=${stdenv.hostPlatform.config} ''; - # For zlib's ./configure (as of verion 1.2.11), the order + # For zlib's ./configure (as of version 1.2.11), the order # of --static/--shared flags matters! # `--shared --static` builds only static libs, while # `--static --shared` builds both. From ebc12d6b776c878aae5fab655e30380764ef73fd Mon Sep 17 00:00:00 2001 From: fetsorn Date: Mon, 8 May 2023 22:04:09 +0400 Subject: [PATCH 19/29] aliases.nix: fix typos "depedencies" -> "dependencies" "maintanence" -> "maintenance" --- pkgs/top-level/aliases.nix | 34 +++++++++++++++++----------------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/pkgs/top-level/aliases.nix b/pkgs/top-level/aliases.nix index e0f4e7ae2455..49771bba5a67 100644 --- a/pkgs/top-level/aliases.nix +++ b/pkgs/top-level/aliases.nix @@ -260,7 +260,7 @@ mapAliases ({ couchdb = throw "couchdb was removed from nixpkgs, use couchdb3 instead"; # Added 2021-03-03 couchdb2 = throw "couchdb2 was removed from nixpkgs, use couchdb3 instead"; # Added 2021-03-03 coreclr = throw "coreclr has been removed from nixpkgs, use dotnet-sdk instead"; # added 2022-06-12 - corgi = throw "corgi has been dropped due to the lack of maintanence from upstream since 2018"; # Added 2022-06-02 + corgi = throw "corgi has been dropped due to the lack of maintenance from upstream since 2018"; # Added 2022-06-02 cpp-gsl = throw "'cpp-gsl' has been renamed to/replaced by 'microsoft_gsl'"; # Converted to throw 2022-02-22 cpp_ethereum = throw "cpp_ethereum has been removed; abandoned upstream"; # Added 2020-11-30 cpuminer-multi = throw "cpuminer-multi has been removed: deleted by upstream"; # Added 2022-01-07 @@ -318,7 +318,7 @@ mapAliases ({ cudnn_cudatoolkit_9_1 = throw "cudnn_cudatoolkit_9_1 has been removed in favor of newer versions"; # Added 2021-04-18 cudnn_cudatoolkit_9_2 = throw "cudnn_cudatoolkit_9_2 has been removed in favor of newer versions"; # Added 2021-04-18 cura_stable = throw "cura_stable was removed because it was broken and used Python 2"; # added 2022-06-05 - curl_unix_socket = throw "curl_unix_socket has been dropped due to the lack of maintanence from upstream since 2015"; # Added 2022-06-02 + curl_unix_socket = throw "curl_unix_socket has been dropped due to the lack of maintenance from upstream since 2015"; # Added 2022-06-02 cutensor = throw "cutensor is now part of cudaPackages*"; # Added 2022-04-04 cutensor_cudatoolkit_10 = throw "cutensor* is now part of cudaPackages*"; # Added 2022-04-04 cutensor_cudatoolkit_10_1 = throw "cutensor* is now part of cudaPackages*"; # Added 2022-04-04 @@ -391,7 +391,7 @@ mapAliases ({ docbook5_xsl = throw "'docbook5_xsl' has been renamed to/replaced by 'docbook_xsl_ns'"; # Converted to throw 2022-02-22 docbookrx = throw "docbookrx has been removed since it was unmaintained"; # Added 2021-01-12 docbook_xml_xslt = throw "'docbook_xml_xslt' has been renamed to/replaced by 'docbook_xsl'"; # Converted to throw 2022-02-22 - doh-proxy = throw "doh-proxy has been removed because upstream abandoned it and its depedencies where removed."; # Added 2022-03-30 + doh-proxy = throw "doh-proxy has been removed because upstream abandoned it and its dependencies where removed."; # Added 2022-03-30 docker_compose = throw "'docker_compose' has been renamed to/replaced by 'docker-compose'"; # Converted to throw 2022-02-22 docker-compose_2 = throw "'docker-compose_2' has been renamed to 'docker-compose'"; # Added 2022-06-05 docker-edge = throw "'docker-edge' has been removed, it was an alias for 'docker'"; # Added 2022-06-05 @@ -541,7 +541,7 @@ mapAliases ({ gaia = throw "gaia has been removed because it seems abandoned upstream and uses no longer supported dependencies"; # Added 2020-06-06 gammy = throw "'gammy' is deprecated upstream and has been replaced by 'gummy'"; # Added 2022-09-03 garmindev = throw "'garmindev' has been removed as the dependent software 'qlandkartegt' has been removed"; # Added 2023-04-17 - gawp = throw "gawp has been dropped due to the lack of maintanence from upstream since 2017"; # Added 2022-06-02 + gawp = throw "gawp has been dropped due to the lack of maintenance from upstream since 2017"; # Added 2022-06-02 gdal_1_11 = throw "gdal_1_11 was removed. Use gdal instead"; # Added 2021-04-03 gdb-multitarget = throw "'gdb-multitarget' has been renamed to/replaced by 'gdb'"; # Converted to throw 2022-02-22 gdk_pixbuf = throw "'gdk_pixbuf' has been renamed to/replaced by 'gdk-pixbuf'"; # Converted to throw 2022-02-22 @@ -553,7 +553,7 @@ mapAliases ({ ghostwriter = libsForQt5.kdeGear.ghostwriter; # Added 2023-03-18 giblib = throw " giblib has been removed from nixpkgs because upstream is gone"; # Added 2022-01-23 giflib_4_1 = throw "giflib_4_1 has been removed; use giflib instead"; # Added 2020-02-12 - git-annex-remote-b2 = throw "git-annex-remote-b2 has been dropped due to the lack of maintanence from upstream since 2016"; # Added 2022-06-02 + git-annex-remote-b2 = throw "git-annex-remote-b2 has been dropped due to the lack of maintenance from upstream since 2016"; # Added 2022-06-02 git-bz = throw "giz-bz has been removed from nixpkgs as it is stuck on python2"; # Added 2022-01-01 git-subset = throw "'git-subset' has been removed in favor of 'git-filter-repo'"; # Added 2023-01-13 @@ -611,7 +611,7 @@ mapAliases ({ gobby5 = gobby; # Added 2021-02-01 gobjectIntrospection = throw "'gobjectIntrospection' has been renamed to/replaced by 'gobject-introspection'"; # Converted to throw 2022-02-22 gogoclient = throw "gogoclient has been removed, because it was unmaintained"; # Added 2021-12-15 - goklp = throw "goklp has been dropped due to the lack of maintanence from upstream since 2017"; # Added 2022-06-02 + goklp = throw "goklp has been dropped due to the lack of maintenance from upstream since 2017"; # Added 2022-06-02 golly-beta = throw "golly-beta has been removed: use golly instead"; # Added 2022-03-21 goimports = throw "'goimports' has been renamed to/replaced by 'gotools'"; # Converted to throw 2022-02-22 gometalinter = throw "gometalinter was abandoned by upstream. Consider switching to golangci-lint instead"; # Added 2020-04-23 @@ -620,12 +620,12 @@ mapAliases ({ google-gflags = gflags; # Added 2019-07-25 google-musicmanager = throw "google-musicmanager has been removed because Google Play Music was discontinued"; # Added 2021-03-07 google-music-scripts = throw "google-music-scripts has been removed because Google Play Music was discontinued"; # Added 2021-03-07 - gosca = throw "gosca has been dropped due to the lack of maintanence from upstream since 2018"; # Added 2022-06-30 + gosca = throw "gosca has been dropped due to the lack of maintenance from upstream since 2018"; # Added 2022-06-30 google-play-music-desktop-player = throw "GPMDP shows a black screen, upstream homepage is dead, use 'ytmdesktop' instead"; # Added 2022-06-16 go-langserver = throw "go-langserver has been replaced by gopls"; # Added 2022-06-30 - go-mk = throw "go-mk has been dropped due to the lack of maintanence from upstream since 2015"; # Added 2022-06-02 + go-mk = throw "go-mk has been dropped due to the lack of maintenance from upstream since 2015"; # Added 2022-06-02 go-pup = throw "'go-pup' has been renamed to/replaced by 'pup'"; # Converted to throw 2022-02-22 - go-repo-root = throw "go-repo-root has been dropped due to the lack of maintanence from upstream since 2014"; # Added 2022-06-02 + go-repo-root = throw "go-repo-root has been dropped due to the lack of maintenance from upstream since 2014"; # Added 2022-06-02 gometer = throw "gometer has been removed from nixpkgs because goLance stopped offering Linux support"; # Added 2023-02-10 gpgstats = throw "gpgstats has been removed: upstream is gone"; # Added 2022-02-06 gpshell = throw "gpshell has been removed, because it was unmaintained in nixpkgs"; # added 2021-12-17 @@ -649,7 +649,7 @@ mapAliases ({ gr-osmosdr = gnuradio3_7.pkgs.osmosdr; # Added 2019-05-27, changed 2020-10-16 gr-rds = gnuradio3_7.pkgs.rds; # Added 2019-05-27, changed 2020-10-16 grub2_full = grub2; # Added 2022-11-18 - grv = throw "grv has been dropped due to the lack of maintanence from upstream since 2019"; # Added 2022-06-01 + grv = throw "grv has been dropped due to the lack of maintenance from upstream since 2019"; # Added 2022-06-01 gsettings_desktop_schemas = throw "'gsettings_desktop_schemas' has been renamed to/replaced by 'gsettings-desktop-schemas'"; # Converted to throw 2022-02-22 gsl_1 = throw "'gsl_1' has been renamed to/replaced by 'gsl'"; # Added 2022-11-19 gtk_doc = throw "'gtk_doc' has been renamed to/replaced by 'gtk-doc'"; # Converted to throw 2022-02-22 @@ -695,10 +695,10 @@ mapAliases ({ ### I ### i3-gaps = i3; # Added 2023-01-03 - i3cat = throw "i3cat has been dropped due to the lack of maintanence from upstream since 2016"; # Added 2022-06-02 + i3cat = throw "i3cat has been dropped due to the lack of maintenance from upstream since 2016"; # Added 2022-06-02 iana_etc = throw "'iana_etc' has been renamed to/replaced by 'iana-etc'"; # Converted to throw 2022-02-22 iasl = throw "iasl has been removed, use acpica-tools instead"; # Added 2021-08-08 - ical2org = throw "ical2org has been dropped due to the lack of maintanence from upstream since 2018"; # Added 2022-06-02 + ical2org = throw "ical2org has been dropped due to the lack of maintenance from upstream since 2018"; # Added 2022-06-02 icecat-bin = throw "icecat-bin has been removed, the binary builds are not maintained upstream"; # Added 2022-02-15 icedtea8_web = adoptopenjdk-icedtea-web; # Added 2019-08-21 icedtea_web = adoptopenjdk-icedtea-web; # Added 2019-08-21 @@ -785,7 +785,7 @@ mapAliases ({ keepnote = throw "keepnote has been removed from nixpkgs, as it is stuck on python2"; # Added 2022-01-01 kerberos = libkrb5; # moved from top-level 2021-03-14 kexectools = kexec-tools; # Added 2021-09-03 - kexpand = throw "kexpand awless has been dropped due to the lack of maintanence from upstream since 2017"; # Added 2022-06-01 + kexpand = throw "kexpand awless has been dropped due to the lack of maintenance from upstream since 2017"; # Added 2022-06-01 keybase-go = throw "'keybase-go' has been renamed to/replaced by 'keybase'"; # Converted to throw 2022-02-22 keysmith = libsForQt5.kdeGear.keysmith; # Added 2021-07-14 kgx = gnome-console; # Added 2022-02-19 @@ -1229,11 +1229,11 @@ mapAliases ({ phwmon = throw "phwmon has been removed: abandoned by upstream"; # Added 2022-04-24 # Obsolete PHP version aliases - php74 = throw "php74 has been dropped due to the lack of maintanence from upstream for future releases"; # Added 2022-05-24 + php74 = throw "php74 has been dropped due to the lack of maintenance from upstream for future releases"; # Added 2022-05-24 php74Packages = php74; # Added 2022-05-24 php74Extensions = php74; # Added 2022-05-24 - php73 = throw "php73 has been dropped due to the lack of maintanence from upstream for future releases"; # Added 2021-06-03 + php73 = throw "php73 has been dropped due to the lack of maintenance from upstream for future releases"; # Added 2021-06-03 php73Packages = php73; # Added 2021-06-03 php73Extensions = php73; # Added 2021-06-03 @@ -1308,7 +1308,7 @@ mapAliases ({ polarssl = throw "'polarssl' has been renamed to/replaced by 'mbedtls'"; # Converted to throw 2022-02-22 polymc = throw "PolyMC has been removed from nixpkgs due to a hostile takeover by a rogue maintainer. The rest of the maintainers have made a fork which is packaged as 'prismlauncher'"; # Added 2022-10-18 polysh = throw "polysh has been removed from nixpkgs as the upstream has abandoned the project"; # Added 2022-01-01 - pond = throw "pond has been dropped due to the lack of maintanence from upstream since 2016"; # Added 2022-06-02 + pond = throw "pond has been dropped due to the lack of maintenance from upstream since 2016"; # Added 2022-06-02 poppler_qt5 = throw "'poppler_qt5' has been renamed to/replaced by 'libsForQt5.poppler'"; # Converted to throw 2022-02-22 powerdns = pdns; # Added 2022-03-28 portaudio2014 = throw "'portaudio2014' has been removed"; # Added 2022-05-10 @@ -1768,7 +1768,7 @@ mapAliases ({ xineUI = xine-ui; # Added 2021-04-27 xlibsWrapper = throw "'xlibsWrapper' has been replaced by its constituents"; # Converted to throw 2022-12-27 xmonad_log_applet_gnome3 = throw "'xmonad_log_applet_gnome3' has been renamed to/replaced by 'xmonad_log_applet'"; # Converted to throw 2022-02-22 - xmpp-client = throw "xmpp-client has been dropped due to the lack of maintanence from upstream since 2017"; # Added 2022-06-02 + xmpp-client = throw "xmpp-client has been dropped due to the lack of maintenance from upstream since 2017"; # Added 2022-06-02 xmpppy = throw "xmpppy has been removed from nixpkgs as it is unmaintained and python2-only"; xp-pen-g430 = throw "xp-pen-g430 has been renamed to xp-pen-g430-driver"; # Converted to throw 2022-06-23 xpf = throw "xpf has been removed: abandoned by upstream"; # Added 2022-04-26 From 60572dc6410a2c64783f3eefc4b6743a48a8fa99 Mon Sep 17 00:00:00 2001 From: fetsorn Date: Mon, 8 May 2023 22:04:32 +0400 Subject: [PATCH 20/29] all-packages.nix: fix typos "trigerring" -> "triggering" --- pkgs/top-level/all-packages.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 9d602e43c06a..cc75c7d833c0 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -32425,7 +32425,7 @@ with pkgs; inherit lua; }; - # Wraps without trigerring a rebuild + # Wraps without triggering a rebuild wrapMpv = callPackage ../applications/video/mpv/wrapper.nix { }; mpv = wrapMpv mpv-unwrapped { }; From c712d1ef195add7811d641e56976701e3f8e133d Mon Sep 17 00:00:00 2001 From: fetsorn Date: Mon, 8 May 2023 22:04:53 +0400 Subject: [PATCH 21/29] d2codingfont: fix typo "verion" -> "version" --- pkgs/data/fonts/d2coding/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/data/fonts/d2coding/default.nix b/pkgs/data/fonts/d2coding/default.nix index 84af3d18bfe4..be6f0809ed97 100644 --- a/pkgs/data/fonts/d2coding/default.nix +++ b/pkgs/data/fonts/d2coding/default.nix @@ -24,7 +24,7 @@ stdenvNoCC.mkDerivation rec { D2Coding is a monospace font developed by a Korean IT Company called Naver. Font is good for displaying both Korean characters and latin characters, as sometimes these two languages could share some similar strokes. - Since verion 1.3, D2Coding font is officially supported by the font + Since version 1.3, D2Coding font is officially supported by the font creator, with symbols for Powerline. ''; homepage = "https://github.com/naver/d2codingfont"; From ac5f6d91007282440bc2aa3b6840024bb0fe2a91 Mon Sep 17 00:00:00 2001 From: fetsorn Date: Mon, 8 May 2023 22:05:10 +0400 Subject: [PATCH 22/29] nixos/apparmor: fix typo "usualy" -> "usually" --- nixos/modules/security/apparmor/includes.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/security/apparmor/includes.nix b/nixos/modules/security/apparmor/includes.nix index f290e95a296d..adfca04426ca 100644 --- a/nixos/modules/security/apparmor/includes.nix +++ b/nixos/modules/security/apparmor/includes.nix @@ -22,7 +22,7 @@ in # some may even be completely useless. config.security.apparmor.includes = { # This one is included by - # which is usualy included before any profile. + # which is usually included before any profile. "abstractions/tunables/alias" = '' alias /bin -> /run/current-system/sw/bin, alias /lib/modules -> /run/current-system/kernel/lib/modules, From d1398dd05c29090e9e83cc044c358016330517ed Mon Sep 17 00:00:00 2001 From: fetsorn Date: Mon, 8 May 2023 22:05:27 +0400 Subject: [PATCH 23/29] nixos/deluge: fix typo "secuerly" -> "securely" --- nixos/modules/services/torrent/deluge.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/services/torrent/deluge.nix b/nixos/modules/services/torrent/deluge.nix index de3d077daec9..003f7b2613b7 100644 --- a/nixos/modules/services/torrent/deluge.nix +++ b/nixos/modules/services/torrent/deluge.nix @@ -93,7 +93,7 @@ in { `true`. It does NOT apply to the daemon port nor the web UI port. To access those - ports secuerly check the documentation + ports securely check the documentation or use a VPN or configure certificates for deluge. ''; From f035683f555c8493d333bd78a8fb2abb105ebe3f Mon Sep 17 00:00:00 2001 From: fetsorn Date: Mon, 8 May 2023 22:06:06 +0400 Subject: [PATCH 24/29] nixos/matomo: fix typo "suported" -> "supported" --- nixos/modules/services/web-apps/matomo.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/services/web-apps/matomo.md b/nixos/modules/services/web-apps/matomo.md index f5536a35f7a8..e750c0c14775 100644 --- a/nixos/modules/services/web-apps/matomo.md +++ b/nixos/modules/services/web-apps/matomo.md @@ -3,7 +3,7 @@ Matomo is a real-time web analytics application. This module configures php-fpm as backend for Matomo, optionally configuring an nginx vhost as well. -An automatic setup is not suported by Matomo, so you need to configure Matomo +An automatic setup is not supported by Matomo, so you need to configure Matomo itself in the browser-based Matomo setup. ## Database Setup {#module-services-matomo-database-setup} From 1a4e9931042eee5a3067fb8342fc618875c4e0bc Mon Sep 17 00:00:00 2001 From: fetsorn Date: Mon, 8 May 2023 22:06:37 +0400 Subject: [PATCH 25/29] nixos/prometheus: fix typo "nixpgs" -> "nixpkgs" --- nixos/modules/services/monitoring/prometheus/exporters.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/services/monitoring/prometheus/exporters.md b/nixos/modules/services/monitoring/prometheus/exporters.md index c085e46d20d7..34fadecadc74 100644 --- a/nixos/modules/services/monitoring/prometheus/exporters.md +++ b/nixos/modules/services/monitoring/prometheus/exporters.md @@ -76,7 +76,7 @@ example: directory, which will be called postfix.nix and contains all exporter specific options and configuration: ``` - # nixpgs/nixos/modules/services/prometheus/exporters/postfix.nix + # nixpkgs/nixos/modules/services/prometheus/exporters/postfix.nix { config, lib, pkgs, options }: with lib; From 5e77899001adf6fe09f3cd762be63757a485a6cf Mon Sep 17 00:00:00 2001 From: fetsorn Date: Mon, 8 May 2023 22:06:54 +0400 Subject: [PATCH 26/29] nixos/tpm2: fix typo "acess" -> "access" --- nixos/modules/security/tpm2.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/security/tpm2.nix b/nixos/modules/security/tpm2.nix index 5a023cec48ee..708c3a69d174 100644 --- a/nixos/modules/security/tpm2.nix +++ b/nixos/modules/security/tpm2.nix @@ -3,7 +3,7 @@ let cfg = config.security.tpm2; # This snippet is taken from tpm2-tss/dist/tpm-udev.rules, but modified to allow custom user/groups - # The idea is that the tssUser is allowed to acess the TPM and kernel TPM resource manager, while + # The idea is that the tssUser is allowed to access the TPM and kernel TPM resource manager, while # the tssGroup is only allowed to access the kernel resource manager # Therefore, if either of the two are null, the respective part isn't generated udevRules = tssUser: tssGroup: '' From 392fabcf2638fee027138e93aab8b03f192527db Mon Sep 17 00:00:00 2001 From: fetsorn Date: Mon, 8 May 2023 22:08:36 +0400 Subject: [PATCH 27/29] libpkgconf: fix typo "someting" -> "something" --- pkgs/development/tools/misc/pkgconf/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/tools/misc/pkgconf/default.nix b/pkgs/development/tools/misc/pkgconf/default.nix index b80def838887..0aefac801360 100644 --- a/pkgs/development/tools/misc/pkgconf/default.nix +++ b/pkgs/development/tools/misc/pkgconf/default.nix @@ -35,7 +35,7 @@ stdenv.mkDerivation rec { # reason, but in this case the dev output is for the `libpkgconf` library, # while the aclocal stuff is for the tool. The tool is already for use during # development, so there is no reason to have separate "dev-bin" and "dev-lib" - # outputs or someting. + # outputs or something. + '' mv ${placeholder "dev"}/share ${placeholder "out"} ''; From 18bb97f46b2c6474be372668ee8f36a6e33f1e42 Mon Sep 17 00:00:00 2001 From: fetsorn Date: Mon, 8 May 2023 22:08:57 +0400 Subject: [PATCH 28/29] alkimia: fix typo "bounderies" -> "boundaries" --- pkgs/development/libraries/alkimia/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/libraries/alkimia/default.nix b/pkgs/development/libraries/alkimia/default.nix index 95f87ba58f6c..f317ae2833aa 100644 --- a/pkgs/development/libraries/alkimia/default.nix +++ b/pkgs/development/libraries/alkimia/default.nix @@ -27,7 +27,7 @@ mkDerivation rec { logic that will be used by all financial applications in KDE. The target is to share financial related information over - application bounderies. + application boundaries. ''; license = lib.licenses.lgpl21Plus; platforms = qtbase.meta.platforms; From 2472601dd4fc9098fa76ec43324487cc21921bc3 Mon Sep 17 00:00:00 2001 From: fetsorn Date: Mon, 8 May 2023 22:28:46 +0400 Subject: [PATCH 29/29] ctags: fix typos "funtions" -> "functions" "beeing" -> "being" --- pkgs/development/tools/misc/ctags/wrapped.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/tools/misc/ctags/wrapped.nix b/pkgs/development/tools/misc/ctags/wrapped.nix index f658e78d5db0..2bc3aa5ecf4f 100644 --- a/pkgs/development/tools/misc/ctags/wrapped.nix +++ b/pkgs/development/tools/misc/ctags/wrapped.nix @@ -53,7 +53,7 @@ with pkgs.lib; "--regex-PHP=/function[ \\t]+([^ (]*)/\\1/f/" ]; - # Javascript: also find unnamed functions and funtions beeing passed within a dict. + # Javascript: also find unnamed functions and functions being passed within a dict. # the dict properties is used to implement duck typing in frameworks # var foo = function () { ... } # {