blob: 9777aff3c26829e0547ec99585d6071ca87f8cdd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
{ 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 = pkgs.fetchurl {
url =
"https://raw.githubusercontent.com/arkenfox/user.js/1a899966a911dc2b69a808095ac7836bef5e214b/user.js";
sha256 = "sha256:Du1ia7BGeonko3BAwHuIvVsMr3vTc0jBoa6i9VqiYdU=";
};
}
|