From bc1ca1fa6b8b46c5c134a08efe92c2de99d0d5da Mon Sep 17 00:00:00 2001 From: Yurii Matsiuk Date: Tue, 29 Jun 2021 07:27:39 +0200 Subject: [PATCH 01/14] Revert "linux: fix regression in bridge VLAN configuration" This reverts commit 24a08441d52480cf3332a100e24fdf9b83a8351a. (cherry picked from commit 2f0d1e41e254e55e2668f19faf2f307598e43f6e) --- pkgs/os-specific/linux/kernel/patches.nix | 9 --------- pkgs/top-level/all-packages.nix | 3 --- 2 files changed, 12 deletions(-) diff --git a/pkgs/os-specific/linux/kernel/patches.nix b/pkgs/os-specific/linux/kernel/patches.nix index 48dd9b38d9b..f41cedca0f6 100644 --- a/pkgs/os-specific/linux/kernel/patches.nix +++ b/pkgs/os-specific/linux/kernel/patches.nix @@ -102,13 +102,4 @@ name = "mac_nvme_t2"; patch = ./mac-nvme-t2.patch; }; - - rtnetlink_fix_regression_in_bridge_vlan_configuration = rec { - name = "rtnetlink_fix_regression_in_bridge_vlan_configuration"; - patch = fetchpatch { - name = name + ".patch"; - url = "https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/patch/?id=d2e381c4963663bca6f30c3b996fa4dbafe8fcb5"; - sha256 = "0ragdi13yh5ypp9x49vrdjqx8ddh7sq7i1qjp8fyrbk3n0jdaac3"; - }; - }; } diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 9343baee093..76a51aaa32e 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -20387,7 +20387,6 @@ in kernelPatches.bridge_stp_helper kernelPatches.request_key_helper kernelPatches.rtl8761b_support - kernelPatches.rtnetlink_fix_regression_in_bridge_vlan_configuration ]; }; @@ -20402,7 +20401,6 @@ in kernelPatches = [ kernelPatches.bridge_stp_helper kernelPatches.request_key_helper - kernelPatches.rtnetlink_fix_regression_in_bridge_vlan_configuration ]; }; @@ -20410,7 +20408,6 @@ in kernelPatches = [ kernelPatches.bridge_stp_helper kernelPatches.request_key_helper - kernelPatches.rtnetlink_fix_regression_in_bridge_vlan_configuration ]; }; From 78ff5dfec2758e87d49b688f3da1b33e8766ae24 Mon Sep 17 00:00:00 2001 From: Yurii Matsiuk Date: Fri, 2 Jul 2021 15:06:49 +0200 Subject: [PATCH 02/14] linux: 4.14.237 -> 4.14.238 (cherry picked from commit 1c15f4eef1c304e8d89a2f42554c503c4925e1cf) --- pkgs/os-specific/linux/kernel/linux-4.14.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/kernel/linux-4.14.nix b/pkgs/os-specific/linux/kernel/linux-4.14.nix index a550008b9d5..f418afc280b 100644 --- a/pkgs/os-specific/linux/kernel/linux-4.14.nix +++ b/pkgs/os-specific/linux/kernel/linux-4.14.nix @@ -3,7 +3,7 @@ with lib; buildLinux (args // rec { - version = "4.14.237"; + version = "4.14.238"; # modDirVersion needs to be x.y.z, will automatically add .0 if needed modDirVersion = if (modDirVersionArg == null) then concatStringsSep "." (take 3 (splitVersion "${version}.0")) else modDirVersionArg; @@ -13,7 +13,7 @@ buildLinux (args // rec { src = fetchurl { url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz"; - sha256 = "0kib9p61hhwjbr8zhir9aw86qik7k6bm95503n3k09ayyachajpq"; + sha256 = "1phjgm1fhyfpm2h9b2bngcbh91v2qrxcm7vma86q7pdqrcbh1fih"; }; kernelTests = args.kernelTests or [ nixosTests.kernel-generic.linux_4_14 ]; From d638fb55255cb29c453d1c677264e5745ee2bb6a Mon Sep 17 00:00:00 2001 From: Yurii Matsiuk Date: Fri, 2 Jul 2021 15:06:56 +0200 Subject: [PATCH 03/14] linux: 4.19.195 -> 4.19.196 (cherry picked from commit a5394f31e8cc9f24a549d6070ee6153e1f946537) --- pkgs/os-specific/linux/kernel/linux-4.19.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/kernel/linux-4.19.nix b/pkgs/os-specific/linux/kernel/linux-4.19.nix index 42d98f1485e..460982b6d2f 100644 --- a/pkgs/os-specific/linux/kernel/linux-4.19.nix +++ b/pkgs/os-specific/linux/kernel/linux-4.19.nix @@ -3,7 +3,7 @@ with lib; buildLinux (args // rec { - version = "4.19.195"; + version = "4.19.196"; # modDirVersion needs to be x.y.z, will automatically add .0 if needed modDirVersion = if (modDirVersionArg == null) then concatStringsSep "." (take 3 (splitVersion "${version}.0")) else modDirVersionArg; @@ -13,7 +13,7 @@ buildLinux (args // rec { src = fetchurl { url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz"; - sha256 = "02rdy5mdmwxli0cin5n7ab492y9fs01hhqxrjq6b4idwv5baa42m"; + sha256 = "0liapgaczv6lq7223wnq2cbwfb6w93iw14dv1xidcb3bnakm4h5f"; }; kernelTests = args.kernelTests or [ nixosTests.kernel-generic.linux_4_19 ]; From e168b5bcc9e7afa1453675d0d12b48dafd3c9e7a Mon Sep 17 00:00:00 2001 From: Yurii Matsiuk Date: Fri, 2 Jul 2021 15:07:00 +0200 Subject: [PATCH 04/14] linux: 4.4.273 -> 4.4.274 (cherry picked from commit ffdd1ac7768c9eb5a1f0a134adc0e5ce473ca3a5) --- pkgs/os-specific/linux/kernel/linux-4.4.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/kernel/linux-4.4.nix b/pkgs/os-specific/linux/kernel/linux-4.4.nix index d06d5133b47..9a5dcb7e1ad 100644 --- a/pkgs/os-specific/linux/kernel/linux-4.4.nix +++ b/pkgs/os-specific/linux/kernel/linux-4.4.nix @@ -1,13 +1,13 @@ { buildPackages, fetchurl, perl, buildLinux, nixosTests, stdenv, ... } @ args: buildLinux (args // rec { - version = "4.4.273"; + version = "4.4.274"; extraMeta.branch = "4.4"; extraMeta.broken = stdenv.isAarch64; src = fetchurl { url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz"; - sha256 = "1pd39cak0zhda3m9nvn9yxgd070wxvckaha5wl8pi7c8i6jfpclb"; + sha256 = "1n4wawk8fi5s22177994vq9hzay49cackdabl9r1x8y2i9jcqmg4"; }; kernelTests = args.kernelTests or [ nixosTests.kernel-generic.linux_4_4 ]; From dc34cf70c859d7829977e2ba68a18d14a86f8d77 Mon Sep 17 00:00:00 2001 From: Yurii Matsiuk Date: Fri, 2 Jul 2021 15:07:06 +0200 Subject: [PATCH 05/14] linux: 4.9.273 -> 4.9.274 (cherry picked from commit 24a5777be9e967bef974fb769b386665b671a6af) --- pkgs/os-specific/linux/kernel/linux-4.9.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/kernel/linux-4.9.nix b/pkgs/os-specific/linux/kernel/linux-4.9.nix index d614464bf2a..a4d57135e4a 100644 --- a/pkgs/os-specific/linux/kernel/linux-4.9.nix +++ b/pkgs/os-specific/linux/kernel/linux-4.9.nix @@ -1,13 +1,13 @@ { buildPackages, fetchurl, perl, buildLinux, nixosTests, stdenv, ... } @ args: buildLinux (args // rec { - version = "4.9.273"; + version = "4.9.274"; extraMeta.branch = "4.9"; extraMeta.broken = stdenv.isAarch64; src = fetchurl { url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz"; - sha256 = "0jjarv3xfkc21j1xhgch53w8wm6rq3xw1i03rjw9fv5i9k4x6qsw"; + sha256 = "0xdi33f25lbpplx36cz7chdsn7a6xdjvwxgvnmvrw7b2y0g45m95"; }; kernelTests = args.kernelTests or [ nixosTests.kernel-generic.linux_4_9 ]; From a18dea6fb65649e9761c892fb76bdd785f6f68e8 Mon Sep 17 00:00:00 2001 From: Yurii Matsiuk Date: Fri, 2 Jul 2021 15:07:13 +0200 Subject: [PATCH 06/14] linux: 5.10.45 -> 5.10.47 (cherry picked from commit f52103a4e69179631828d453ba0ca68add15952c) --- pkgs/os-specific/linux/kernel/linux-5.10.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/kernel/linux-5.10.nix b/pkgs/os-specific/linux/kernel/linux-5.10.nix index e11b5db3d30..deec1b3a475 100644 --- a/pkgs/os-specific/linux/kernel/linux-5.10.nix +++ b/pkgs/os-specific/linux/kernel/linux-5.10.nix @@ -3,7 +3,7 @@ with lib; buildLinux (args // rec { - version = "5.10.45"; + version = "5.10.47"; # modDirVersion needs to be x.y.z, will automatically add .0 if needed modDirVersion = if (modDirVersionArg == null) then concatStringsSep "." (take 3 (splitVersion "${version}.0")) else modDirVersionArg; @@ -13,7 +13,7 @@ buildLinux (args // rec { src = fetchurl { url = "mirror://kernel/linux/kernel/v5.x/linux-${version}.tar.xz"; - sha256 = "01rmw5rnxyybr8sh0v9rgamrg71ign2nr7m0ilrq9704k6dj9dzj"; + sha256 = "1ig1kb10729xyawm2zqzx8slpdbylgwms7b5vkhw3q6iwqpjmd9h"; }; kernelTests = args.kernelTests or [ nixosTests.kernel-generic.linux_5_10 ]; From b0214fccfbda5ed08eaf29867a27a8981a80c808 Mon Sep 17 00:00:00 2001 From: Yurii Matsiuk Date: Fri, 2 Jul 2021 15:07:20 +0200 Subject: [PATCH 07/14] linux: 5.12.12 -> 5.12.14 (cherry picked from commit d28212b0842fea0e03376247320f7b41da4abef1) --- pkgs/os-specific/linux/kernel/linux-5.12.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/kernel/linux-5.12.nix b/pkgs/os-specific/linux/kernel/linux-5.12.nix index 5cc25f4a6da..93e7499c8dd 100644 --- a/pkgs/os-specific/linux/kernel/linux-5.12.nix +++ b/pkgs/os-specific/linux/kernel/linux-5.12.nix @@ -3,7 +3,7 @@ with lib; buildLinux (args // rec { - version = "5.12.12"; + version = "5.12.14"; # modDirVersion needs to be x.y.z, will automatically add .0 if needed modDirVersion = if (modDirVersionArg == null) then concatStringsSep "." (take 3 (splitVersion "${version}.0")) else modDirVersionArg; @@ -13,7 +13,7 @@ buildLinux (args // rec { src = fetchurl { url = "mirror://kernel/linux/kernel/v5.x/linux-${version}.tar.xz"; - sha256 = "1a1ymbgkp8ngrkf7cfjrn56zb9qz1mm1j1pmd60g85ln7nyb4ai1"; + sha256 = "1b3xnb62n53vm6larkvv2vzd9w7cjnqh8zh6jzq9lpcg12c3pjlh"; }; kernelTests = args.kernelTests or [ nixosTests.kernel-generic.linux_5_12 ]; From 926c9aabc7ef62929be1178b047cb4a8d41df91d Mon Sep 17 00:00:00 2001 From: Yurii Matsiuk Date: Fri, 2 Jul 2021 15:07:27 +0200 Subject: [PATCH 08/14] linux: 5.4.127 -> 5.4.129 (cherry picked from commit 5da58d1f67170c3dd5da6fc86d38f0d28abe4f12) --- pkgs/os-specific/linux/kernel/linux-5.4.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/kernel/linux-5.4.nix b/pkgs/os-specific/linux/kernel/linux-5.4.nix index 377a5308345..c5b4e390582 100644 --- a/pkgs/os-specific/linux/kernel/linux-5.4.nix +++ b/pkgs/os-specific/linux/kernel/linux-5.4.nix @@ -3,7 +3,7 @@ with lib; buildLinux (args // rec { - version = "5.4.127"; + version = "5.4.129"; # modDirVersion needs to be x.y.z, will automatically add .0 if needed modDirVersion = if (modDirVersionArg == null) then concatStringsSep "." (take 3 (splitVersion "${version}.0")) else modDirVersionArg; @@ -13,7 +13,7 @@ buildLinux (args // rec { src = fetchurl { url = "mirror://kernel/linux/kernel/v5.x/linux-${version}.tar.xz"; - sha256 = "1gr89x1ymxaslp9fqcchaa7939yvhxy67z3pgskmx6z2vrd9pgd0"; + sha256 = "1ps64gx85lmbriq445hd2hcv4g4b1d1cwf4r3nd90x6i2cj4c9j4"; }; kernelTests = args.kernelTests or [ nixosTests.kernel-generic.linux_5_4 ]; From 15f8e24bc6b9405da29cb5945a1291baf2543e99 Mon Sep 17 00:00:00 2001 From: Yurii Matsiuk Date: Fri, 2 Jul 2021 15:07:56 +0200 Subject: [PATCH 09/14] linux/hardened/patches/4.14: 4.14.237-hardened1 -> 4.14.238-hardened1 (cherry picked from commit c7323350678a84f0557d475e94887fe94005086b) --- pkgs/os-specific/linux/kernel/hardened/patches.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/os-specific/linux/kernel/hardened/patches.json b/pkgs/os-specific/linux/kernel/hardened/patches.json index 3d3ddfc3310..9fad52c0111 100644 --- a/pkgs/os-specific/linux/kernel/hardened/patches.json +++ b/pkgs/os-specific/linux/kernel/hardened/patches.json @@ -1,9 +1,9 @@ { "4.14": { "extra": "-hardened1", - "name": "linux-hardened-4.14.237-hardened1.patch", - "sha256": "0iz7q29dazp11ii1f2kcffkpi14765w0ryrn6dsb8mlqcsw639lc", - "url": "https://github.com/anthraxx/linux-hardened/releases/download/4.14.237-hardened1/linux-hardened-4.14.237-hardened1.patch" + "name": "linux-hardened-4.14.238-hardened1.patch", + "sha256": "13wld3dm9ymwcsk5f06l64z9q49ff7rh7dqfqxxhkngdx2i1h566", + "url": "https://github.com/anthraxx/linux-hardened/releases/download/4.14.238-hardened1/linux-hardened-4.14.238-hardened1.patch" }, "4.19": { "extra": "-hardened1", From 99d53a0c8914a92ccd8edb7e68ee995f67932251 Mon Sep 17 00:00:00 2001 From: Yurii Matsiuk Date: Fri, 2 Jul 2021 15:07:57 +0200 Subject: [PATCH 10/14] linux/hardened/patches/4.19: 4.19.195-hardened1 -> 4.19.196-hardened1 (cherry picked from commit 5a058ab3846b568ee71b6356fa35d1e383e6ce27) --- pkgs/os-specific/linux/kernel/hardened/patches.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/os-specific/linux/kernel/hardened/patches.json b/pkgs/os-specific/linux/kernel/hardened/patches.json index 9fad52c0111..fb091dc2499 100644 --- a/pkgs/os-specific/linux/kernel/hardened/patches.json +++ b/pkgs/os-specific/linux/kernel/hardened/patches.json @@ -7,9 +7,9 @@ }, "4.19": { "extra": "-hardened1", - "name": "linux-hardened-4.19.195-hardened1.patch", - "sha256": "1h8v28kscaz4y2samww3vxpq4xvkbdvsnr0hybimn0ygwphshpqq", - "url": "https://github.com/anthraxx/linux-hardened/releases/download/4.19.195-hardened1/linux-hardened-4.19.195-hardened1.patch" + "name": "linux-hardened-4.19.196-hardened1.patch", + "sha256": "1wna5j1g1703gl4xw4x5z8dmc8gjqg879zq4xnmlyc0vryqjrxyq", + "url": "https://github.com/anthraxx/linux-hardened/releases/download/4.19.196-hardened1/linux-hardened-4.19.196-hardened1.patch" }, "5.10": { "extra": "-hardened1", From faa6d6b9b13a680473c88a8ee7208b4affe0571c Mon Sep 17 00:00:00 2001 From: Yurii Matsiuk Date: Fri, 2 Jul 2021 15:07:58 +0200 Subject: [PATCH 11/14] linux/hardened/patches/5.10: 5.10.45-hardened1 -> 5.10.47-hardened1 (cherry picked from commit 344bf9c20e10e5484a72d3dc1a77d31d1aed9e84) --- pkgs/os-specific/linux/kernel/hardened/patches.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/os-specific/linux/kernel/hardened/patches.json b/pkgs/os-specific/linux/kernel/hardened/patches.json index fb091dc2499..8b869c2439a 100644 --- a/pkgs/os-specific/linux/kernel/hardened/patches.json +++ b/pkgs/os-specific/linux/kernel/hardened/patches.json @@ -13,9 +13,9 @@ }, "5.10": { "extra": "-hardened1", - "name": "linux-hardened-5.10.45-hardened1.patch", - "sha256": "1382dflkv31b9apf3l0b5wcq8hyi69jm03139z3m0vbxi93pk44z", - "url": "https://github.com/anthraxx/linux-hardened/releases/download/5.10.45-hardened1/linux-hardened-5.10.45-hardened1.patch" + "name": "linux-hardened-5.10.47-hardened1.patch", + "sha256": "0qkwz3d83p2l5p7lhj3imfx8cr17smciw76xhj00zv171vc3q7xm", + "url": "https://github.com/anthraxx/linux-hardened/releases/download/5.10.47-hardened1/linux-hardened-5.10.47-hardened1.patch" }, "5.12": { "extra": "-hardened1", From 24d3d7b72ce82335758c3785e5f2e51d277b3528 Mon Sep 17 00:00:00 2001 From: Yurii Matsiuk Date: Fri, 2 Jul 2021 15:07:59 +0200 Subject: [PATCH 12/14] linux/hardened/patches/5.12: 5.12.12-hardened1 -> 5.12.14-hardened1 (cherry picked from commit 6643bf87ae69a2e3edcbc47f2dc841246e02372e) --- pkgs/os-specific/linux/kernel/hardened/patches.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/os-specific/linux/kernel/hardened/patches.json b/pkgs/os-specific/linux/kernel/hardened/patches.json index 8b869c2439a..a93ac9fe359 100644 --- a/pkgs/os-specific/linux/kernel/hardened/patches.json +++ b/pkgs/os-specific/linux/kernel/hardened/patches.json @@ -19,9 +19,9 @@ }, "5.12": { "extra": "-hardened1", - "name": "linux-hardened-5.12.12-hardened1.patch", - "sha256": "10923kjxhfphsh1wr0zjj3lk16bxkq9ana4hyy8af7cn2k30k4iw", - "url": "https://github.com/anthraxx/linux-hardened/releases/download/5.12.12-hardened1/linux-hardened-5.12.12-hardened1.patch" + "name": "linux-hardened-5.12.14-hardened1.patch", + "sha256": "0c5zi03j5bjhr706wad1qf5kr4nv0s2bzkx4z5mr6wqgra5dg22v", + "url": "https://github.com/anthraxx/linux-hardened/releases/download/5.12.14-hardened1/linux-hardened-5.12.14-hardened1.patch" }, "5.4": { "extra": "-hardened1", From d06db41bb7a1232d32bfdc97fc95506c699d3c0a Mon Sep 17 00:00:00 2001 From: Yurii Matsiuk Date: Fri, 2 Jul 2021 15:08:00 +0200 Subject: [PATCH 13/14] linux/hardened/patches/5.4: 5.4.127-hardened1 -> 5.4.129-hardened1 (cherry picked from commit 338286e6b05edee0faabbf0685b05dc6f2a5be44) --- pkgs/os-specific/linux/kernel/hardened/patches.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/os-specific/linux/kernel/hardened/patches.json b/pkgs/os-specific/linux/kernel/hardened/patches.json index a93ac9fe359..bd1a5397f60 100644 --- a/pkgs/os-specific/linux/kernel/hardened/patches.json +++ b/pkgs/os-specific/linux/kernel/hardened/patches.json @@ -25,8 +25,8 @@ }, "5.4": { "extra": "-hardened1", - "name": "linux-hardened-5.4.127-hardened1.patch", - "sha256": "1qsz5cnm0ny138pbd9f7j5avvz69g51db7dgr1q4farrjml3nshy", - "url": "https://github.com/anthraxx/linux-hardened/releases/download/5.4.127-hardened1/linux-hardened-5.4.127-hardened1.patch" + "name": "linux-hardened-5.4.129-hardened1.patch", + "sha256": "0b16w4jm22mlhwfvbzbg8bw9z7hp13r1bl5g5rk42vmz07ahknga", + "url": "https://github.com/anthraxx/linux-hardened/releases/download/5.4.129-hardened1/linux-hardened-5.4.129-hardened1.patch" } } From 0f88b5e5466424faed7642bb9ab9d6272fa2a46c Mon Sep 17 00:00:00 2001 From: Michael Weiss Date: Thu, 8 Jul 2021 12:28:34 +0200 Subject: [PATCH 14/14] signal-desktop: 5.7.1 -> 5.8.0 (cherry picked from commit 5a5d6a785a4ccf5ca00c44ba4a6902830c082434) --- .../networking/instant-messengers/signal-desktop/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/networking/instant-messengers/signal-desktop/default.nix b/pkgs/applications/networking/instant-messengers/signal-desktop/default.nix index 023fc097b5e..f93a01cf22b 100644 --- a/pkgs/applications/networking/instant-messengers/signal-desktop/default.nix +++ b/pkgs/applications/networking/instant-messengers/signal-desktop/default.nix @@ -25,7 +25,7 @@ let else ""); in stdenv.mkDerivation rec { pname = "signal-desktop"; - version = "5.7.1"; # Please backport all updates to the stable channel. + version = "5.8.0"; # Please backport all updates to the stable channel. # All releases have a limited lifetime and "expire" 90 days after the release. # When releases "expire" the application becomes unusable until an update is # applied. The expiration date for the current release can be extracted with: @@ -35,7 +35,7 @@ in stdenv.mkDerivation rec { src = fetchurl { url = "https://updates.signal.org/desktop/apt/pool/main/s/signal-desktop/signal-desktop_${version}_amd64.deb"; - sha256 = "1hjykjqf3n20aab9g3bwk5w8x8v61320xv6z4iqrwwdzfkb3ly20"; + sha256 = "0icwmlnnnlsj2g1p2q4lf7hlhys3rakaim7bah5qkmhwkrzkk30y"; }; nativeBuildInputs = [