mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
6575fff60f
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.
101 lines
2.7 KiB
Nix
101 lines
2.7 KiB
Nix
{ stdenv, lib, buildEnv, writeShellScriptBin, fetchurl, vscode, unzip, jq }:
|
|
let
|
|
buildVscodeExtension = a@{
|
|
name,
|
|
src,
|
|
# Same as "Unique Identifier" on the extension's web page.
|
|
# For the moment, only serve as unique extension dir.
|
|
vscodeExtUniqueId,
|
|
configurePhase ? ''
|
|
runHook preConfigure
|
|
runHook postConfigure
|
|
'',
|
|
buildPhase ?''
|
|
runHook preBuild
|
|
runHook postBuild
|
|
'',
|
|
dontPatchELF ? true,
|
|
dontStrip ? true,
|
|
buildInputs ? [],
|
|
...
|
|
}:
|
|
stdenv.mkDerivation ((removeAttrs a [ "vscodeExtUniqueId" ]) // {
|
|
|
|
name = "vscode-extension-${name}";
|
|
|
|
inherit vscodeExtUniqueId;
|
|
inherit configurePhase buildPhase dontPatchELF dontStrip;
|
|
|
|
installPrefix = "share/vscode/extensions/${vscodeExtUniqueId}";
|
|
|
|
buildInputs = [ unzip ] ++ buildInputs;
|
|
|
|
installPhase = ''
|
|
|
|
runHook preInstall
|
|
|
|
mkdir -p "$out/$installPrefix"
|
|
find . -mindepth 1 -maxdepth 1 | xargs -d'\n' mv -t "$out/$installPrefix/"
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
});
|
|
|
|
fetchVsixFromVscodeMarketplace = mktplcExtRef:
|
|
fetchurl((import ./mktplcExtRefToFetchArgs.nix mktplcExtRef));
|
|
|
|
buildVscodeMarketplaceExtension = a@{
|
|
name ? "",
|
|
src ? null,
|
|
vsix ? null,
|
|
mktplcRef,
|
|
...
|
|
}: assert "" == name; assert null == src;
|
|
buildVscodeExtension ((removeAttrs a [ "mktplcRef" "vsix" ]) // {
|
|
name = "${mktplcRef.publisher}-${mktplcRef.name}-${mktplcRef.version}";
|
|
src = if (vsix != null)
|
|
then vsix
|
|
else fetchVsixFromVscodeMarketplace mktplcRef;
|
|
vscodeExtUniqueId = "${mktplcRef.publisher}.${mktplcRef.name}";
|
|
});
|
|
|
|
mktplcRefAttrList = [
|
|
"name"
|
|
"publisher"
|
|
"version"
|
|
"sha256"
|
|
];
|
|
|
|
mktplcExtRefToExtDrv = ext:
|
|
buildVscodeMarketplaceExtension ((removeAttrs ext mktplcRefAttrList) // {
|
|
mktplcRef = ext;
|
|
});
|
|
|
|
extensionFromVscodeMarketplace = mktplcExtRefToExtDrv;
|
|
extensionsFromVscodeMarketplace = mktplcExtRefList:
|
|
builtins.map extensionFromVscodeMarketplace mktplcExtRefList;
|
|
|
|
vscodeWithConfiguration = import ./vscodeWithConfiguration.nix {
|
|
inherit lib extensionsFromVscodeMarketplace writeShellScriptBin;
|
|
vscodeDefault = vscode;
|
|
};
|
|
|
|
|
|
vscodeExts2nix = import ./vscodeExts2nix.nix {
|
|
inherit lib writeShellScriptBin;
|
|
vscodeDefault = vscode;
|
|
};
|
|
|
|
vscodeEnv = import ./vscodeEnv.nix {
|
|
inherit lib buildEnv writeShellScriptBin extensionsFromVscodeMarketplace jq;
|
|
vscodeDefault = vscode;
|
|
};
|
|
in
|
|
{
|
|
inherit fetchVsixFromVscodeMarketplace buildVscodeExtension
|
|
buildVscodeMarketplaceExtension extensionFromVscodeMarketplace
|
|
extensionsFromVscodeMarketplace
|
|
vscodeWithConfiguration vscodeExts2nix vscodeEnv;
|
|
}
|