blob: 95bed597a300e73abbcdf1cd8ed226a6652d8fa8 (
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 = "105.0";
in pkgs.fetchurl {
url =
"https://raw.githubusercontent.com/arkenfox/user.js/${version}/user.js";
sha256 = "sha256:4v5VcCj5h+pLZ7wt38AoWUQgg62qPGohWwmY6yNZZ/0=";
};
}
|