about summary refs log tree commit diff
path: root/pkgs/build-support/fetchfirefoxaddon/tests.nix
blob: a29f65c542adb7dc6758033bf6b5fa923acb3549 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ 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;
    };
}