fetchDartDeps: Use given setup and Pub get script in dependency list derivation

This commit is contained in:
hacker1024
2023-12-21 11:44:15 +01:00
committed by Maciej Krüger
parent 98e4fb2d07
commit d331e2d68c
@@ -160,7 +160,14 @@ let
configurePhase = ''
runHook preConfigure
doPubGet dart pub get --offline
${sdkSetupScript}
_pub_get() {
${pubGetScript} --offline
}
doPubGet _pub_get
runHook postConfigure
'';