Luke Granger-Brown
57725ef3ec
git-subtree-dir: third_party/nixpkgs git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
21 lines
773 B
Nix
21 lines
773 B
Nix
{ testers, fetchFirefoxAddon, fetchurl, ... }:
|
|
|
|
{
|
|
simple = testers.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=";
|
|
};
|
|
overridden-source =
|
|
let
|
|
image-search-options = fetchurl {
|
|
url = "https://addons.mozilla.org/firefox/downloads/file/3059971/image_search_options-3.0.12-fx.xpi";
|
|
sha256 = "sha256-H73YWX/DKxvhEwKpWOo7orAQ7c/rQywpljeyxYxv0Gg=";
|
|
};
|
|
in
|
|
testers.invalidateFetcherByDrvHash fetchFirefoxAddon {
|
|
name = "image-search-options";
|
|
src = image-search-options;
|
|
};
|
|
}
|