mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 22:36:23 +01:00
iucode-tool: add argp-standalone buildInput on musl (#217202)
This commit is contained in:
parent
c683aaaa1d
commit
e029dad941
1 changed files with 2 additions and 1 deletions
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in a new issue