diff options
author | lassulus <lassulus@lassul.us> | 2020-04-24 15:31:55 +0200 |
---|---|---|
committer | lassulus <lassulus@lassul.us> | 2020-04-24 15:31:55 +0200 |
commit | 36223e201b5726fa0100d327903ee5e733db658f (patch) | |
tree | 67389161b8898c5b1737573e9c489d1e7fcf65fa /jeschli/5pkgs/firefox/user-agent-switcher/default.nix | |
parent | 2fec0118dcfc56f1af974e5e7f3e29fdbc30a85a (diff) | |
parent | bce038373a3477cd23758a038104b560404748dc (diff) |
Merge remote-tracking branch 'enklave/master'
Diffstat (limited to 'jeschli/5pkgs/firefox/user-agent-switcher/default.nix')
-rw-r--r-- | jeschli/5pkgs/firefox/user-agent-switcher/default.nix | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/jeschli/5pkgs/firefox/user-agent-switcher/default.nix b/jeschli/5pkgs/firefox/user-agent-switcher/default.nix new file mode 100644 index 000000000..c96f11129 --- /dev/null +++ b/jeschli/5pkgs/firefox/user-agent-switcher/default.nix @@ -0,0 +1,40 @@ +{ stdenv, fetchurl, unzip, jq, zip }: + +stdenv.mkDerivation rec { + pname = "user-agent-switcher-${version}"; + version = "0.3.2"; + + extid = "@user-agent-switcher"; + signed = false; + + src = fetchurl { + url = "https://addons.mozilla.org/firefox/downloads/file/3370255/user_agent_switcher_and_manager-${version}-an+fx.xpi"; + sha256 = "0lrw1xf6fsxr47bifkayfxpysv8s2p9ghmbmw2s7ymhrgy42i6v5"; + }; + + phases = [ "buildPhase" ]; + + buildInputs = [ zip unzip jq ]; + + buildPhase = '' + mkdir -p $out/${extid} + unzip ${src} -d $out/${extid} + NEW_MANIFEST=$(jq '. + {"applications": { "gecko": { "id": "${extid}" }}}' $out/${extid}/manifest.json) + echo "$NEW_MANIFEST" > $out/${extid}/manifest.json + cd $out/${extid} + zip -r -FS $out/${extid}.xpi * + rm -r $out/${extid} + ''; + + meta = with stdenv.lib; { + description = "User agent switcher"; + homepage = https://add0n.com/useragent-switcher.html; + license = { + fullName = "Mozilla Public License Version 2.0"; + shortName = "moz2"; + spdxId = "mozilla-2.0"; + url = "https://www.mozilla.org/en-US/MPL/2.0/"; }; + maintainers = []; + platforms = stdenv.lib.platforms.all; + }; +} |