addon packaging

This commit is contained in:
Robin Appelman 2025-10-12 14:38:36 +02:00
commit b4036ee150
3 changed files with 5 additions and 2 deletions

3
.gitignore vendored
View file

@ -1,3 +1,4 @@
target target
result result
config.toml config.toml
web-ext-artifacts

View file

@ -7,7 +7,7 @@
"browser_specific_settings": { "browser_specific_settings": {
"gecko": { "gecko": {
"id": "originfox@icewind.nl", "id": "originfox@icewind.nl",
"strict_min_version": "50.0" "strict_min_version": "58.0"
} }
}, },

View file

@ -19,5 +19,7 @@
packages = { packages = {
originfox = pkgs: pkgs.originfox; originfox = pkgs: pkgs.originfox;
}; };
tools = pkgs: with pkgs; [cargo-edit bacon web-ext];
}; };
} }