iucode-tool: add argp-standalone buildInput on musl (#217202)

authored by Yureka and committed by GitHub e029dad9 c683aaaa

+2 -1
+2 -1
pkgs/os-specific/linux/microcode/iucode-tool.nix
··· 1 - { lib, stdenv, fetchFromGitLab, autoreconfHook, fetchpatch }: 2 3 stdenv.mkDerivation rec { 4 pname = "iucode-tool"; ··· 21 ]; 22 23 nativeBuildInputs = [ autoreconfHook ]; 24 25 enableParallelBuilding = true; 26
··· 1 + { lib, stdenv, fetchFromGitLab, autoreconfHook, fetchpatch, argp-standalone }: 2 3 stdenv.mkDerivation rec { 4 pname = "iucode-tool"; ··· 21 ]; 22 23 nativeBuildInputs = [ autoreconfHook ]; 24 + buildInputs = lib.optional stdenv.hostPlatform.isMusl argp-standalone; 25 26 enableParallelBuilding = true; 27