Skip to content

Commit

Permalink
vscode-extensions.visualjj.visualjj: add sources for the different ar…
Browse files Browse the repository at this point in the history
…chitectures (NixOS#370698)
  • Loading branch information
drupol authored Jan 3, 2025
2 parents 5367951 + 962d4a8 commit 2f73cad
Showing 1 changed file with 28 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -1,15 +1,37 @@
{
stdenvNoCC,
lib,
vscode-utils,
}:

vscode-utils.buildVscodeMarketplaceExtension {
mktplcRef = {
name = "visualjj";
publisher = "visualjj";
version = "0.13.4";
hash = "sha256-/uuLRkEY430R5RS7B6972iginpA3pWpApjI6RUTxcHM=";
};
mktplcRef =
let
sources = {
"x86_64-linux" = {
arch = "linux-x64";
hash = "sha256-q9ubYkhrV28sB9CV1dyBEIFEkTrkGHRXdz5+4xjeVzI=";
};
"x86_64-darwin" = {
arch = "darwin-x64";
hash = "sha256-vV5u1QBICz3GIYRgH9UWM38a8YXtvW0u8r7c1SaKwxM=";
};
"aarch64-linux" = {
arch = "linux-arm64";
hash = "sha256-fgT4brIhHI6gNCcsbHpz+v4/diyox2VoFlvCnhPIbPM=";
};
"aarch64-darwin" = {
arch = "darwin-arm64";
hash = "sha256-/uuLRkEY430R5RS7B6972iginpA3pWpApjI6RUTxcHM=";
};
};
in
{
name = "visualjj";
publisher = "visualjj";
version = "0.13.4";
}
// sources.${stdenvNoCC.system} or (throw "Unsupported system ${stdenvNoCC.system}");

meta = {
description = "Jujutsu version control integration, for simpler Git workflow";
Expand Down

0 comments on commit 2f73cad

Please sign in to comment.