mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 00:12:56 +00:00
deno: fix sharedLibrary value usage
stdenv.hostPlatform.extensions.sharedLibrary value always contains a dot, which means find command was trying to match libswc_common..(so|dylib)
This commit is contained in:
parent
387783a333
commit
f8fa489193
@ -44,7 +44,7 @@ rustPlatform.buildRustPackage rec {
|
||||
doCheck = false;
|
||||
|
||||
preInstall = ''
|
||||
find ./target -name libswc_common.${stdenv.hostPlatform.extensions.sharedLibrary} -delete
|
||||
find ./target -name libswc_common${stdenv.hostPlatform.extensions.sharedLibrary} -delete
|
||||
'';
|
||||
|
||||
postInstall = ''
|
||||
|
Loading…
Reference in New Issue
Block a user