From 4e75ca5bae03449edc4915c8b78267976d719d6e Mon Sep 17 00:00:00 2001 From: Felix Singer Date: Thu, 28 Oct 2021 01:13:32 +0200 Subject: [PATCH] coreboot-toolchain: Disable fetching of submodules Submodules are not needed. Thus, disable fetching of the submodules. Signed-off-by: Felix Singer --- pkgs/development/tools/misc/coreboot-toolchain/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/development/tools/misc/coreboot-toolchain/default.nix b/pkgs/development/tools/misc/coreboot-toolchain/default.nix index fc8277625a9d..5c64a4cc6dd6 100644 --- a/pkgs/development/tools/misc/coreboot-toolchain/default.nix +++ b/pkgs/development/tools/misc/coreboot-toolchain/default.nix @@ -11,6 +11,7 @@ stdenvNoCC.mkDerivation rec { url = "https://review.coreboot.org/coreboot"; rev = version; sha256 = "00xr74yc0kj9rrqa1a8b7bih865qlp9i4zs67ysavkfrjrwwssxm"; + fetchSubmodules = false; }; nativeBuildInputs = [ bison curl git perl ];