summary refs log tree commit diff
path: root/pkgs/os-specific/linux/systemd
diff options
context:
space:
mode:
authorFlorian Klink <flokli@flokli.de>2022-03-06 19:59:42 +0100
committerGitHub <noreply@github.com>2022-03-06 19:59:42 +0100
commit57230883fb53238d4bf3807e066db03902222c2d (patch)
tree26a737d84d0c39198b5bfe0fef65d741d4823c0e /pkgs/os-specific/linux/systemd
parenta0bfc8e7c1f2a138ea0453bb0502277e042afc06 (diff)
parent479b1cb510b13fe5a89e5aa228b2df60d8c464ed (diff)
downloadnixpkgs-57230883fb53238d4bf3807e066db03902222c2d.tar
nixpkgs-57230883fb53238d4bf3807e066db03902222c2d.tar.gz
nixpkgs-57230883fb53238d4bf3807e066db03902222c2d.tar.bz2
nixpkgs-57230883fb53238d4bf3807e066db03902222c2d.tar.lz
nixpkgs-57230883fb53238d4bf3807e066db03902222c2d.tar.xz
nixpkgs-57230883fb53238d4bf3807e066db03902222c2d.tar.zst
nixpkgs-57230883fb53238d4bf3807e066db03902222c2d.zip
Merge pull request #162949 from alyssais/systemd-typos
systemd: fix a whole bunch of typos
Diffstat (limited to 'pkgs/os-specific/linux/systemd')
-rw-r--r--pkgs/os-specific/linux/systemd/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/os-specific/linux/systemd/default.nix b/pkgs/os-specific/linux/systemd/default.nix
index e27140b1f07..39679b31764 100644
--- a/pkgs/os-specific/linux/systemd/default.nix
+++ b/pkgs/os-specific/linux/systemd/default.nix
@@ -65,7 +65,7 @@
 , libfido2
 , p11-kit
 
-  # the (optional) BPF feature requires bpftool, libbpf, clang and llmv-strip to be avilable during build time.
+  # the (optional) BPF feature requires bpftool, libbpf, clang and llvm-strip to be available during build time.
   # Only libbpf should be a runtime dependency.
 , bpftools
 , libbpf
@@ -176,7 +176,7 @@ stdenv.mkDerivation {
     # systemd. With the below patch we mitigate that effect by special casing
     # all our root unit dirs if they are symlinks. This does exactly what we
     # need (AFAICT).
-    # See https://github.com/systemd/systemd/pull/20479 for upsteam discussion.
+    # See https://github.com/systemd/systemd/pull/20479 for upstream discussion.
     ./0019-core-handle-lookup-paths-being-symlinks.patch
   ] ++ lib.optional stdenv.hostPlatform.isMusl (
     let
@@ -224,7 +224,7 @@ stdenv.mkDerivation {
       "find_program('${stdenv.cc.bintools.targetPrefix}objcopy'"
   '' + (
     let
-      # The folllowing patches references to dynamic libraries to ensure that
+      # The following patches references to dynamic libraries to ensure that
       # all the features that are implemented via dlopen(3) are available (or
       # explicitly deactivated) by pointing dlopen to the absolute store path
       # instead of relying on the linkers runtime lookup code.
@@ -280,7 +280,7 @@ stdenv.mkDerivation {
           { name = "libidn.so.12"; pkg = null; }
           { name = "libidn.so.11"; pkg = null; }
 
-          # journalctl --grep requires libpcre so lets provide it
+          # journalctl --grep requires libpcre so let's provide it
           { name = "libpcre2-8.so.0"; pkg = pcre2; }
 
           # Support for TPM2 in systemd-cryptsetup, systemd-repart and systemd-cryptenroll
@@ -311,7 +311,7 @@ stdenv.mkDerivation {
             # exceptional case, details:
             # https://github.com/systemd/systemd-stable/blob/v249-stable/src/shared/tpm2-util.c#L157
             if ! [[ "${library}" =~ .*libtss2-tcti-$ ]]; then
-              echo 'The shared library `${library}` does not exist but was given as subtitute for `${dl.name}`'
+              echo 'The shared library `${library}` does not exist but was given as substitute for `${dl.name}`'
               exit 1
             fi
           fi