mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 23:36:17 +01:00
Merge pull request #182143 from hamishmack/patch-7
libredirect: Fix cross compilation `buildPackages`
This commit is contained in:
commit
cf2e2a65ae
1 changed files with 1 additions and 1 deletions
|
@ -27,7 +27,7 @@ else stdenv.mkDerivation rec {
|
|||
|
||||
outputs = ["out" "hook"];
|
||||
|
||||
libName = "libredirect" + stdenv.targetPlatform.extensions.sharedLibrary;
|
||||
libName = "libredirect" + stdenv.hostPlatform.extensions.sharedLibrary;
|
||||
|
||||
buildPhase = ''
|
||||
runHook preBuild
|
||||
|
|
Loading…
Reference in a new issue