mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 23:36:17 +01:00
10 lines
369 B
Nix
10 lines
369 B
Nix
{ invalidateFetcherByDrvHash, fetchFirefoxAddon, ... }:
|
|
|
|
{
|
|
simple = invalidateFetcherByDrvHash fetchFirefoxAddon {
|
|
name = "image-search-options";
|
|
# Chosen because its only 147KB
|
|
url = "https://addons.mozilla.org/firefox/downloads/file/3059971/image_search_options-3.0.12-fx.xpi";
|
|
sha256 = "sha256-H73YWX/DKxvhEwKpWOo7orAQ7c/rQywpljeyxYxv0Gg=";
|
|
};
|
|
}
|