From ca2cb9f644458b1a7836eb49fd98a7eafdbe560c Mon Sep 17 00:00:00 2001 From: Daniel Nagy Date: Fri, 9 Jun 2023 15:30:00 +0200 Subject: [PATCH] treewide: "libary" -> "library" --- pkgs/applications/networking/remote/rustdesk/default.nix | 2 +- pkgs/applications/window-managers/afterstep/default.nix | 2 +- pkgs/build-support/rust/build-rust-crate/default.nix | 4 ++-- pkgs/development/compilers/gcc/common/pre-configure.nix | 2 +- pkgs/development/libraries/libixp/default.nix | 2 +- pkgs/development/python-modules/pilkit/default.nix | 2 +- pkgs/development/tools/rust/bindgen/default.nix | 2 +- pkgs/development/tools/rust/cargo-c/default.nix | 2 +- pkgs/tools/graphics/leela/default.nix | 2 +- pkgs/tools/misc/usbimager/default.nix | 2 +- 10 files changed, 11 insertions(+), 11 deletions(-) diff --git a/pkgs/applications/networking/remote/rustdesk/default.nix b/pkgs/applications/networking/remote/rustdesk/default.nix index 76f34cd68f2..1f2972ee312 100644 --- a/pkgs/applications/networking/remote/rustdesk/default.nix +++ b/pkgs/applications/networking/remote/rustdesk/default.nix @@ -61,7 +61,7 @@ rustPlatform.buildRustPackage rec { ./cargo.patch ]; - # Manually simulate a vcpkg installation so that it can link the libaries + # Manually simulate a vcpkg installation so that it can link the libraries # properly. postUnpack = let diff --git a/pkgs/applications/window-managers/afterstep/default.nix b/pkgs/applications/window-managers/afterstep/default.nix index 4bc757f2721..e344bbdf558 100644 --- a/pkgs/applications/window-managers/afterstep/default.nix +++ b/pkgs/applications/window-managers/afterstep/default.nix @@ -60,7 +60,7 @@ stdenv.mkDerivation rec { export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE $(pkg-config dbus-1 --cflags)" ''; - # Parallel build fails due to missing dependencies between private libaries: + # Parallel build fails due to missing dependencies between private libraries: # ld: cannot find ../libAfterConf/libAfterConf.a: No such file or directory # Let's disable parallel builds until it's fixed upstream: # https://github.com/afterstep/afterstep/issues/8 diff --git a/pkgs/build-support/rust/build-rust-crate/default.nix b/pkgs/build-support/rust/build-rust-crate/default.nix index 17ce3f75fb1..f6079b7316d 100644 --- a/pkgs/build-support/rust/build-rust-crate/default.nix +++ b/pkgs/build-support/rust/build-rust-crate/default.nix @@ -125,10 +125,10 @@ crate_: lib.makeOverridable # hello = attrs: { buildInputs = [ openssl ]; }; # } , crateOverrides - # Rust library dependencies, i.e. other libaries that were built + # Rust library dependencies, i.e. other libraries that were built # with buildRustCrate. , dependencies - # Rust build dependencies, i.e. other libaries that were built + # Rust build dependencies, i.e. other libraries that were built # with buildRustCrate and are used by a build script. , buildDependencies # Specify the "extern" name of a library if it differs from the library target. diff --git a/pkgs/development/compilers/gcc/common/pre-configure.nix b/pkgs/development/compilers/gcc/common/pre-configure.nix index 4a631f07d5b..58e44b96b5d 100644 --- a/pkgs/development/compilers/gcc/common/pre-configure.nix +++ b/pkgs/development/compilers/gcc/common/pre-configure.nix @@ -69,7 +69,7 @@ in lib.optionalString (hostPlatform.isSunOS && hostPlatform.is64bit) '' # This fix would not be necessary if ANY of the above were false: # - If Nix used native headers for each different MacOS version, aligned_alloc # would be in the headers on Catalina. -# - If Nix used the same libary binaries for each MacOS version, aligned_alloc +# - If Nix used the same library binaries for each MacOS version, aligned_alloc # would not be in the library binaries. # - If Catalina did not include aligned_alloc, this wouldn't be a problem. # - If the configure scripts looked for header presence as well as diff --git a/pkgs/development/libraries/libixp/default.nix b/pkgs/development/libraries/libixp/default.nix index c4f06b3ea77..f6ad6d01b08 100644 --- a/pkgs/development/libraries/libixp/default.nix +++ b/pkgs/development/libraries/libixp/default.nix @@ -25,7 +25,7 @@ stdenv.mkDerivation rec { meta = { homepage = "https://github.com/0intro/libixp"; - description = "Portable, simple C-language 9P client and server libary"; + description = "Portable, simple C-language 9P client and server library"; maintainers = with lib.maintainers; [ kovirobi ]; license = lib.licenses.mit; platforms = with lib.platforms; unix; diff --git a/pkgs/development/python-modules/pilkit/default.nix b/pkgs/development/python-modules/pilkit/default.nix index edf2d7eac27..843f9dfdf24 100644 --- a/pkgs/development/python-modules/pilkit/default.nix +++ b/pkgs/development/python-modules/pilkit/default.nix @@ -40,7 +40,7 @@ buildPythonPackage rec { ]; meta = with lib; { - description = "A collection of utilities and processors for the Python Imaging Libary"; + description = "A collection of utilities and processors for the Python Imaging Library"; homepage = "https://github.com/matthewwithanm/pilkit/"; license = licenses.bsd0; maintainers = with maintainers; [ domenkozar ]; diff --git a/pkgs/development/tools/rust/bindgen/default.nix b/pkgs/development/tools/rust/bindgen/default.nix index cc2cb444a5d..462eb6022c5 100644 --- a/pkgs/development/tools/rust/bindgen/default.nix +++ b/pkgs/development/tools/rust/bindgen/default.nix @@ -10,7 +10,7 @@ let meta = rust-bindgen-unwrapped.meta // { longDescription = rust-bindgen-unwrapped.meta.longDescription + '' This version of bindgen is wrapped with the required compiler flags - required to find the c and c++ standard libary, as well as the libraries + required to find the c and c++ standard library, as well as the libraries specified in the buildInputs of your derivation. ''; }; diff --git a/pkgs/development/tools/rust/cargo-c/default.nix b/pkgs/development/tools/rust/cargo-c/default.nix index e478f909a24..54474d2d6fd 100644 --- a/pkgs/development/tools/rust/cargo-c/default.nix +++ b/pkgs/development/tools/rust/cargo-c/default.nix @@ -41,7 +41,7 @@ rustPlatform.buildRustPackage rec { ''; meta = with lib; { - description = "A cargo subcommand to build and install C-ABI compatibile dynamic and static libraries"; + description = "A cargo subcommand to build and install C-ABI compatible dynamic and static libraries"; longDescription = '' Cargo C-ABI helpers. A cargo applet that produces and installs a correct pkg-config file, a static library and a dynamic library, and a C header diff --git a/pkgs/tools/graphics/leela/default.nix b/pkgs/tools/graphics/leela/default.nix index e50716f7a5c..6676e47ad49 100644 --- a/pkgs/tools/graphics/leela/default.nix +++ b/pkgs/tools/graphics/leela/default.nix @@ -17,7 +17,7 @@ stdenv.mkDerivation { installFlags = [ "PREFIX=$(out)" "MANDIR=$(out)/share/man" ]; meta = { - description = "CLI frontend to the poppler-glib libary of PDF tools"; + description = "CLI frontend to the poppler-glib library of PDF tools"; homepage = "https://github.com/TrilbyWhite/Leela"; license = lib.licenses.gpl3; maintainers = [ lib.maintainers.puffnfresh ]; diff --git a/pkgs/tools/misc/usbimager/default.nix b/pkgs/tools/misc/usbimager/default.nix index 89ce91ef3e1..41ae07f1775 100644 --- a/pkgs/tools/misc/usbimager/default.nix +++ b/pkgs/tools/misc/usbimager/default.nix @@ -20,7 +20,7 @@ stdenv.mkDerivation rec { buildInputs = lib.optionals withUdisks [ udisks glib ] ++ lib.optional (!withLibui) libX11 ++ lib.optional withLibui gtk3; - # libui is bundled with the source of usbimager as a compiled static libary + # libui is bundled with the source of usbimager as a compiled static library postPatch = '' sed -i \