mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-18 13:19:10 +03:00
musl-fts: add setup-hook to add -lfts
This commit is contained in:
parent
59a53aada0
commit
ebf04d83c0
17
pkgs/os-specific/linux/musl/fts-setup-hook.sh
Normal file
17
pkgs/os-specific/linux/musl/fts-setup-hook.sh
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
ftsLdflags() {
|
||||||
|
# The `depHostOffset` describes how the host platform of the dependencies
|
||||||
|
# are slid relative to the depending package. It is brought into scope of
|
||||||
|
# the environment hook defined as the role of the dependency being applied.
|
||||||
|
case $depHostOffset in
|
||||||
|
-1) local role='BUILD_' ;;
|
||||||
|
0) local role='' ;;
|
||||||
|
1) local role='TARGET_' ;;
|
||||||
|
*) echo "cc-wrapper: Error: Cannot be used with $depHostOffset-offset deps" >2;
|
||||||
|
return 1 ;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
export NIX_${role}LDFLAGS+=" -lfts"
|
||||||
|
}
|
||||||
|
|
||||||
|
addEnvHooks "$hostOffset" ftsLdflags
|
||||||
|
|
@ -11,4 +11,6 @@ stdenv.mkDerivation rec {
|
|||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
||||||
|
|
||||||
|
setupHook = ./fts-setup-hook.sh;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user