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

This commit is contained in:
Yureka 2023-02-19 21:30:36 +01:00 committed by GitHub
parent c683aaaa1d
commit e029dad941
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,4 +1,4 @@
{ lib, stdenv, fetchFromGitLab, autoreconfHook, fetchpatch }:
{ lib, stdenv, fetchFromGitLab, autoreconfHook, fetchpatch, argp-standalone }:
stdenv.mkDerivation rec {
pname = "iucode-tool";
@ -21,6 +21,7 @@ stdenv.mkDerivation rec {
];
nativeBuildInputs = [ autoreconfHook ];
buildInputs = lib.optional stdenv.hostPlatform.isMusl argp-standalone;
enableParallelBuilding = true;