about summary refs log tree commit diff
path: root/pkgs/build-support/kernel/make-initrd.nix
diff options
context:
space:
mode:
authorLinus Heckemann <git@sphalerite.org>2021-08-02 23:11:25 +0200
committerLinus Heckemann <git@sphalerite.org>2021-08-08 07:53:59 +0200
commitb0fc6e8ff921343e365f726a96b8419515936f4d (patch)
treed765609df82fa0a650fa47374b486b39281f2830 /pkgs/build-support/kernel/make-initrd.nix
parent439b1605227b8adb1357b55ce8529d541abbe9eb (diff)
make-initrd: fix #132059
Diffstat (limited to 'pkgs/build-support/kernel/make-initrd.nix')
-rw-r--r--pkgs/build-support/kernel/make-initrd.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/build-support/kernel/make-initrd.nix b/pkgs/build-support/kernel/make-initrd.nix
index 83d3bb65baec6..23ce992f0d557 100644
--- a/pkgs/build-support/kernel/make-initrd.nix
+++ b/pkgs/build-support/kernel/make-initrd.nix
@@ -78,7 +78,7 @@ let
 in stdenvNoCC.mkDerivation rec {
   inherit name makeUInitrd extension uInitrdArch prepend;
 
-  ${if makeUInitrd then "uinitrdCompression" else null} = uInitrdCompression;
+  ${if makeUInitrd then "uInitrdCompression" else null} = uInitrdCompression;
 
   builder = ./make-initrd.sh;