diff options
author | Jeschli <jeschli@gmail.com> | 2019-10-21 07:40:55 +0200 |
---|---|---|
committer | Jeschli <jeschli@gmail.com> | 2019-10-21 07:40:55 +0200 |
commit | b1ff2cdd351b07c4b8b6d62101057b6363712d23 (patch) | |
tree | 39ef10a7f321f57f232ed49b5f073da80190ed33 /jeschli/2configs/own-pkgs/https-everywhere | |
parent | b4d549fe8f443a5c0f60da2aa9418625faafdb67 (diff) |
j: add firefox overlay made by luis
Diffstat (limited to 'jeschli/2configs/own-pkgs/https-everywhere')
-rw-r--r-- | jeschli/2configs/own-pkgs/https-everywhere/default.nix | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/jeschli/2configs/own-pkgs/https-everywhere/default.nix b/jeschli/2configs/own-pkgs/https-everywhere/default.nix new file mode 100644 index 000000000..66fede43c --- /dev/null +++ b/jeschli/2configs/own-pkgs/https-everywhere/default.nix @@ -0,0 +1,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; + }; +} |