feat(browsers): move firefox addons into own file
This commit is contained in:
parent
0bf8a6b336
commit
9e0a89e55d
3 changed files with 23 additions and 32 deletions
19
home/browsers/firefoxAddons.nix
Normal file
19
home/browsers/firefoxAddons.nix
Normal file
|
@ -0,0 +1,19 @@
|
|||
{ pkgs, lib, ... }:
|
||||
|
||||
let inherit (pkgs.nur.repos.rycee) firefox-addons;
|
||||
in {
|
||||
zotero-connector = firefox-addons.buildFirefoxXpiAddon rec {
|
||||
pname = "zotero-connector";
|
||||
version = "5.0.107";
|
||||
addonId = "zotero@chnm.gmu.edu";
|
||||
url =
|
||||
"https://download.zotero.org/connector/firefox/release/Zotero_Connector-${version}.xpi";
|
||||
sha256 = "sha256-RuAhWGvUhkog8SxzKhRwQQwzTQLzBKlHjSsFj9e25e4=";
|
||||
meta = with lib; {
|
||||
homepage = "https://www.zotero.org";
|
||||
description = "Save references to Zotero from your web browser";
|
||||
license = licenses.agpl3;
|
||||
platforms = platforms.all;
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue