From 6d7fd894532f094b6d60267c3f340b3e0a671e9b Mon Sep 17 00:00:00 2001 From: Felix Singer Date: Fri, 8 Oct 2021 04:35:37 +0200 Subject: [PATCH] coreboot-toolchain: Set pname instead of name Set `pname` instead of `name` since `name` is derived from `${pname}-${version}`. Signed-off-by: Felix Singer --- pkgs/development/tools/misc/coreboot-toolchain/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/tools/misc/coreboot-toolchain/default.nix b/pkgs/development/tools/misc/coreboot-toolchain/default.nix index 3c22e0d64ebc..c8f1a3e420a2 100644 --- a/pkgs/development/tools/misc/coreboot-toolchain/default.nix +++ b/pkgs/development/tools/misc/coreboot-toolchain/default.nix @@ -62,7 +62,7 @@ let sha256 = "0viw2x4ckjwiylb92w85k06b0g9pmamjy2yqs7fxfqbmfadkf1yr"; }; in stdenvNoCC.mkDerivation rec { - name = "coreboot-toolchain"; + pname = "coreboot-toolchain"; version = version_coreboot; src = tar_coreboot;