summaryrefslogtreecommitdiffstats
path: root/jeschli/2configs/own-pkgs/https-everywhere/default.nix
blob: 66fede43c2765bb9bef7cc19965ffb3bed9f7ceb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{ stdenv, fetchurl  }:

stdenv.mkDerivation rec {
    pname = "https-everywhere-${version}";
    version = "2019.6.27";

    extid = "https-everywhere@eff.org";
    signed = true;

    src = fetchurl {
      url = "https://addons.mozilla.org/firefox/downloads/file/3060290/https_everywhere-${version}-an+fx.xpi";
      sha256 = "0743lhn9phn7n6c0886h9ddn1n8vhzbl0vrw177zs43995aj3frp";
    };

    phases = [ "installPhase" ];

    installPhase = ''
      install -D ${src} "$out/${extid}.xpi"

      '';

  meta = {
    description = "Https everywhere browser addon";
    homepage = https://www.eff.org/https-everywhere;
    license = stdenv.lib.licenses.gpl2Plus;
    maintainers = [];
    platforms = stdenv.lib.platforms.all;
  };
}