mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 16:03:23 +00:00
vscode-utils: fix configure and build phase
As it was, it was impossible to implement pre / post hook for those as their default implementation was not calling the run hook helper as they should have.
This commit is contained in:
parent
3a13606ef4
commit
6575fff60f
@ -6,8 +6,14 @@ let
|
||||
# Same as "Unique Identifier" on the extension's web page.
|
||||
# For the moment, only serve as unique extension dir.
|
||||
vscodeExtUniqueId,
|
||||
configurePhase ? ":",
|
||||
buildPhase ? ":",
|
||||
configurePhase ? ''
|
||||
runHook preConfigure
|
||||
runHook postConfigure
|
||||
'',
|
||||
buildPhase ?''
|
||||
runHook preBuild
|
||||
runHook postBuild
|
||||
'',
|
||||
dontPatchELF ? true,
|
||||
dontStrip ? true,
|
||||
buildInputs ? [],
|
||||
|
Loading…
Reference in New Issue
Block a user