summaryrefslogtreecommitdiff
path: root/home/pkgs/firefoxPackages/default.nix
blob: afdf7e7288f9f0d59c2ba9ce614d350a157c606b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ pkgs }:

let pkgs-rycee = pkgs.nur.repos.rycee;
in {
  addons = import ./addons.nix {
    inherit (pkgs) fetchurl stdenv lib;
    inherit (pkgs-rycee.firefox-addons) buildFirefoxXpiAddon;
  };
  arkenfox-userjs = let version = "106.0";
  in pkgs.fetchurl {
    url =
      "https://raw.githubusercontent.com/arkenfox/user.js/${version}/user.js";
    sha256 = "sha256:KTNODuDsjgqbUtIWS9hCIDGG8WhsIRCc/CLI3BjxhMc=";
  };
}