Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
20 lines
588 B
Nix
20 lines
588 B
Nix
{
|
|
lib,
|
|
vscode-utils,
|
|
}:
|
|
vscode-utils.buildVscodeMarketplaceExtension {
|
|
mktplcRef = {
|
|
name = "reload";
|
|
publisher = "natqe";
|
|
version = "0.0.7";
|
|
hash = "sha256-j0Dj7YiawhPAMHe8wk8Ph4vo26IneidoGJ4C9O7Z/64=";
|
|
};
|
|
meta = {
|
|
description = "This extension will add reload button to status bar in the right-bottom of your VSCode editor";
|
|
downloadPage = "https://marketplace.visualstudio.com/items?itemName=natqe.reload";
|
|
homepage = "https://github.com/natqe/reload";
|
|
license = lib.licenses.unfree;
|
|
maintainers = [ lib.maintainers.therobot2105 ];
|
|
};
|
|
}
|