Merge remote-tracking branch 'upstream/master' into staging

+3218 -1768
+1 -1
lib/platforms.nix
··· 20 20 openbsd = ["i686-openbsd" "x86_64-openbsd"]; 21 21 unix = linux ++ darwin ++ freebsd ++ openbsd ++ netbsd ++ illumos; 22 22 23 - mesaPlatforms = ["i686-linux" "x86_64-linux" "x86_64-darwin" "armv5tel-linux" "armv6l-linux" "armv7l-linux"]; 23 + mesaPlatforms = ["i686-linux" "x86_64-linux" "x86_64-darwin" "armv5tel-linux" "armv6l-linux" "armv7l-linux" "aarch64-linux"]; 24 24 }
+89
maintainers/scripts/hydra-eval-failures.py
··· 1 + #!/usr/bin/env nix-shell 2 + #!nix-shell -i python -p pythonFull pythonPackages.requests pythonPackages.pyquery pythonPackages.click 3 + 4 + # To use, just execute this script with --help to display help. 5 + 6 + import subprocess 7 + import json 8 + 9 + import click 10 + import requests 11 + from pyquery import PyQuery as pq 12 + 13 + 14 + maintainers_json = subprocess.check_output([ 15 + 'nix-instantiate', 16 + 'lib/maintainers.nix', 17 + '--eval', 18 + '--json']) 19 + maintainers = json.loads(maintainers_json) 20 + MAINTAINERS = {v: k for k, v in maintainers.iteritems()} 21 + 22 + 23 + def get_response_text(url): 24 + return pq(requests.get(url).text) # IO 25 + 26 + EVAL_FILE = { 27 + 'nixos': 'nixos/release.nix', 28 + 'nixpkgs': 'pkgs/top-level/release.nix', 29 + } 30 + 31 + 32 + def get_maintainers(attr_name): 33 + nixname = attr_name.split('.') 34 + meta_json = subprocess.check_output([ 35 + 'nix-instantiate', 36 + '--eval', 37 + '--strict', 38 + '-A', 39 + '.'.join(nixname[1:]) + '.meta', 40 + EVAL_FILE[nixname[0]], 41 + '--json']) 42 + meta = json.loads(meta_json) 43 + if meta.get('maintainers'): 44 + return [MAINTAINERS[name] for name in meta['maintainers'] if MAINTAINERS.get(name)] 45 + 46 + 47 + @click.command() 48 + @click.option( 49 + '--jobset', 50 + default="nixos/release-16.09", 51 + help='Hydra project like nixos/release-16.09') 52 + def cli(jobset): 53 + """ 54 + Given a Hydra project, inspect latest evaluation 55 + and print a summary of failed builds 56 + """ 57 + 58 + url = "http://hydra.nixos.org/jobset/{}".format(jobset) 59 + 60 + # get the last evaluation 61 + click.echo(click.style( 62 + 'Getting latest evaluation for {}'.format(url), fg='green')) 63 + d = get_response_text(url) 64 + evaluations = d('#tabs-evaluations').find('a[class="row-link"]') 65 + latest_eval_url = evaluations[0].get('href') 66 + 67 + # parse last evaluation page 68 + click.echo(click.style( 69 + 'Parsing evaluation {}'.format(latest_eval_url), fg='green')) 70 + d = get_response_text(latest_eval_url + '?full=1') 71 + 72 + # TODO: aborted evaluations 73 + # TODO: dependency failed without propagated builds 74 + for tr in d('img[alt="Failed"]').parents('tr'): 75 + a = pq(tr)('a')[1] 76 + print "- [ ] [{}]({})".format(a.text, a.get('href')) 77 + 78 + maintainers = get_maintainers(a.text) 79 + if maintainers: 80 + print " - maintainers: {}".format(", ".join(map(lambda u: '@' + u, maintainers))) 81 + # TODO: print last three persons that touched this file 82 + # TODO: pinpoint the diff that broke this build, or maybe it's transient or maybe it never worked? 83 + 84 + 85 + if __name__ == "__main__": 86 + try: 87 + cli() 88 + except: 89 + import pdb;pdb.post_mortem()
+8 -1
nixos/doc/manual/release-notes/rl-1703.xml
··· 46 46 for what those parameters represent. 47 47 </para> 48 48 </listitem> 49 - 49 + <listitem> 50 + <para> 51 + <literal>ansible</literal> now defaults to ansible version 2 as version 1 52 + has been removed due to a serious <link 53 + xlink:href="https://www.computest.nl/advisories/CT-2017-0109_Ansible.txt"> 54 + vulnerability</link> unpatched by upstream. 55 + </para> 56 + </listitem> 50 57 <listitem> 51 58 <para> 52 59 <literal>gnome</literal> alias has been removed along with
+2
nixos/modules/module-list.nix
··· 328 328 ./services/monitoring/scollector.nix 329 329 ./services/monitoring/smartd.nix 330 330 ./services/monitoring/statsd.nix 331 + ./services/monitoring/sysstat.nix 331 332 ./services/monitoring/systemhealth.nix 332 333 ./services/monitoring/teamviewer.nix 333 334 ./services/monitoring/telegraf.nix ··· 521 522 ./services/web-apps/atlassian/confluence.nix 522 523 ./services/web-apps/atlassian/crowd.nix 523 524 ./services/web-apps/atlassian/jira.nix 525 + ./services/web-apps/frab.nix 524 526 ./services/web-apps/mattermost.nix 525 527 ./services/web-apps/nixbot.nix 526 528 ./services/web-apps/pump.io.nix
+7 -1
nixos/modules/services/logging/fluentd.nix
··· 21 21 default = ""; 22 22 description = "Fluentd config."; 23 23 }; 24 + 25 + package = mkOption { 26 + type = types.path; 27 + default = pkgs.fluentd; 28 + description = "The fluentd package to use."; 29 + }; 24 30 }; 25 31 }; 26 32 ··· 32 38 description = "Fluentd Daemon"; 33 39 wantedBy = [ "multi-user.target" ]; 34 40 serviceConfig = { 35 - ExecStart = "${pkgs.fluentd}/bin/fluentd -c ${pkgs.writeText "fluentd.conf" cfg.config}"; 41 + ExecStart = "${cfg.package}/bin/fluentd -c ${pkgs.writeText "fluentd.conf" cfg.config}"; 36 42 ExecReload = "${pkgs.coreutils}/bin/kill -HUP $MAINPID"; 37 43 }; 38 44 };
+1 -1
nixos/modules/services/monitoring/arbtt.nix
··· 49 49 config = mkIf cfg.enable { 50 50 systemd.user.services.arbtt = { 51 51 description = "arbtt statistics capture service"; 52 - wantedBy = [ "multi-user.target" ]; 52 + wantedBy = [ "default.target" ]; 53 53 54 54 serviceConfig = { 55 55 Type = "simple";
+8 -12
nixos/modules/services/system/dbus.nix
··· 31 31 32 32 cp ${pkgs.dbus.out}/share/dbus-1/{system,session}.conf $out 33 33 34 - # avoid circular includes 35 - sed -ri 's@(<include ignore_missing="yes">/etc/dbus-1/(system|session)\.conf</include>)@<!-- \1 -->@g' $out/{system,session}.conf 36 - 37 34 # include by full path 38 35 sed -ri "s@/etc/dbus-1/(system|session)-@$out/\1-@" $out/{system,session}.conf 39 36 ··· 98 95 99 96 environment.systemPackages = [ pkgs.dbus.daemon pkgs.dbus ]; 100 97 101 - environment.etc = singleton 102 - { source = configDir; 103 - target = "dbus-1"; 104 - }; 105 - 106 98 users.extraUsers.messagebus = { 107 99 uid = config.ids.uids.messagebus; 108 100 description = "D-Bus system message bus daemon user"; ··· 134 126 reloadIfChanged = true; 135 127 restartTriggers = [ configDir ]; 136 128 serviceConfig.ExecStart = [ 137 - "" 138 - "${lib.getBin pkgs.dbus}/bin/dbus-daemon --config-file=${configDir}/system.conf ${daemonArgs}" 129 + "" # Default dbus.service has two entries, we need to override both. 130 + "${lib.getBin pkgs.dbus}/bin/dbus-daemon --config-file=/run/current-system/dbus/system.conf ${daemonArgs}" 139 131 ]; 140 132 }; 141 133 ··· 145 137 reloadIfChanged = true; 146 138 restartTriggers = [ configDir ]; 147 139 serviceConfig.ExecStart = [ 148 - "" 149 - "${lib.getBin pkgs.dbus}/bin/dbus-daemon --config-file=${configDir}/session.conf ${daemonArgs}" 140 + "" # Default dbus.service has two entries, we need to override both. 141 + "${lib.getBin pkgs.dbus}/bin/dbus-daemon --config-file=/run/current-system/dbus/session.conf ${daemonArgs}" 150 142 ]; 151 143 }; 152 144 sockets.dbus.wantedBy = mkIf cfg.socketActivated [ "sockets.target" ]; 153 145 }; 154 146 155 147 environment.pathsToLink = [ "/etc/dbus-1" "/share/dbus-1" ]; 148 + 149 + system.extraSystemBuilderCmds = '' 150 + ln -s ${configDir} $out/dbus 151 + ''; 156 152 }; 157 153 }
+224
nixos/modules/services/web-apps/frab.nix
··· 1 + { config, lib, pkgs, ... }: 2 + 3 + with lib; 4 + 5 + let 6 + cfg = config.services.frab; 7 + 8 + package = pkgs.frab; 9 + ruby = package.ruby; 10 + 11 + databaseConfig = builtins.toJSON { production = cfg.database; }; 12 + 13 + frabEnv = { 14 + RAILS_ENV = "production"; 15 + RACK_ENV = "production"; 16 + SECRET_KEY_BASE = cfg.secretKeyBase; 17 + FRAB_HOST = cfg.host; 18 + FRAB_PROTOCOL = cfg.protocol; 19 + FROM_EMAIL = cfg.fromEmail; 20 + RAILS_SERVE_STATIC_FILES = "1"; 21 + } // cfg.extraEnvironment; 22 + 23 + frab-rake = pkgs.stdenv.mkDerivation rec { 24 + name = "frab-rake"; 25 + buildInputs = [ package.env pkgs.makeWrapper ]; 26 + phases = "installPhase fixupPhase"; 27 + installPhase = '' 28 + mkdir -p $out/bin 29 + makeWrapper ${package.env}/bin/bundle $out/bin/frab-bundle \ 30 + ${concatStrings (mapAttrsToList (name: value: "--set ${name} '${value}' ") frabEnv)} \ 31 + --set PATH '${lib.makeBinPath (with pkgs; [ nodejs file imagemagick ])}:$PATH' \ 32 + --set RAKEOPT '-f ${package}/share/frab/Rakefile' \ 33 + --run 'cd ${package}/share/frab' 34 + makeWrapper $out/bin/frab-bundle $out/bin/frab-rake \ 35 + --add-flags "exec rake" 36 + ''; 37 + }; 38 + 39 + in 40 + 41 + { 42 + options = { 43 + services.frab = { 44 + enable = mkOption { 45 + type = types.bool; 46 + default = false; 47 + description = '' 48 + Enable the frab service. 49 + ''; 50 + }; 51 + 52 + host = mkOption { 53 + type = types.str; 54 + example = "frab.example.com"; 55 + description = '' 56 + Hostname under which this frab instance can be reached. 57 + ''; 58 + }; 59 + 60 + protocol = mkOption { 61 + type = types.str; 62 + default = "https"; 63 + example = "http"; 64 + description = '' 65 + Either http or https, depending on how your Frab instance 66 + will be exposed to the public. 67 + ''; 68 + }; 69 + 70 + fromEmail = mkOption { 71 + type = types.str; 72 + default = "frab@localhost"; 73 + description = '' 74 + Email address used by frab. 75 + ''; 76 + }; 77 + 78 + listenAddress = mkOption { 79 + type = types.str; 80 + default = "localhost"; 81 + description = '' 82 + Address or hostname frab should listen on. 83 + ''; 84 + }; 85 + 86 + listenPort = mkOption { 87 + type = types.int; 88 + default = 3000; 89 + description = '' 90 + Port frab should listen on. 91 + ''; 92 + }; 93 + 94 + statePath = mkOption { 95 + type = types.str; 96 + default = "/var/lib/frab"; 97 + description = '' 98 + Directory where frab keeps its state. 99 + ''; 100 + }; 101 + 102 + user = mkOption { 103 + type = types.str; 104 + default = "frab"; 105 + description = '' 106 + User to run frab. 107 + ''; 108 + }; 109 + 110 + group = mkOption { 111 + type = types.str; 112 + default = "frab"; 113 + description = '' 114 + Group to run frab. 115 + ''; 116 + }; 117 + 118 + secretKeyBase = mkOption { 119 + type = types.str; 120 + description = '' 121 + Your secret key is used for verifying the integrity of signed cookies. 122 + If you change this key, all old signed cookies will become invalid! 123 + 124 + Make sure the secret is at least 30 characters and all random, 125 + no regular words or you'll be exposed to dictionary attacks. 126 + ''; 127 + }; 128 + 129 + database = mkOption { 130 + type = types.attrs; 131 + default = { 132 + adapter = "sqlite3"; 133 + database = "/var/lib/frab/db.sqlite3"; 134 + pool = 5; 135 + timeout = 5000; 136 + }; 137 + example = { 138 + adapter = "postgresql"; 139 + database = "frab"; 140 + host = "localhost"; 141 + username = "frabuser"; 142 + password = "supersecret"; 143 + encoding = "utf8"; 144 + pool = 5; 145 + }; 146 + description = '' 147 + Rails database configuration for Frab as Nix attribute set. 148 + ''; 149 + }; 150 + 151 + extraEnvironment = mkOption { 152 + type = types.attrs; 153 + default = {}; 154 + example = { 155 + FRAB_CURRENCY_UNIT = "€"; 156 + FRAB_CURRENCY_FORMAT = "%n%u"; 157 + EXCEPTION_EMAIL = "frab-owner@example.com"; 158 + SMTP_ADDRESS = "localhost"; 159 + SMTP_PORT = "587"; 160 + SMTP_DOMAIN = "localdomain"; 161 + SMTP_USER_NAME = "root"; 162 + SMTP_PASSWORD = "toor"; 163 + SMTP_AUTHENTICATION = "1"; 164 + SMTP_NOTLS = "1"; 165 + }; 166 + description = '' 167 + Additional environment variables to set for frab for further 168 + configuration. See the frab documentation for more information. 169 + ''; 170 + }; 171 + }; 172 + }; 173 + 174 + config = mkIf cfg.enable { 175 + environment.systemPackages = [ frab-rake ]; 176 + 177 + users.extraUsers = [ 178 + { name = cfg.user; 179 + group = cfg.group; 180 + home = "${cfg.statePath}"; 181 + } 182 + ]; 183 + 184 + users.extraGroups = [ { name = cfg.group; } ]; 185 + 186 + systemd.services.frab = { 187 + after = [ "network.target" "gitlab.service" ]; 188 + wantedBy = [ "multi-user.target" ]; 189 + environment = frabEnv; 190 + 191 + preStart = '' 192 + mkdir -p ${cfg.statePath}/system/attachments 193 + chown ${cfg.user}:${cfg.group} -R ${cfg.statePath} 194 + 195 + mkdir /run/frab -p 196 + ln -sf ${pkgs.writeText "frab-database.yml" databaseConfig} /run/frab/database.yml 197 + ln -sf ${cfg.statePath}/system /run/frab/system 198 + 199 + if ! test -e "${cfg.statePath}/db-setup-done"; then 200 + ${frab-rake}/bin/frab-rake db:setup 201 + touch ${cfg.statePath}/db-setup-done 202 + else 203 + ${frab-rake}/bin/frab-rake db:migrate 204 + fi 205 + ''; 206 + 207 + serviceConfig = { 208 + PermissionsStartOnly = true; 209 + PrivateTmp = true; 210 + PrivateDevices = true; 211 + Type = "simple"; 212 + User = cfg.user; 213 + Group = cfg.group; 214 + TimeoutSec = "300s"; 215 + Restart = "on-failure"; 216 + RestartSec = "10s"; 217 + WorkingDirectory = "${package}/share/frab"; 218 + ExecStart = "${frab-rake}/bin/frab-bundle exec rails server " + 219 + "--binding=${cfg.listenAddress} --port=${toString cfg.listenPort}"; 220 + }; 221 + }; 222 + 223 + }; 224 + }
+3 -5
nixos/release-small.nix
··· 53 53 54 54 nixpkgs = { 55 55 inherit (nixpkgs') 56 - apacheHttpd_2_2 57 - apacheHttpd_2_4 56 + apacheHttpd 58 57 cmake 59 58 cryptsetup 60 59 emacs ··· 63 62 imagemagick 64 63 jdk 65 64 linux 66 - mysql55 65 + mysql 67 66 nginx 68 67 nodejs 69 68 openssh 70 69 php 71 - postgresql92 72 - postgresql93 70 + postgresql 73 71 python 74 72 rsyslog 75 73 stdenv
+11 -7
pkgs/applications/audio/freewheeling/default.nix
··· 1 - { stdenv, fetchsvn, pkgconfig, autoreconfHook, gnutls33, freetype 1 + { stdenv, fetchFromGitHub, pkgconfig, autoreconfHook, gnutls, freetype 2 2 , SDL, SDL_gfx, SDL_ttf, liblo, libxml2, alsaLib, libjack2, libvorbis 3 3 , libSM, libsndfile, libogg 4 4 }: 5 5 6 6 stdenv.mkDerivation rec { 7 7 name = "freewheeling-${version}"; 8 - version = "100"; 8 + version = "2016-11-15"; 9 9 10 - src = fetchsvn { 11 - url = svn://svn.code.sf.net/p/freewheeling/code; 12 - rev = version; 13 - sha256 = "1m6z7p93xyha25qma9bazpzbp04pqdv5h3yrv6851775xsyvzksv"; 10 + src = fetchFromGitHub { 11 + owner = "free-wheeling"; 12 + repo = "freewheeling"; 13 + rev = "05ef3bf150fa6ba1b1d437b1fd70ef363289742f"; 14 + sha256 = "19plf7r0sq4271ln5bya95mp4i1j30x8hsxxga2kla27z953n9ih"; 14 15 }; 15 16 16 17 nativeBuildInputs = [ pkgconfig autoreconfHook ]; 17 18 buildInputs = [ 18 - gnutls33 freetype SDL SDL_gfx SDL_ttf 19 + freetype SDL SDL_gfx SDL_ttf 19 20 liblo libxml2 libjack2 alsaLib libvorbis libsndfile libogg libSM 21 + (gnutls.overrideAttrs (oldAttrs: { 22 + configureFlags = oldAttrs.configureFlags ++ [ "--enable-openssl-compatibility" ]; 23 + })) 20 24 ]; 21 25 22 26 patches = [ ./am_path_sdl.patch ./xml.patch ];
+6 -8
pkgs/applications/graphics/rawtherapee/default.nix
··· 3 3 }: 4 4 5 5 stdenv.mkDerivation rec { 6 - version = "4.2.1025"; 6 + version = "5.0"; 7 7 name = "rawtherapee-" + version; 8 8 9 9 src = fetchFromGitHub { 10 10 owner = "Beep6581"; 11 11 repo = "RawTherapee"; 12 - rev = "dc4bbe906ba92ddc66f98a3c26ce19822bfb99ab"; 13 - sha256 = "0c5za9s8533fiyl32378dq9rgd5044xi8y0wm2gkr7krbdnx74l3"; 12 + rev = "9fbbb052eefb739753f0f3d631e45694d659610a"; 13 + sha256 = "0r8wzxp7q77g3hjz7dr5lh5wih762pgjad3lkzjfhki9lxr7ii7q"; 14 14 }; 15 15 16 - buildInputs = [ pkgconfig cmake pixman libpthreadstubs gtkmm2 libXau libXdmcp 17 - lcms2 libiptcdata libcanberra_gtk2 fftw expat pcre libsigcxx ]; 18 - 19 - patches = [ 20 - ./fix-glibmm-output.patch 16 + buildInputs = [ 17 + pkgconfig cmake pixman libpthreadstubs gtkmm2 libXau libXdmcp 18 + lcms2 libiptcdata libcanberra_gtk2 fftw expat pcre libsigcxx 21 19 ]; 22 20 23 21 cmakeFlags = [
+5 -3
pkgs/applications/graphics/scantailor/default.nix
··· 1 1 {stdenv, fetchurl, qt4, cmake, libjpeg, libtiff, boost }: 2 2 3 3 stdenv.mkDerivation rec { 4 - name = "scantailor-0.9.11.1"; 4 + name = "scantailor-0.9.12.1"; 5 5 6 6 src = fetchurl { 7 - url = "https://github.com/scantailor/scantailor/archive/RELEASE_0_9_11_1.tar.gz"; 8 - sha256 = "1z06yg228r317m8ab3mywg0wbpj0x2llqj187bh4g3k4xc2fcm8m"; 7 + url = "https://github.com/scantailor/scantailor/archive/RELEASE_0_9_12_1.tar.gz"; 8 + sha256 = "1pjx3a6hs16az6rki59bchy3biy7jndjx8r125q01aq7lbf5npgg"; 9 9 }; 10 10 11 11 buildInputs = [ qt4 cmake libjpeg libtiff boost ]; 12 + 13 + enableParallelBuilding = true; 12 14 13 15 meta = { 14 16 homepage = http://scantailor.org/;
+2 -2
pkgs/applications/misc/rtv/default.nix
··· 1 1 { stdenv, fetchFromGitHub, pkgs, lib, python, pythonPackages }: 2 2 3 3 pythonPackages.buildPythonApplication rec { 4 - version = "1.13.0"; 4 + version = "1.14.1"; 5 5 name = "rtv-${version}"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "michael-lazar"; 9 9 repo = "rtv"; 10 10 rev = "v${version}"; 11 - sha256 = "0rxncbzb4a7zlfxmnn5jm6yvwviaaj0v220vwv82hkjiwcdjj8jf"; 11 + sha256 = "03106sdsvj4zjjaqqg7qvm3n959plvy08a6n28ir1yf67kwzsx8a"; 12 12 }; 13 13 14 14 propagatedBuildInputs = with pythonPackages; [
-1
pkgs/applications/misc/termite/default.nix
··· 35 35 homepage = https://github.com/thestinger/termite/; 36 36 maintainers = with maintainers; [ koral garbas ]; 37 37 platforms = platforms.all; 38 - broken = true; 39 38 }; 40 39 }; 41 40 in if configFile == null then termite else symlinkJoin {
+369 -369
pkgs/applications/networking/browsers/firefox-bin/sources.nix
··· 1 1 { 2 - version = "51.0"; 2 + version = "51.0.1"; 3 3 sources = [ 4 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-x86_64/ach/firefox-51.0.tar.bz2"; 4 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-x86_64/ach/firefox-51.0.1.tar.bz2"; 5 5 locale = "ach"; 6 6 arch = "linux-x86_64"; 7 - sha512 = "28041c7cb96e90ba3c9fbe689b000f56e144543b83f1280da785f70a299b229c72638f206425049ecefdec5f33c66fbc588a2032c392e637428fa03cc5cd9fd5"; 7 + sha512 = "b03b784892648b2df1c3f5acc9e0a8bab9a7e95afbeda249dfa57f4bbabfd2d750602c64b85ff6d1ea4676294086ea2b847e64a8920450ca6849d6c54b3f881e"; 8 8 } 9 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-x86_64/af/firefox-51.0.tar.bz2"; 9 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-x86_64/af/firefox-51.0.1.tar.bz2"; 10 10 locale = "af"; 11 11 arch = "linux-x86_64"; 12 - sha512 = "73196f42a1932782a7ae682c461a1c0f443b7369c4c9d74e4f45af73db5d0ae6926dc8055cdabc68ee63dc669e8846b5a529bbc16759b0160119ee750eace1c9"; 12 + sha512 = "4d1c5407450e9afbf8e630fa588d6b26c6cd5d9c405d422413064f1e81d089f65f59df4022dbf6f0601cc36d56b222a45f925b792ed7df3182e0999d5655e393"; 13 13 } 14 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-x86_64/an/firefox-51.0.tar.bz2"; 14 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-x86_64/an/firefox-51.0.1.tar.bz2"; 15 15 locale = "an"; 16 16 arch = "linux-x86_64"; 17 - sha512 = "eee39ff92c9354b4d6fcbf801e899f123053a6509e9cb857ff25e76e198d8c71d2c8979b7bab8393ab130a3518f564d1ca5e2d528432168f2e679f5cc3b0755e"; 17 + sha512 = "71938ac8176197164408b389c28061d634dd3d895b28a7ad35c4236e3a6561be7e4f04c0c4fd14dfa9e4c87d0c9cd245ed656cfc2bb68d4666a5bb2e93740a49"; 18 18 } 19 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-x86_64/ar/firefox-51.0.tar.bz2"; 19 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-x86_64/ar/firefox-51.0.1.tar.bz2"; 20 20 locale = "ar"; 21 21 arch = "linux-x86_64"; 22 - sha512 = "cfcf6ad7e8aa2350207ccb26840757765ab702ab414eb6c657a58cc5ff8422089fcc6544149278d627cc397cc5797c42a44f0bc18fdc2a961379e58cbeabdb9c"; 22 + sha512 = "a0b1ca6edaa03e5e73e7a298490f394a2884690c0e012678686eba4d32a16c1f049a0fc2417627cf36e54c918dd0f86ef37fe6555b5ce80de18999ea08a537a2"; 23 23 } 24 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-x86_64/as/firefox-51.0.tar.bz2"; 24 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-x86_64/as/firefox-51.0.1.tar.bz2"; 25 25 locale = "as"; 26 26 arch = "linux-x86_64"; 27 - sha512 = "7e2b8862528b7a58ee598f56069f6c685cb23aee23f5aa708b4a3fd8c6164dabc5b3cdec418aa2280fbf3948980b5cb9bb6980ef39ed9c96568ad791bcf7873b"; 27 + sha512 = "1e07c2cf24eb3aa244134d8ed1d11dd3b1151b9e700921afb60336491c0f301fcc4b289e354b490f9d84cca96417b09dab7df06951f8568019976e2baf999894"; 28 28 } 29 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-x86_64/ast/firefox-51.0.tar.bz2"; 29 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-x86_64/ast/firefox-51.0.1.tar.bz2"; 30 30 locale = "ast"; 31 31 arch = "linux-x86_64"; 32 - sha512 = "ef636ef3f1b6a258dd01e1df91b6beba0d8fea6ce3ce09b62e6702fb145bf670a91df0faf23604d066f44e4bfef11c89e34951cc9993bee7be6ddda966f10f22"; 32 + sha512 = "dbdaf693ea1143f78fe3a06461d0a1653c57459633b1d5236a9c3ce74f1c888664d7b455fd0fb2733c0823c22088d58314ee9f4ccfa62726257b83fe1cdac435"; 33 33 } 34 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-x86_64/az/firefox-51.0.tar.bz2"; 34 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-x86_64/az/firefox-51.0.1.tar.bz2"; 35 35 locale = "az"; 36 36 arch = "linux-x86_64"; 37 - sha512 = "0527b6c09d9cf6d785a17d3bf7934374f8d9f8470bf7aea884040bcf1faa29c1038640840dff6bfdba8786796d42d41b5acafc724e11af9cc654377d7dab7b3b"; 37 + sha512 = "1fbb9efa1dddf1577b5532fb59f73994c54aac26e4ccfe643204224844f5dc1398ae077703b5df33589646257ad2f46ce4bc38a3e9575c8842c716bf18d1c497"; 38 38 } 39 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-x86_64/bg/firefox-51.0.tar.bz2"; 39 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-x86_64/bg/firefox-51.0.1.tar.bz2"; 40 40 locale = "bg"; 41 41 arch = "linux-x86_64"; 42 - sha512 = "91d97992a0382b36c051e6b82f41121464df8ab9a24addf22c402a660b0340babb3a03ba5ae2144fdae6fd89b7960c542d382a116d303c1b660e8c58b22dae38"; 42 + sha512 = "fee53d9245bffeaa7c696b1cdc2119b0f683caf9352ac2e8336745e45a799ef1729577af968006cb2240a49872673175f3ec0a706b76d4bc5962c56912b895bb"; 43 43 } 44 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-x86_64/bn-BD/firefox-51.0.tar.bz2"; 44 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-x86_64/bn-BD/firefox-51.0.1.tar.bz2"; 45 45 locale = "bn-BD"; 46 46 arch = "linux-x86_64"; 47 - sha512 = "0264a2989ce61684eaaeb68f9a55f0498c58e621e39c89d3b6b54d17e95b8034d00730858a13bba685fcd24bcbdc9751abd10aa0a4bc528fe7a215c578c4f20f"; 47 + sha512 = "d6909918b51dd5a1c80909e480de0503ef85ffb1b53a7421d134386e5db94850c1605eccddf588b4646aef90e91917b3fb0c74f6560e1c0543d45a2f9fbd8bc6"; 48 48 } 49 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-x86_64/bn-IN/firefox-51.0.tar.bz2"; 49 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-x86_64/bn-IN/firefox-51.0.1.tar.bz2"; 50 50 locale = "bn-IN"; 51 51 arch = "linux-x86_64"; 52 - sha512 = "f7023475fe832243845d5200fe0ed14fca9be37f6dad21075eee0b40361b5b30e0859a5878063099975ccd06e89ba431c277243f48b8d21357066f9fe73c4c97"; 52 + sha512 = "cfea68c984ca43b840d3d8d13347c3ac2ba38e5d38623384aa5a3559b6fe175415124ca06ef3f4848193fc20e0ee0a6c4a497c5bc3b7589e05cd756bfa56bf53"; 53 53 } 54 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-x86_64/br/firefox-51.0.tar.bz2"; 54 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-x86_64/br/firefox-51.0.1.tar.bz2"; 55 55 locale = "br"; 56 56 arch = "linux-x86_64"; 57 - sha512 = "824810456fd3d4c0b705d8adcbd6a87aa03373f24a6282011c010e88c1bfb19854695c8989f62f432004c7f84bb517f3849454f06748a7f9c73b99035e64637a"; 57 + sha512 = "1225ec28b6f63cd5be087a61f0f6761362bae12ae975c2805e109019fce0b0fc7dce4bb0e7891bffd18a8395ee41f6344ae654314894c1fa1eb0a30851ea3b21"; 58 58 } 59 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-x86_64/bs/firefox-51.0.tar.bz2"; 59 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-x86_64/bs/firefox-51.0.1.tar.bz2"; 60 60 locale = "bs"; 61 61 arch = "linux-x86_64"; 62 - sha512 = "d71a70756807065b64ef25f359913d292b92220e3e6a76018478c592f10f31bdfe393fc8067243274d17a51bb7d37cf2f2c80dff05d00eeff9b5c4360b8204e2"; 62 + sha512 = "7d5bc886b60a04aa81ea77d412738ef350dfa6c76c9c653d5c9f7627717ee94a0ed9131d3a1a75f25306bd496eba225e9a645b44f59fcd5a16bea64a128664bc"; 63 63 } 64 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-x86_64/ca/firefox-51.0.tar.bz2"; 64 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-x86_64/ca/firefox-51.0.1.tar.bz2"; 65 65 locale = "ca"; 66 66 arch = "linux-x86_64"; 67 - sha512 = "0bac177c381cb9a40e5d58280e29ed7a143ee3c9f49c35444066c14191ba14fa45214ffd830a8ca7e7f01f8a029f93cbc5bf2c703f8fed8761abd2a800153697"; 67 + sha512 = "ebeecb92f79a67c1bba9ec43509a431328318607c7c460f13ddfc17d3253ad4f2de06cef27ba7adbffaab2562af48f3eec8b1b5137d4b8abc8b2a960515fe9b3"; 68 68 } 69 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-x86_64/cak/firefox-51.0.tar.bz2"; 69 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-x86_64/cak/firefox-51.0.1.tar.bz2"; 70 70 locale = "cak"; 71 71 arch = "linux-x86_64"; 72 - sha512 = "106ae220caec8528c8251a4dcd785a7ed11621968b35964b1e5a5c5eac6dda8540b63fef2c4a74b6f33a2ce32c7e34ce8d5cde18b4951969b2a7dfc1b11a27bf"; 72 + sha512 = "d507417ce14e60af385d8cc3eb16b74d311ae50797bc836d0f137d2ed69f41aceeb4273a4f10de64dc1d93ec29952e3a95bea6bb1c628467c410266edf8ddfc6"; 73 73 } 74 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-x86_64/cs/firefox-51.0.tar.bz2"; 74 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-x86_64/cs/firefox-51.0.1.tar.bz2"; 75 75 locale = "cs"; 76 76 arch = "linux-x86_64"; 77 - sha512 = "c42915c13ccb30025d29582ff10b52f69681e44c835a049cc4d3ccd2d554da9f02d9286e2f49f1b14879474c18391dea539cd407e4aa8daf2586df42ef242415"; 77 + sha512 = "60b1690077c1375df44642ec55954f690af6240a2d1782c93ca1df6cda7c64f50bd0034f6d66f4629e8d6d5716fb46afeb2850201d63d72f6122da57bc278788"; 78 78 } 79 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-x86_64/cy/firefox-51.0.tar.bz2"; 79 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-x86_64/cy/firefox-51.0.1.tar.bz2"; 80 80 locale = "cy"; 81 81 arch = "linux-x86_64"; 82 - sha512 = "6fc312a3e0303a95e0e00d1e22d9c347decb3764e568dddf871ca87becece14fd5d2ad3d064ef03855b3c498237ce68377c1c8bb6881fd897b7a041637e95023"; 82 + sha512 = "dfad805b88d1b928253a8d86a89581b0db4cb505b373d6488cb05701048a1e99131b6078d337cce16f5fc7daa0af331ec4fb328329af2c663af8ae28a221c58a"; 83 83 } 84 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-x86_64/da/firefox-51.0.tar.bz2"; 84 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-x86_64/da/firefox-51.0.1.tar.bz2"; 85 85 locale = "da"; 86 86 arch = "linux-x86_64"; 87 - sha512 = "0bb5b30f76fb68e27ec653e627874e9d3828ae419d968b0582197d5db2cf0454c466feae4cc884daa2e2cf4e47b77da76ff2f9e554f5a25f0dff743d7b14d2ae"; 87 + sha512 = "6fcc47e0a019fc5af5fb14753221a89bb63c18d4695ed2a369781b2d89ae0c1c127cada90582908ff690d4b08015686f963bd0df137686cad99eefb31dcf1bb9"; 88 88 } 89 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-x86_64/de/firefox-51.0.tar.bz2"; 89 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-x86_64/de/firefox-51.0.1.tar.bz2"; 90 90 locale = "de"; 91 91 arch = "linux-x86_64"; 92 - sha512 = "631774f6e95d0e0c9177c0cab012b9b9618b1cdc69489accf4dc535db19b6b64f388e510a5adb5a6bb06fbe0a2f2518747eda2a2361dc4d444db9302bee67256"; 92 + sha512 = "31efe6ee9551246018811a63d89274dc126955745ca68c97035f207ca0b5ad250b2f8672132f6ca5c70676e09174f227ef9e1b5488857a9a5da5b5fd41fe2aad"; 93 93 } 94 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-x86_64/dsb/firefox-51.0.tar.bz2"; 94 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-x86_64/dsb/firefox-51.0.1.tar.bz2"; 95 95 locale = "dsb"; 96 96 arch = "linux-x86_64"; 97 - sha512 = "ba2fb7fb575df8f873ad4a6f7d2ca9c3f5ba150e2754d5f7c8fca637cc8c71198b8ed400d9654b1ee9348c6a39d7e9f501f7e56d9cc6b4cf0c962257c200bb66"; 97 + sha512 = "f93c6bc53c51454128f0435eca79cd46f94e49e1513854ceb9835322c84b282f81536efefb6520f01842ad10c70c0d85b72a89de9952c03fe8626b3a02ad2bf3"; 98 98 } 99 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-x86_64/el/firefox-51.0.tar.bz2"; 99 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-x86_64/el/firefox-51.0.1.tar.bz2"; 100 100 locale = "el"; 101 101 arch = "linux-x86_64"; 102 - sha512 = "4256085411d80fe590fb678b186be0a5422502b8260ffccc3f0e01486b4a463d23821c50b2c92e7dbeca26a3a8473f4a4972c6c752c3f4997ec38d69f959d950"; 102 + sha512 = "8acdcbe7ef6a977a7f59e1543b960b428faacfab756b298310c0971d0e90b10c382ec211d7866ac5aec2bfb15cc9b276be8bb82b8f036babedba989ffed3664f"; 103 103 } 104 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-x86_64/en-GB/firefox-51.0.tar.bz2"; 104 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-x86_64/en-GB/firefox-51.0.1.tar.bz2"; 105 105 locale = "en-GB"; 106 106 arch = "linux-x86_64"; 107 - sha512 = "cc9ded644135ad6362ef711cb96b84fbb57033775009182106d3681492cfc9df366408ac03f2494c217e46b368075f5f81642f3de17d2ca936867ebc7e03afab"; 107 + sha512 = "3aaa1f296dc15a5e2555c5aa1d5c2e2f2ff91ac76a65955cc633b19bb50c449e0d0e1f2b6772278884d4d9fbe3d35c2bbcfdb3f85e23838bf132aabe37b5f117"; 108 108 } 109 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-x86_64/en-US/firefox-51.0.tar.bz2"; 109 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-x86_64/en-US/firefox-51.0.1.tar.bz2"; 110 110 locale = "en-US"; 111 111 arch = "linux-x86_64"; 112 - sha512 = "b585f100d3b9728dd3d1922f12385cf4ffd025ef5ab72a9b0a84e6cc6d4a77bff48bb184f7de63e1d5ac40296a301c2be9607fc502539b89320463c310ac89fa"; 112 + sha512 = "58bfd3dd0aef94d735ae73779ef8d729bf421e48e345baf413c0bdb5085644a79dd786a4e21713bd8006ba2e48d3a3cb3c94b97dbfb5d90f546549518770c88d"; 113 113 } 114 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-x86_64/en-ZA/firefox-51.0.tar.bz2"; 114 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-x86_64/en-ZA/firefox-51.0.1.tar.bz2"; 115 115 locale = "en-ZA"; 116 116 arch = "linux-x86_64"; 117 - sha512 = "5435a360bca5dd865d4f1dc51f6d93eed6bf71abbb6c63d416934283878c7b0d05c212e60c1269c58d54438f9b3219b6599a2d95e80fc915f1f627a3b95d3635"; 117 + sha512 = "67b05904cfef62154aac12a5bcd77046672a599f3df323fda5f12e1bfcccd0bacc31556c6708dea70c1b459e7dbcfc7284248b528aed1fdc1bf336eabcbbbcfb"; 118 118 } 119 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-x86_64/eo/firefox-51.0.tar.bz2"; 119 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-x86_64/eo/firefox-51.0.1.tar.bz2"; 120 120 locale = "eo"; 121 121 arch = "linux-x86_64"; 122 - sha512 = "d5ac355f4e9e08dcd0782e7bef428e6606711673353b5159b1fa153f32dc9c4df53bfdcdbd74aa8e9420c7b8a13d8013778c4bf31b59b4913d1447f901cab25e"; 122 + sha512 = "87cd52dea514edffa98ce40f45a209a11d1543b7f23007639e66557dd687824a9aa785f1eeb4b1f3aab17ffa8ee18e3628eba592dd3b91c940677e18adbca0a5"; 123 123 } 124 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-x86_64/es-AR/firefox-51.0.tar.bz2"; 124 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-x86_64/es-AR/firefox-51.0.1.tar.bz2"; 125 125 locale = "es-AR"; 126 126 arch = "linux-x86_64"; 127 - sha512 = "1a173345039821ccb0bab091433523a6eb3c485b7f5083bf41d830576d63cc983d354c473971e174af0de724791be31b57f1de371a8386957c5dd3319b25b0ce"; 127 + sha512 = "d731b583b8b0ff0ecccd3bd1b32fcbd0152a353c6eb9525866185d8e42eaf4dbf13ff008893b7c35045ac8a699608e7b7aef4a02c69fc764cde12cc507f5afb3"; 128 128 } 129 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-x86_64/es-CL/firefox-51.0.tar.bz2"; 129 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-x86_64/es-CL/firefox-51.0.1.tar.bz2"; 130 130 locale = "es-CL"; 131 131 arch = "linux-x86_64"; 132 - sha512 = "9c43565a6bf05ed30a8a79b12ca5d88c30c98bb96949e32c688be9b994bcf9f1ac3a2c670ba8afbbb25c19e2921b046278542068e1918b3ff59ac3b0ad5596ae"; 132 + sha512 = "4d2064a404832b26364691eaf8923adabad698bc8ad1bb0681be36ef7b154f02f3a63c8e45ffe848891cc33af9f4992e3a8ff0240db78028a8148ee250cbee58"; 133 133 } 134 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-x86_64/es-ES/firefox-51.0.tar.bz2"; 134 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-x86_64/es-ES/firefox-51.0.1.tar.bz2"; 135 135 locale = "es-ES"; 136 136 arch = "linux-x86_64"; 137 - sha512 = "6bcf1b218f940a2c0ab6fc9f899d63555e49e45907dce4026312a767708662032c5c6f8b9958d30ae4adc97d037018407d91cf69c4993a8865ef92f3e8cdab2f"; 137 + sha512 = "1ce27c43e05606d837c65f218e144e695a081146b868e7a3706a876744db0e183392c63f992efe8484d398ae02d521ed6092518131cf4b53647bdde015cb8cd0"; 138 138 } 139 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-x86_64/es-MX/firefox-51.0.tar.bz2"; 139 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-x86_64/es-MX/firefox-51.0.1.tar.bz2"; 140 140 locale = "es-MX"; 141 141 arch = "linux-x86_64"; 142 - sha512 = "1092239baa8016968dd8daeb69f6891f12ddc572bd1010c3800d07598a1a7596ebf8d68d1e6d3de4db33f4dd003a463d9ffe69c3a841c65ceaf44133c5eb74e8"; 142 + sha512 = "2f0d6765fa85678f8b9a4c820e2e36ef3ad8fbe50db07cd3ccb5749b62aff3026eb09316d4840fb9dd537581ec39753205923460a150dd7b3d4c812fef8dcbeb"; 143 143 } 144 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-x86_64/et/firefox-51.0.tar.bz2"; 144 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-x86_64/et/firefox-51.0.1.tar.bz2"; 145 145 locale = "et"; 146 146 arch = "linux-x86_64"; 147 - sha512 = "4fb536071e23f2f55674fe790f3dc567c2edabb529c0d3b52b07aa02d9898f3b2d7c7cb694bf22a8e0f921c62d4f33b1ddfc6ee9bdafa42a9405e497677628df"; 147 + sha512 = "3b6675306eb32e809778386ea92db02a5b4274ac2e62e0f071527fe4ea38e862180d2fe992c3e37f49e8157c1910ba6600256121bb191c00c80c236d3333c3e0"; 148 148 } 149 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-x86_64/eu/firefox-51.0.tar.bz2"; 149 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-x86_64/eu/firefox-51.0.1.tar.bz2"; 150 150 locale = "eu"; 151 151 arch = "linux-x86_64"; 152 - sha512 = "cafe7b1ce89402c961d90c5f28e14ac05884da13236766b04c444f61b3fe259e5bde9460c31bbdad2192b5e1712b13578a165a49a08879fc251d0e6b3c96cc19"; 152 + sha512 = "09b87fad711ce298c53b468dfa561526390c8c45c3c2edf25a76212889b7a1b965d1cfcd8c60a15fd6072ba3a7fc3a26e40a9c92ae363295ec9e2a0d12039fd4"; 153 153 } 154 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-x86_64/fa/firefox-51.0.tar.bz2"; 154 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-x86_64/fa/firefox-51.0.1.tar.bz2"; 155 155 locale = "fa"; 156 156 arch = "linux-x86_64"; 157 - sha512 = "25b2834300a3b48e9cea461dc3b2c5513e81c6b428a96ca7c89e022cfeb4435cad0ec1fbb22806be0adf971c728ff2152e7ba097e0189ace7e15d083670fcee5"; 157 + sha512 = "b5cb640ddb95ed2f7a36435b5a6c22d562b35e44506d0acc61adb5341cb0fd1a092f1b64257af190d8e6d8e8e5d956cafae3f6d116c69bd22e4c19bb78fa494e"; 158 158 } 159 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-x86_64/ff/firefox-51.0.tar.bz2"; 159 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-x86_64/ff/firefox-51.0.1.tar.bz2"; 160 160 locale = "ff"; 161 161 arch = "linux-x86_64"; 162 - sha512 = "c4eb46a438a5174de003c9ec24cbe9de02c3ca66b485e74fb09f1e6cc2c558d4b45df58fb8fb5b97fdce9e3ea4c473d7568f5d197a2e5ba0c27317204a76cf78"; 162 + sha512 = "15cbf240bd5302d984e2d63a239e3d83f48b9a31413d81c2b76c389d9ff59e9da69c759efa925c2731d070f8e12fbd7c9791769b4315a991857282a745b261bd"; 163 163 } 164 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-x86_64/fi/firefox-51.0.tar.bz2"; 164 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-x86_64/fi/firefox-51.0.1.tar.bz2"; 165 165 locale = "fi"; 166 166 arch = "linux-x86_64"; 167 - sha512 = "5bc78cebb1414049625da3e3f9f1b33ed8efdc01d4a0b29d2b5c7c69c8b7b4639fcca89f5d75f434c28e3235613094f1e51d35a0bfb9943ebc1993360f8a517b"; 167 + sha512 = "b8785753cd8192653e459ad92fbeeedc88bb860d8b2a1eab97a4eb16726ffe4c70f4a27d14fba3d987f0f5c187a69fa473f8ffcbe34240cb0bf0379ea72e713a"; 168 168 } 169 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-x86_64/fr/firefox-51.0.tar.bz2"; 169 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-x86_64/fr/firefox-51.0.1.tar.bz2"; 170 170 locale = "fr"; 171 171 arch = "linux-x86_64"; 172 - sha512 = "aeba94f928e6632db44e181e3d6aa8b53943f59effa5cccd2bab5b7141c17c6362adbbfe5a28f0e4318adee9d488c336591cd602a55656b966f57312e20798be"; 172 + sha512 = "418292c6cefc45a33057062d2a86299479ca0001fafe30a8369cb79e2390195dabc379001d2060ff3175fb96bbc0ce6063a2fcd0e8294aa8fcd4c231eb7a6dd8"; 173 173 } 174 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-x86_64/fy-NL/firefox-51.0.tar.bz2"; 174 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-x86_64/fy-NL/firefox-51.0.1.tar.bz2"; 175 175 locale = "fy-NL"; 176 176 arch = "linux-x86_64"; 177 - sha512 = "952b0cb604cc8f3ca39bda118c543aeb1a7dd25d266439c56bed600e136864251ffb866915cf8d92cb8437cac0d9e1d6ec0a8468e89eb0c6df192ad21fb8aaab"; 177 + sha512 = "07db4c4d56e4d9416d8e2c94b712b27071e66c906c189f615d1e15ebbf9b2df6354f433ce71ba8ea60da870e1551bce477d256cccc5f7b03ce2df37249b183f2"; 178 178 } 179 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-x86_64/ga-IE/firefox-51.0.tar.bz2"; 179 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-x86_64/ga-IE/firefox-51.0.1.tar.bz2"; 180 180 locale = "ga-IE"; 181 181 arch = "linux-x86_64"; 182 - sha512 = "dcffd355c1d911a00cdd3ebaeae98e6fa5346934a6ef5b1f66c7698bc188878ab75686ae07d0cc885535bc674ab55931a03a60247431da53bed921ad4ef44edc"; 182 + sha512 = "950fd2a1d7280574ce4f50cd6be29d00cd322fc63c41b7babadd5b615cd12f350e2f2aed8cf744a753583ef313a2fd6948d5b3d444d49bcfd865b1df92b80c11"; 183 183 } 184 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-x86_64/gd/firefox-51.0.tar.bz2"; 184 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-x86_64/gd/firefox-51.0.1.tar.bz2"; 185 185 locale = "gd"; 186 186 arch = "linux-x86_64"; 187 - sha512 = "50104f1ba8ebe3505488030de273b04b83568ade8d777fa5dbc75d4b74433f194b16d8e963ea56686563b6aed129cdf64d8db9bad34c68295c5457b3b66812c3"; 187 + sha512 = "7d0174ae5c3874350b8c2444c12dcecc180261445f1cce36a196196f0040057d8b78ba4ae081d287343e7e3455410662b55a306d021c536e3b5ffc4705048051"; 188 188 } 189 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-x86_64/gl/firefox-51.0.tar.bz2"; 189 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-x86_64/gl/firefox-51.0.1.tar.bz2"; 190 190 locale = "gl"; 191 191 arch = "linux-x86_64"; 192 - sha512 = "61436f89c5353e06c29b5aac6ba1ad1ceeab1f580a40643d6afc5f27801b1d67c9f5343bc2e3bc911547389d6b7ce81d75faf9c7882436562fff4fbcf379d057"; 192 + sha512 = "68b2d8a3f53ed32826c70850af3c8e7507e7aa5b19c0ceba86d4ca5759630f28250b67cbb3727b524c80b66b03af4e6ad7a6d1494743e28bdc8cdcd4bab10824"; 193 193 } 194 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-x86_64/gn/firefox-51.0.tar.bz2"; 194 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-x86_64/gn/firefox-51.0.1.tar.bz2"; 195 195 locale = "gn"; 196 196 arch = "linux-x86_64"; 197 - sha512 = "14c0b3f085f3bceebd6a75e96efd71d6c8f5e50485f2d7b6b18fca42ded88f5f3b8b90afafda388e7b41cbe39ea2410fae37cbdf8ef0a32d8204ddb7ffee8b6c"; 197 + sha512 = "ed0786dca5c95efede7c9c58b0f8b2a08068fe309b7456807d96c0681fb963ddcda1fb461cbac96c20472b0b084abc5fb2dba3f24f5f763d2d31728a3b16adb9"; 198 198 } 199 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-x86_64/gu-IN/firefox-51.0.tar.bz2"; 199 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-x86_64/gu-IN/firefox-51.0.1.tar.bz2"; 200 200 locale = "gu-IN"; 201 201 arch = "linux-x86_64"; 202 - sha512 = "abc5baa41ac6e41813c43838e94b68a63f83058cdf37d25bd315bfdcd27a2a294c91205ec0ce13e7b28508e0ca982bbb6ef3384007d8f857935139e8546b40a9"; 202 + sha512 = "f9d6ab4c713d3f3f1c9a2328290668b7b65abbb739419f74f262da090f2b88cab96fa1ebb768626b9fe84908ba92554a1c556281ec7c97f65801af053a14f195"; 203 203 } 204 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-x86_64/he/firefox-51.0.tar.bz2"; 204 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-x86_64/he/firefox-51.0.1.tar.bz2"; 205 205 locale = "he"; 206 206 arch = "linux-x86_64"; 207 - sha512 = "ca90c15c7100b40262879fbf12df5ddb440d4808d94679fa6cd32b9579582721b707843d4c65b4593414e139a7f360b437741c627c3b6e1b238994203a2580b9"; 207 + sha512 = "c1129b0826fe24b3bef9b0e1464fe8e6116f595e8d201d31c1d442255ba218d3614d88fcfbf14c3f52ce7119de61542a49cd2b4cda6be92323006c59073e6d29"; 208 208 } 209 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-x86_64/hi-IN/firefox-51.0.tar.bz2"; 209 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-x86_64/hi-IN/firefox-51.0.1.tar.bz2"; 210 210 locale = "hi-IN"; 211 211 arch = "linux-x86_64"; 212 - sha512 = "a27ca89b01034d75719f0e736d82e8240e24cb5ac4e9a21829e72cf8ffaebbfcc6a8906ff1db93f392380481f160e748deda23685b12bcc647d7a6f68e764bfc"; 212 + sha512 = "0e409a2ad739a6f180811cd6df64840c1f35179ee2a3cda615b774784962b1cad8a35196ce05ff332778fdf250b23dcf0e7a157524b43759cc89ea39424dbd60"; 213 213 } 214 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-x86_64/hr/firefox-51.0.tar.bz2"; 214 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-x86_64/hr/firefox-51.0.1.tar.bz2"; 215 215 locale = "hr"; 216 216 arch = "linux-x86_64"; 217 - sha512 = "fb91245060ff025230c3cfa45d15cb96974462642be3f86be44af108da966439575907f8a1b8665311ec599115a3dd66a4fbe09d4ac3f6c09a85bad64d7b2982"; 217 + sha512 = "159edb41972a2abb884c8b5910260554fed8d14d26e828f78fde9a13d9fc7a1e57803965e36e23173c224e02c49ad9d483729c72acf94e80824d4d74ecb9a694"; 218 218 } 219 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-x86_64/hsb/firefox-51.0.tar.bz2"; 219 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-x86_64/hsb/firefox-51.0.1.tar.bz2"; 220 220 locale = "hsb"; 221 221 arch = "linux-x86_64"; 222 - sha512 = "d649432eccc384e4c83e292649008ffc87f82b41584d91d37f7c9ef4189039b4ef32f9209428051475671fe79961c2f142a6f44a1ab7d371e17a0bf34a58cce9"; 222 + sha512 = "190ed5d87aced775d35b1bf909c1c832a61bd6ec8c2053724d948952d8eb2a83b7015b62589286f90ca09b02acc75f904f46a5a155720e7b728e9cd9c3187a30"; 223 223 } 224 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-x86_64/hu/firefox-51.0.tar.bz2"; 224 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-x86_64/hu/firefox-51.0.1.tar.bz2"; 225 225 locale = "hu"; 226 226 arch = "linux-x86_64"; 227 - sha512 = "a07e3b8c9b6fc306e068ab6311df45d9cad475561993fa8c576942a3c94ba5677b291d7fb1c390a2b48b2a5c199e25053bfef556d6361fa482a13e17204c7f4e"; 227 + sha512 = "a45a9a5e6af526acaa23d4b7f84d91ead0eb581989def50d57ed82ca4b8aa00c0bb6bec2ec891d5c154d0f4472fd72e7bce9a619c1860ea27dc9dc3f627ac8a1"; 228 228 } 229 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-x86_64/hy-AM/firefox-51.0.tar.bz2"; 229 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-x86_64/hy-AM/firefox-51.0.1.tar.bz2"; 230 230 locale = "hy-AM"; 231 231 arch = "linux-x86_64"; 232 - sha512 = "246fe80d9e73aec2744534b16e211083277b40cb6fd894e1cbaeee9f94dbafdacf912069917945260208f2446f080c6c90daa91ef07b3485538b5cdfb26ea1d9"; 232 + sha512 = "242a85f6329090814ed94a3cfea96f3c4459fe751e7741844104ad93913e5f3a27335ab736746baf89b06c619e062b5efe94de000137e4f26309cf2dacbecfe1"; 233 233 } 234 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-x86_64/id/firefox-51.0.tar.bz2"; 234 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-x86_64/id/firefox-51.0.1.tar.bz2"; 235 235 locale = "id"; 236 236 arch = "linux-x86_64"; 237 - sha512 = "79cb7fbccd0e6cc199c44a8da8a80fc91a195409145cba768edb02e07f11dfbac15774a67d6a088ed8569e46038b629e998185fa52e5d749d33ad1c91468c3e2"; 237 + sha512 = "3ee7915e8b8d6cfb3bb2714ee8c5c6d25e27e4612389c33a1ae34b230afef9ed24dc4bc2debbbf5c1fedeb60d843c1849f754050a0c1153db3ed6116cc7c0a70"; 238 238 } 239 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-x86_64/is/firefox-51.0.tar.bz2"; 239 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-x86_64/is/firefox-51.0.1.tar.bz2"; 240 240 locale = "is"; 241 241 arch = "linux-x86_64"; 242 - sha512 = "dc63ebf359f00a0ae47988e3ae868a92c79ee35de2e426aa9a15ae3fd3adc35cedbe957ac08e6a3af84ae0be9ead2d405ecf034c698626ef402e6eb01a519bac"; 242 + sha512 = "8df53c86d929fdfe64393d8005c4e5a8c1d7cc25a088699f26827cc917d8150582faac8d312e209e72d5a0d3ea53c17688f64f58f76944519df1e55d8fccb82e"; 243 243 } 244 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-x86_64/it/firefox-51.0.tar.bz2"; 244 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-x86_64/it/firefox-51.0.1.tar.bz2"; 245 245 locale = "it"; 246 246 arch = "linux-x86_64"; 247 - sha512 = "34a7a1e39c4d03bd43d5613091b71e1c817fbbb235f801171220f43b71c3be258958e0aaa860ba241c1bd27e2c7d473310cf32e14b02ae4e757029d4f51d7214"; 247 + sha512 = "3fc00fcb1ed9d024aaf87ef82978131333958661644ade9aba463247dc1c0f9110e0123b9a3ad050ad1eed449300bb4280ae92f9721e67809acd5fd4842b7192"; 248 248 } 249 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-x86_64/ja/firefox-51.0.tar.bz2"; 249 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-x86_64/ja/firefox-51.0.1.tar.bz2"; 250 250 locale = "ja"; 251 251 arch = "linux-x86_64"; 252 - sha512 = "a5b90e23a17e7c8582223e66565c44e9564575ece1df0a749db021405137c3b1593f6ca70c42bdaa97cc83e69d6799d84d3d3d1520f82ba236dd7c99190c0b0e"; 252 + sha512 = "0edf9c17390ca3f75441808f7b54b2f5b61028b641a35d296d7265acb64322827845ea089c2d1149c55514513a3c76903ea3ddbe5d1bafe7b8f1e35fa16ba5cf"; 253 253 } 254 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-x86_64/ka/firefox-51.0.tar.bz2"; 254 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-x86_64/ka/firefox-51.0.1.tar.bz2"; 255 255 locale = "ka"; 256 256 arch = "linux-x86_64"; 257 - sha512 = "ae8f709eb4222ab67111ca596bdb466f92826cbddfa42cf5134b75773f40d6d7aeb8d384c8defc5469b569f21f4e6e8f2208b01f1e0e33d2b9cbe79f06527e4c"; 257 + sha512 = "996747630e56969a5a1fe238a1503d33353c25202b8c795300bb6b6c5ff313847f85ec5ee5b53d6862d124bda0628c734098a446e62d229dd4858ff33c41a911"; 258 258 } 259 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-x86_64/kab/firefox-51.0.tar.bz2"; 259 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-x86_64/kab/firefox-51.0.1.tar.bz2"; 260 260 locale = "kab"; 261 261 arch = "linux-x86_64"; 262 - sha512 = "5090ad81a159dbddd37bba2c36dab62d5cc306c09d3df08562f625a43eb19c8c9456eed19290134ede37e882b2ee7be9b3ada037ce348827273ce05ae49977ed"; 262 + sha512 = "128e2f29ceb1c22376ebe81a494ba94d50a7cb4693ab77dbebcd5096ed9494758a989aa6db88274c9e397945f6b6cd8d2a94ba35ead6be05c1e78eff3c0c2618"; 263 263 } 264 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-x86_64/kk/firefox-51.0.tar.bz2"; 264 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-x86_64/kk/firefox-51.0.1.tar.bz2"; 265 265 locale = "kk"; 266 266 arch = "linux-x86_64"; 267 - sha512 = "01b58e772c65b233cb51dc9ff43d98c64727b02cd5293882271a25625728d9d1b2f61429ce157ac4e7eee17460722201f6d7b6fa6013d25385c76067136d963c"; 267 + sha512 = "6055133f8531df38726ec46e6a9f864cee6b04fb323c8008b098cf5fef4b1cddc1683bd94d8659614c3379a9cae38ae1e0a9f8e2f976ab0eda40d66a6a04f8bf"; 268 268 } 269 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-x86_64/km/firefox-51.0.tar.bz2"; 269 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-x86_64/km/firefox-51.0.1.tar.bz2"; 270 270 locale = "km"; 271 271 arch = "linux-x86_64"; 272 - sha512 = "e54cc5c2516a79e4981addb237571593af0bd052ca8fc7ed5c7919524ff8ea73b2ff8857d9e6627ff3de5819722c13c3abf633759e9770cad1e04a2fbf28e1f9"; 272 + sha512 = "4ebc9142914314e8dbde018dcd245d3905781dfe5c31969ad647b6c6c88bb82dcdb1cd943c735f00130a1da26dd08b64990c51b1852465138e0689556b300e21"; 273 273 } 274 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-x86_64/kn/firefox-51.0.tar.bz2"; 274 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-x86_64/kn/firefox-51.0.1.tar.bz2"; 275 275 locale = "kn"; 276 276 arch = "linux-x86_64"; 277 - sha512 = "79c827a477cf369c57fb51708d1d889637ade4b4ced1d60f8cb57c2b69519ef2b3ca8730657691953e7c3d660f4e97a2fd5f0ee212430ed9be4e2d9c90339b0e"; 277 + sha512 = "3444bcb239eb034b2d9d18b0b957c9ce69a7bb884e6283825553a1aabf343865f914e965ed8d25a7534ee0ea33622f85a6c13c48ae455703ff5322000cdcb335"; 278 278 } 279 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-x86_64/ko/firefox-51.0.tar.bz2"; 279 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-x86_64/ko/firefox-51.0.1.tar.bz2"; 280 280 locale = "ko"; 281 281 arch = "linux-x86_64"; 282 - sha512 = "66fe892eab193087be04ceef0a73fb5af5cc153b6218480a20f7ad32da45845a4d5e6a3f9ed130c6c8d2fd0de704c87093a9739233da444848b32b34f0d41445"; 282 + sha512 = "b81ab42cd90ebd07b9d39b2cd12cbfd16e732890b5b9abbb7753bb5980c2c777de93a2ee3415f2ad28928eb7176fbfc86e4fb59e6d01b2dc69c3652f49aa1b07"; 283 283 } 284 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-x86_64/lij/firefox-51.0.tar.bz2"; 284 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-x86_64/lij/firefox-51.0.1.tar.bz2"; 285 285 locale = "lij"; 286 286 arch = "linux-x86_64"; 287 - sha512 = "ae85fbb36573e547bc35ce92fa82d8fd8359a38dc218811ade333d0ba7d02da17ac45490edc4b1ecfb59b6dd0eae31fe9e21c8154ae443f36b52c46e9bf66c29"; 287 + sha512 = "1e14cfd6d66e8fdf3397bec910be3cfa032b5653f5b0ed5a8abd5eed4e43d7ee81b51d933e1ec1afaf000d5c4dee2f2c091c834b0559be7addf0c706ac87e3ec"; 288 288 } 289 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-x86_64/lt/firefox-51.0.tar.bz2"; 289 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-x86_64/lt/firefox-51.0.1.tar.bz2"; 290 290 locale = "lt"; 291 291 arch = "linux-x86_64"; 292 - sha512 = "c9f9bdc80d2e4963c2e4416cc7387a4b5f1b95d5135870ff38d6be6bb01042647ff0df5061a91260dbf48b7a43bcad79d6b974e9e4df67bb0c55541027a9ef8f"; 292 + sha512 = "8c8ad13eb19ebe66f3920fbcc51e99902a66224f2ac3035e929709597522a29d65ee69d6aa00e0b6994b34069088f8e34abf527d7f23e8f216aa5824b8b0a200"; 293 293 } 294 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-x86_64/lv/firefox-51.0.tar.bz2"; 294 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-x86_64/lv/firefox-51.0.1.tar.bz2"; 295 295 locale = "lv"; 296 296 arch = "linux-x86_64"; 297 - sha512 = "5cac54d12457684cb5cd2ea03647f5bca8c75221837e4e241a4d86d25a99c3464f8f10f8489dc8afeadb4c47f8a2e0a73e78533362c488aca0987a61f75d040f"; 297 + sha512 = "0eca04ee8090706d24c481e7dfc8424fbba1106cb42565c57c2071c8089da043bae76294761960d23e0c52fa17b6bb43a74fe61c481875639ed956625d055c20"; 298 298 } 299 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-x86_64/mai/firefox-51.0.tar.bz2"; 299 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-x86_64/mai/firefox-51.0.1.tar.bz2"; 300 300 locale = "mai"; 301 301 arch = "linux-x86_64"; 302 - sha512 = "274de5a51b2fe6696f3eb9372c7adeecf2e43b7c9e9a88c84cbe91c5cccd2a843d141cf89a816af3e1fc53e097da9902ca835608a3098a0b3c72bbc3cb0fe8e2"; 302 + sha512 = "7c033b5f2960e697ff21fe20be9e59e80906fc0b6e40edd8f12857b7e53c79cff2c3f5b90f084a11750ee4a9e8d7db014b40362bbf70d857db013929e3ce503f"; 303 303 } 304 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-x86_64/mk/firefox-51.0.tar.bz2"; 304 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-x86_64/mk/firefox-51.0.1.tar.bz2"; 305 305 locale = "mk"; 306 306 arch = "linux-x86_64"; 307 - sha512 = "91f1b9336aaaab24aea8837c96214cf79c0be4e7e81ce4342751ab38cadb1f1fe294fee53bc3132fca971bb192eadd5e206069001d80391cfd35b00cd334c69d"; 307 + sha512 = "5af4666ba379a7c70ef23776deaef3a14724e2c4acd498702c7acd84548d978e2f563def0227152864ac047979b24dd6de601dd53dea046e7bb7555c914b9f26"; 308 308 } 309 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-x86_64/ml/firefox-51.0.tar.bz2"; 309 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-x86_64/ml/firefox-51.0.1.tar.bz2"; 310 310 locale = "ml"; 311 311 arch = "linux-x86_64"; 312 - sha512 = "d48e26a22a81ff4655732f099aecc1c003d0930a1a73859ee13db4e866181e7aebc77d7fd816dab7c5574b0810089476682ef128c2fcfcc04750160a1e19b856"; 312 + sha512 = "acc0c1a8ea26e245d031462c9a535a149a3e99867f65117c427868920413b0c7397505f36fedcbc4fa3b4307380196abc04a6b4f50da07ca2a072a6add0432ae"; 313 313 } 314 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-x86_64/mr/firefox-51.0.tar.bz2"; 314 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-x86_64/mr/firefox-51.0.1.tar.bz2"; 315 315 locale = "mr"; 316 316 arch = "linux-x86_64"; 317 - sha512 = "bf8a614300090c4a24a37dcbf0d6b69cc114f346fd9a4b729f9de54be7a15440a49c46aac3a1b6b1321825d1e617bdd7cb2b1f48eb25bf9c6610d7040a1cef72"; 317 + sha512 = "adc68983863c262bebf01c3cec52690a8351e161b857fb4d12acf4b24b9985d74fc8d55c48f09410dc14ffb0090303c8a604d3f3f427c57d8bd7383073504ae7"; 318 318 } 319 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-x86_64/ms/firefox-51.0.tar.bz2"; 319 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-x86_64/ms/firefox-51.0.1.tar.bz2"; 320 320 locale = "ms"; 321 321 arch = "linux-x86_64"; 322 - sha512 = "8a75fd728889a5164d1e610241f558f083e3dbb107592cb26cd6c230b44f52d8d9b3859fca04c1172f128bd7d809171f170fb81118d0e8eb4c64e6e939e68d30"; 322 + sha512 = "976a78fcc2db7a52353f14ee47ab80f7467675cd88855b22ad01ebdf3f793771adbde902e2e717f860d112654a13e4ebc0f9a93220166493df34e602176a5509"; 323 323 } 324 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-x86_64/nb-NO/firefox-51.0.tar.bz2"; 324 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-x86_64/nb-NO/firefox-51.0.1.tar.bz2"; 325 325 locale = "nb-NO"; 326 326 arch = "linux-x86_64"; 327 - sha512 = "48b5e8bad93c5d6d7307dbbd790bdc9b5dd3e52a7b7f4f52d4598ccfe3fef97d36eed763394a7cb594682c1fbc8acb9e0cdab52f445ecc6f957bbb1cdfffb8ac"; 327 + sha512 = "7ed2c61c430ea79a21ddfdf6915fddfd8c3fa92f39f25483eb2ac333fc904e7a338af7318fccdb569938ad4b9f72bdbed94cbd57f56ce2cbe61d038d9df754b4"; 328 328 } 329 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-x86_64/nl/firefox-51.0.tar.bz2"; 329 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-x86_64/nl/firefox-51.0.1.tar.bz2"; 330 330 locale = "nl"; 331 331 arch = "linux-x86_64"; 332 - sha512 = "bd964b338ae332b5db9b9c5a2bc4bda320eb7824bddc4b6df87a05987b7f82fd8ead21e190d1b6bdf4daad17896612554272170d0e00c88ba94d7f03ac45a33c"; 332 + sha512 = "fdddc7f023aeedaed6494b2f67bf372284280c9d99bf77186150dab0882dafb185fadeebeaf77c6ba87cffbc409eb68b610cde39795a23a28635e68022a6cbf8"; 333 333 } 334 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-x86_64/nn-NO/firefox-51.0.tar.bz2"; 334 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-x86_64/nn-NO/firefox-51.0.1.tar.bz2"; 335 335 locale = "nn-NO"; 336 336 arch = "linux-x86_64"; 337 - sha512 = "4e534e4590727582273ee97e3889ecd7354a02210678a33fb80403438718eac6a8c213bb158f36eac438b85821c49f4a2fb32a79601ea12573382fed28ef7a24"; 337 + sha512 = "104e51e300cf628d36c4d5fd677a489b67bf197266787ad2ba531bc33869afa4b49d14a43e23ab7f1c750fb4f2ce07a0945dc779d88b21305545503c2f9d4574"; 338 338 } 339 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-x86_64/or/firefox-51.0.tar.bz2"; 339 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-x86_64/or/firefox-51.0.1.tar.bz2"; 340 340 locale = "or"; 341 341 arch = "linux-x86_64"; 342 - sha512 = "92c182fe90312ad1f603cda7989b0e48be790c2f6cedb6e184fe85cba1d8e06b2fae309af86691676c305709fb08553c8ff0b32021b427184419aaf45e396eeb"; 342 + sha512 = "2f847576b9b4dd5d231c21526c7886c21b7d11671f23165263eb555233d89eded61a6a6f1ac4c56823d0a2649702f285fb6e8efd8cec86cefb84c94bb762c7b4"; 343 343 } 344 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-x86_64/pa-IN/firefox-51.0.tar.bz2"; 344 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-x86_64/pa-IN/firefox-51.0.1.tar.bz2"; 345 345 locale = "pa-IN"; 346 346 arch = "linux-x86_64"; 347 - sha512 = "8ae2a4d0b8488cde54668b8b49895b67da9f43dbd9524b503fbb552baffb0714518bffc1d3f9bb94c7e00386ff5d2431a4fcb1cb0268ccd65b7d69057ba65bbe"; 347 + sha512 = "4fbec873e3eaa04a1f3842aa0865454b3f13ad3b7e2959fcaa518236cbf99391e48b638934f1950d889994f76ada4eab946c9f28f9ff07796d46d5e5c37235d5"; 348 348 } 349 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-x86_64/pl/firefox-51.0.tar.bz2"; 349 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-x86_64/pl/firefox-51.0.1.tar.bz2"; 350 350 locale = "pl"; 351 351 arch = "linux-x86_64"; 352 - sha512 = "26380ab557d16082ed012dbe781a168484825ac86396ef811ef043296c45569c89e38065708770633d603d5f4fee7e2637db00a2bc1820d8dcbf081cc39dd673"; 352 + sha512 = "4155fcaf556d5fdd5d4e74a3f70927035236432a83c9e20e4b3900e2c75f74a04d630ea7a74c0e3325231c36e0c06a32a36ced31897d36a15b55ecfcfbd53c21"; 353 353 } 354 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-x86_64/pt-BR/firefox-51.0.tar.bz2"; 354 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-x86_64/pt-BR/firefox-51.0.1.tar.bz2"; 355 355 locale = "pt-BR"; 356 356 arch = "linux-x86_64"; 357 - sha512 = "50761924143f0b619d47f93df04ef38d7cb689230d5b1dbc1385211f3f2a808816a73a70a75c4bb05b2ab8bf1ee0c1905c396338d12b1b9588830e19a1ed1e3d"; 357 + sha512 = "60e70d619c46ea9e7b8822a309f95bc51ad4d3cdd1ce49afb3fa0d7c6bf6f478a27e0cafdeed9217af1ea51b527394551a0ec6ee85ab62d59425c409c0a6d2a1"; 358 358 } 359 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-x86_64/pt-PT/firefox-51.0.tar.bz2"; 359 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-x86_64/pt-PT/firefox-51.0.1.tar.bz2"; 360 360 locale = "pt-PT"; 361 361 arch = "linux-x86_64"; 362 - sha512 = "fc4b858423b8d0d4c5ca93951548487070bc4f398c993ee88e5d51c82ec808468d49f32f80a9754d459844a208183af4774d69214bee3253b53b2aa64e29d08d"; 362 + sha512 = "ebae124b88595082fedd8a692ed3e5399ae5666bfa92d2c0d0cb75bbe9c763679beb2cd27eb31ab99adec15f723ec62096bba028655ae094808a8cc05071aae8"; 363 363 } 364 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-x86_64/rm/firefox-51.0.tar.bz2"; 364 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-x86_64/rm/firefox-51.0.1.tar.bz2"; 365 365 locale = "rm"; 366 366 arch = "linux-x86_64"; 367 - sha512 = "8680c7739422ac11f1f5728a5822376096de49c01005b25906513ed9eff262a5a038f4d69e2fb3d049b7106c9e1dca5c307ebdefd07ae59b11a3cafe13174481"; 367 + sha512 = "ccf8792db2fb2d0c3e26c2ab080dd6c03587b5827a77a15aafb6db1a2924eb8987b27e0c9ef8160c6e91377785e998926b69f3acbca050c79a8d5efedda7460a"; 368 368 } 369 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-x86_64/ro/firefox-51.0.tar.bz2"; 369 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-x86_64/ro/firefox-51.0.1.tar.bz2"; 370 370 locale = "ro"; 371 371 arch = "linux-x86_64"; 372 - sha512 = "2d5c66437d2edabd40570d2ff22b146ec3583b7c40bfb8846ccee1b2570f876ec62dd6e3d01d3df59ba5828c910cc812c0c4f3c9ab1f872a19bccabd2f69e450"; 372 + sha512 = "af62128c8bc705feaecc52c3dfd15970e085dcfd7912e6a00e598f471a45b346d56530209869f34069f5b7830ff0a486d5bdd0b095f7a9a6285ba9ae9f2aa2a3"; 373 373 } 374 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-x86_64/ru/firefox-51.0.tar.bz2"; 374 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-x86_64/ru/firefox-51.0.1.tar.bz2"; 375 375 locale = "ru"; 376 376 arch = "linux-x86_64"; 377 - sha512 = "4ccab70b429afd51f14e398181a08549426c1c73d58b3610ed36a93675ac34f72526f01a1fa3b0d1d6a9d3e9c42503759de73877c5e70bd53a0812da2eca3bdf"; 377 + sha512 = "f48264fa017ba40a0e43af9fdf2c3591b2337b09ac5146d94da16a2ddee0a5237dd1d99210e3baf94b949ac03e3cfe04468fd9ed27543b62d3b0c10e77835de6"; 378 378 } 379 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-x86_64/si/firefox-51.0.tar.bz2"; 379 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-x86_64/si/firefox-51.0.1.tar.bz2"; 380 380 locale = "si"; 381 381 arch = "linux-x86_64"; 382 - sha512 = "113d34f2819b4a315764128a4dfdd83c521df2c91bf2bd7b264771b6d475a1a051396d5f6382d60d6f521513c265248f54041e9fe45f0f40a6cae81393cdc77b"; 382 + sha512 = "d4496babb189fc5077b6c6689a54258534b94ce7034cc57a2892f2164e10eb5ac128b905e6e1e5cb6ffaf3e15ac7a0b0c141516a5e03b58ea1458fc3aefeb904"; 383 383 } 384 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-x86_64/sk/firefox-51.0.tar.bz2"; 384 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-x86_64/sk/firefox-51.0.1.tar.bz2"; 385 385 locale = "sk"; 386 386 arch = "linux-x86_64"; 387 - sha512 = "d6ff2bdd96f3a3f3f14d45bfb28b08a4db48db3be570c19a79ce226f243366e698aeca1b1682ad216c5e0f9d0edc6c2116ff01c6bd13394325e922d8afd3b98f"; 387 + sha512 = "657dc82b1067ba145d8431157411dae31420d0fa3145005319d7978736a7faf48aede2dbbeec1994d591c0ba54293b83340da5105ca298ca79407015ac90a338"; 388 388 } 389 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-x86_64/sl/firefox-51.0.tar.bz2"; 389 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-x86_64/sl/firefox-51.0.1.tar.bz2"; 390 390 locale = "sl"; 391 391 arch = "linux-x86_64"; 392 - sha512 = "296fd1291590fa677ac0208f8d555586b5377a575845d6d7e066f46b541e523166b4be4ea10c69cf4fc043abe2c73a34d1dc670582b49dbb15588edd17d15ee3"; 392 + sha512 = "d4122054acaf61d4258ed5646296702d68d869d96a1d39636ea1ee833ef4649003fe76173be4aac5e829cb946dfac709c69c82d668729c2b75376067300cc06f"; 393 393 } 394 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-x86_64/son/firefox-51.0.tar.bz2"; 394 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-x86_64/son/firefox-51.0.1.tar.bz2"; 395 395 locale = "son"; 396 396 arch = "linux-x86_64"; 397 - sha512 = "fd3462198ac73d24db0e17a8bd427d3798adeb6af82a775655265e91bdec90e53c49a7317ad98609f24a77ca540cd5864bbce2283e0a82c64d0107dc2a6cb7a5"; 397 + sha512 = "f74a90d235203adf179c4874a8e429d3618effe4bd5d8928318b74769fad093c5e8adbd69c7629fbac108d13fd5dade65e268dfd419650498a0be3c925e5088f"; 398 398 } 399 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-x86_64/sq/firefox-51.0.tar.bz2"; 399 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-x86_64/sq/firefox-51.0.1.tar.bz2"; 400 400 locale = "sq"; 401 401 arch = "linux-x86_64"; 402 - sha512 = "a8428c4061730e089621551006e28c7caa6381e43c443e40a03a91fd5bce72ed608b5e49a309597547913767e147efc4d7be37e645f6372bace1b445cdda76b5"; 402 + sha512 = "815df30c1180c9859a3ed3c34daf8c1ffa434ccddf356691b92bf7db7a3daf6e7e62446d5720d03fc7cd98aeee0eead2e62def2410cca6cf25fc7f139027b8b4"; 403 403 } 404 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-x86_64/sr/firefox-51.0.tar.bz2"; 404 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-x86_64/sr/firefox-51.0.1.tar.bz2"; 405 405 locale = "sr"; 406 406 arch = "linux-x86_64"; 407 - sha512 = "2f946bede46671690652c44dda2df106d0f56c4af7a40f61c827b7a7c2126abe3082843eede2fba251efc62c2466cfc42cc7ecc63cd63062ccc2d052ceed21a1"; 407 + sha512 = "70264d2aef00a51cf773f1643745b84baa239bf7cd8b32fade26f7d8f56fb7ad00ae95922bde87e2ce368876d3946f7193501314444ac42c69ed0c0d9c811b65"; 408 408 } 409 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-x86_64/sv-SE/firefox-51.0.tar.bz2"; 409 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-x86_64/sv-SE/firefox-51.0.1.tar.bz2"; 410 410 locale = "sv-SE"; 411 411 arch = "linux-x86_64"; 412 - sha512 = "a9c9d6246ce4a3af9277fe8ef8d9a8f3b4f7ee459c525e6b5e93a6ecface87db56ba01a3e1407c9a638f78fef0684a27328fd00e2ab4bb43e56f28db0e333cd4"; 412 + sha512 = "1252256ae15324828995d9ae3f1db02de62ed78f1fd127a98f63b0122e52ed3d526ce2fb83eceb704a11c6e113108bf58e44d88254247a523ef53a2bd35ae9cc"; 413 413 } 414 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-x86_64/ta/firefox-51.0.tar.bz2"; 414 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-x86_64/ta/firefox-51.0.1.tar.bz2"; 415 415 locale = "ta"; 416 416 arch = "linux-x86_64"; 417 - sha512 = "02f45309ab4f2995ed2404c8cc596d111dffc54d391c028960f4c181e409cecf4117dc1ae8aee900f7ac72c29109d7bfa5bca228d35a1b5907e25fc748aafbeb"; 417 + sha512 = "f29232bbe2c154e7db72c6f6a510cc113544c0f78e362f595558a4e20a9f2e7a211918a96985ce54cf88dfc51f701af99dd5c6db1719763624d038ccea55c713"; 418 418 } 419 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-x86_64/te/firefox-51.0.tar.bz2"; 419 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-x86_64/te/firefox-51.0.1.tar.bz2"; 420 420 locale = "te"; 421 421 arch = "linux-x86_64"; 422 - sha512 = "897448ac3dbf5ae75319feac7c32845cb2c8c60138df429f0171ae71b0346ff71efe005f3a6792087104cfabe6843a9f7e5406c26de2eefe325d4ef6ec172021"; 422 + sha512 = "5fadafe8657fa30af9771603c369abce6bda416a725394282fdf3443b1b50e8078212c0d016a146940e5fb5d3e485847d4754c690d81f5cb61256abfeff3e0bd"; 423 423 } 424 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-x86_64/th/firefox-51.0.tar.bz2"; 424 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-x86_64/th/firefox-51.0.1.tar.bz2"; 425 425 locale = "th"; 426 426 arch = "linux-x86_64"; 427 - sha512 = "262176b096a9025681f8b3f191ad46d8f0b83f9ec9abe9c34b5da4fea57ec2720545957041e3ff1c1044b470411b158d96785315bbe7d2c8bb29cb00c54facbf"; 427 + sha512 = "9e831d2a54a9bb5bb6be7a07163395755f1a5fbeb2515f57e28f714c6480497d9203c49356849e908db5788427ef9a6be1bd90c36c787183e6cf1aed4c3627f3"; 428 428 } 429 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-x86_64/tr/firefox-51.0.tar.bz2"; 429 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-x86_64/tr/firefox-51.0.1.tar.bz2"; 430 430 locale = "tr"; 431 431 arch = "linux-x86_64"; 432 - sha512 = "40e948f12456caa572bd78e5bf8d089428432653cf5bfab0ba23dc120f1cc36f370f745f1965ab0687f41f7617da78f75aa4429f51e5b650c7bf979f600ac5f4"; 432 + sha512 = "4bb5562a2c4e0feb215cb2d6da6f793824a5622bbe245c6d87c19350e3134e1191474f8091063b2c8e0fe63233739035fa6d92c330892c5ac6ab8d6457390c90"; 433 433 } 434 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-x86_64/uk/firefox-51.0.tar.bz2"; 434 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-x86_64/uk/firefox-51.0.1.tar.bz2"; 435 435 locale = "uk"; 436 436 arch = "linux-x86_64"; 437 - sha512 = "b82936161c27b5bafdaf340cb26c49c14bf9b3ac39e1831efcfd51b968ff4bfc953f8aed99ea6aa1b23b1a73129d221f0ec5c55de41dc81c405a531a4dce0934"; 437 + sha512 = "42f2e6cc7cd7f6f2af6cec1bb22645df65f493bc432660f72af74a16d30afe2dd7954a1fa2c6b8e1471ff813ba6921dd34483b32d6fc849c37c3e1c549cae795"; 438 438 } 439 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-x86_64/uz/firefox-51.0.tar.bz2"; 439 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-x86_64/uz/firefox-51.0.1.tar.bz2"; 440 440 locale = "uz"; 441 441 arch = "linux-x86_64"; 442 - sha512 = "b096c35ee124320ec625d3481015715570d56d6b6b4490c818dd40856bae4aea21c066c18bbe2cdd267d92716d8ed05e9cfdd34e12ebf4517d2b835e76a2c8a3"; 442 + sha512 = "e45f93233461588cb89e3e8b9d0c52c9600835c76baf8bc44886b6f230ba96f189068199b0f5ca5fe15a92cc2051461edb13e5fce94029459c2cee7be18871a7"; 443 443 } 444 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-x86_64/vi/firefox-51.0.tar.bz2"; 444 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-x86_64/vi/firefox-51.0.1.tar.bz2"; 445 445 locale = "vi"; 446 446 arch = "linux-x86_64"; 447 - sha512 = "9802425d5866ec036c542545e9bce34fb0e0f80b9b6146bb36a5999a02787095c3e786b9b7e1173f992c054caf8716295bd6084f411553df35586bf725c375db"; 447 + sha512 = "445e13bd76b01cfe01c6869139d896614931ccc37754998e063390788c2fcabba7e4e182fe8152a6c028477fb21619f3fd18bdde1dd05bb8dd84372db922ef0b"; 448 448 } 449 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-x86_64/xh/firefox-51.0.tar.bz2"; 449 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-x86_64/xh/firefox-51.0.1.tar.bz2"; 450 450 locale = "xh"; 451 451 arch = "linux-x86_64"; 452 - sha512 = "afba6b174855327a08d404b555a41982f6ef9f42d1067be40b5cae2ba5b62d232faa70936e02e7a313938b5fbd9acd3fb2af5cbc51128c47f2d2630f052a0741"; 452 + sha512 = "9bbcc96b73024fb0b618a373f5b9e64943e24207fac2e1504b25daafc45c08f2c7f69027f5a392c0e6d1995b8ff54742cd4998af039cd89bd376ff0008b61551"; 453 453 } 454 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-x86_64/zh-CN/firefox-51.0.tar.bz2"; 454 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-x86_64/zh-CN/firefox-51.0.1.tar.bz2"; 455 455 locale = "zh-CN"; 456 456 arch = "linux-x86_64"; 457 - sha512 = "fd952a6e825784b19179e2214755659c31c1be15ad8f42bfe4fe4905b57b5aaad7df9a0c0e9500ce75eff3f12743bc309dff10f9fd72a5849948e91c4d3f58de"; 457 + sha512 = "6242bf215048a46692062de813f8b0653b8ba9efe5f39d5fbb98a9f73309c1e6af7f9095cb7c7ce7ff8c5b1f1fd8bc6a57bb420b6679f26ae19e3622f779d5d2"; 458 458 } 459 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-x86_64/zh-TW/firefox-51.0.tar.bz2"; 459 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-x86_64/zh-TW/firefox-51.0.1.tar.bz2"; 460 460 locale = "zh-TW"; 461 461 arch = "linux-x86_64"; 462 - sha512 = "8b9c643ac91fcf01e6708a3ebabc735de5dbdeb8897a9d57560d69c04746e2a9b9902ae356416435010bd4f3e5241140b0a27162afafd5ee5c097f41dd34cfc7"; 462 + sha512 = "37664a08df20a85eb5b5551eb206c4bae7e357ca8fb9de5472e3a52156a1fe9711335204e7cc88766a13a50a64967e48c55a99afec3f08ffe46048a5f68ec538"; 463 463 } 464 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-i686/ach/firefox-51.0.tar.bz2"; 464 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-i686/ach/firefox-51.0.1.tar.bz2"; 465 465 locale = "ach"; 466 466 arch = "linux-i686"; 467 - sha512 = "cfbfa3136edb8786e6a573b4af9aab3250b3eda10c4a9bcade7e489e3bf0cf4761339e811397d938b46ab5cb708531fb036bfe379f54c4857e31b91f003584be"; 467 + sha512 = "9e7e313b7e8a37da5678e2fc6e2b810816f3c5f433b82341c351922ddc551046d6668aaf9b983ab63e6240f97b543169a0cce165029c4c1284e6c715313091dc"; 468 468 } 469 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-i686/af/firefox-51.0.tar.bz2"; 469 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-i686/af/firefox-51.0.1.tar.bz2"; 470 470 locale = "af"; 471 471 arch = "linux-i686"; 472 - sha512 = "15e9023b2434c037bc7f0871d97c0371a78ac5ca4981b30f7f9b95202ca299f3b23b07d711c1d33bf3f9d58969816bb2b06c77488ecf9812e79ad2158b9d102c"; 472 + sha512 = "6aa4de8f06c227dd22bf1e1f3f8f4572aafb499e3d30fe5b528d24ee905d8770d177d8ed954e1d3e8ad94aa6e716d31918cea0a7194729db2dc51cc40078091d"; 473 473 } 474 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-i686/an/firefox-51.0.tar.bz2"; 474 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-i686/an/firefox-51.0.1.tar.bz2"; 475 475 locale = "an"; 476 476 arch = "linux-i686"; 477 - sha512 = "6aa27e98598b8aa89c5f4b09bcbd86722e0ce3fd54d428814ccde7630a1a34cf593550cdd201d0d4dab53c3f185ae82ff2edae9b10f63d0773c494f8b89be931"; 477 + sha512 = "2b9b54b35abc72edfa64d957a9b0d95cc5713a4b36beac47464d4947a0a2e640664fecbcd8aa579df2353f6836e0f81d4674fa16d33e168a4adbc002821de4fd"; 478 478 } 479 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-i686/ar/firefox-51.0.tar.bz2"; 479 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-i686/ar/firefox-51.0.1.tar.bz2"; 480 480 locale = "ar"; 481 481 arch = "linux-i686"; 482 - sha512 = "1a4ef1198431566aeda1ead37c7af435834ffe60530e078463c7ec239a1b9cd8cde76216f90920628b7db12459deb25b9b56907de9f29444fe3c70ee02d76624"; 482 + sha512 = "44c966f2563538178b1cd0950bead8d2df67ec0425ca7327e9e4e2cff7bebac06aeae5d26503c1339d7ac59f2e01520a6a1a7205d948d8febcc953bf30d56af4"; 483 483 } 484 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-i686/as/firefox-51.0.tar.bz2"; 484 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-i686/as/firefox-51.0.1.tar.bz2"; 485 485 locale = "as"; 486 486 arch = "linux-i686"; 487 - sha512 = "028353834513d8b693f1bc053dafb4cf31f038b3c2a58c48454b5990bfc235712ba5c64da0390a9ede4a046167b5ddb5aa24cb86be5ed8272dd7dc5fce7eabe6"; 487 + sha512 = "99cf367af60162c073783539eb99afda545cef701616ae33ed66994c00052cf90812efd5c874a8b98dc2c51dba8330ab8ce99176858f6cc5ae640ab2fedbc210"; 488 488 } 489 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-i686/ast/firefox-51.0.tar.bz2"; 489 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-i686/ast/firefox-51.0.1.tar.bz2"; 490 490 locale = "ast"; 491 491 arch = "linux-i686"; 492 - sha512 = "be3338ad2a7b86bb3424984860009f9035888e86dabdbf5beb47f3020504c888d5aead0b7f818c00b373a33a73fea48d0d4d9ac549009f37a897f76121bba667"; 492 + sha512 = "536d4bde6cdd888bd06f844f16d16fd15fbf1a7743f8dae2240414a348e64568959a7655f0f69a0338826154b959066e1d5097cb51fb8e59f6366a61c6091b40"; 493 493 } 494 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-i686/az/firefox-51.0.tar.bz2"; 494 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-i686/az/firefox-51.0.1.tar.bz2"; 495 495 locale = "az"; 496 496 arch = "linux-i686"; 497 - sha512 = "c775af957145fa138761bdf0d5c8e76b59a0c496a46e9bac708fad7b70741b337e2d639bbab9536504bb20bf8e889fe516d129ccc301df6a405ef73c6d5d39a4"; 497 + sha512 = "4c46637588a9b0874e2982ad4130bc42c3a4b2defed8ee81e4e86b06deb66bb9e9b877c381de4f247e8e13992891be2c5a01dcccd7b62655a26fc62ddee1c9b4"; 498 498 } 499 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-i686/bg/firefox-51.0.tar.bz2"; 499 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-i686/bg/firefox-51.0.1.tar.bz2"; 500 500 locale = "bg"; 501 501 arch = "linux-i686"; 502 - sha512 = "2e38d0de9d284514803afe24e697ad4491bb27b386c0a0d032db5e175d3b7d2dc1a3f29a874c9b9661951817761588491578025adf675545a7e3c1f1396d5efa"; 502 + sha512 = "a8fb6c9f9c7041e833b6f05944b9769cb38565a773817962dc7cc0698c85b15c5f9dec6b354edbf0baa34101d44d33057e6bb78364ae294989b3da8d88b3c605"; 503 503 } 504 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-i686/bn-BD/firefox-51.0.tar.bz2"; 504 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-i686/bn-BD/firefox-51.0.1.tar.bz2"; 505 505 locale = "bn-BD"; 506 506 arch = "linux-i686"; 507 - sha512 = "cba31a0dada3915105ef0a000040040f10cdb1908402fa41065266575db5ee7996a49e373f289524216b7e2d3b65fbaf1ba201bf73d1d5a6b844df9e5b305ed6"; 507 + sha512 = "deaf8b9e7a825c62ca4a7135e070f0be616e7e9b4387976edd7492f4b40d94a57ff2db01d5ad2546831fde9a7ed346f298ae3e1ca2c070b723aec9cbdf0260b2"; 508 508 } 509 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-i686/bn-IN/firefox-51.0.tar.bz2"; 509 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-i686/bn-IN/firefox-51.0.1.tar.bz2"; 510 510 locale = "bn-IN"; 511 511 arch = "linux-i686"; 512 - sha512 = "127b84f3e3dacd303f9341ae90239a1077039fffbda642c619c1225fd13687f4e5068a111b84b02afb61b36a4fc8fa09c8ff9979eea263c41e8115108148d599"; 512 + sha512 = "da97d24ade2c241ba37ad20b1a6efc4a3742c218e4ccb8063e1255afcb4e03d77cb3f14b5591e7235ec42318f3e509d3c6b48a9bb94c5ac2c5e82bd270fbb3e5"; 513 513 } 514 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-i686/br/firefox-51.0.tar.bz2"; 514 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-i686/br/firefox-51.0.1.tar.bz2"; 515 515 locale = "br"; 516 516 arch = "linux-i686"; 517 - sha512 = "65dfbc7ec3c54000ffff66bc28191fdec7e29df43e6856c81a999adc1d8bf17c645204064932548b47822e779125ed171ab8d22c02ade3a64ce2327d3b4bdd94"; 517 + sha512 = "6780103e36db348986fc3a442bb32afb1cfa238a800eab81d6b0629452d6915a6b199501c53730143cd4fcffa97a96718dd6be10a3fa10db6145c7dd0c5663c4"; 518 518 } 519 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-i686/bs/firefox-51.0.tar.bz2"; 519 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-i686/bs/firefox-51.0.1.tar.bz2"; 520 520 locale = "bs"; 521 521 arch = "linux-i686"; 522 - sha512 = "ed542247e77146515d5a808d745769cd0f76f950ec6029e2a7673d2fe520e2d7540921f5e8c9c6c7681d2cb08f63e742272c3f4daf55c6ef0d8e46195ae597af"; 522 + sha512 = "f9a0bb76c68ab8d78e095f9e41d95875f76f2052e9ad1e06dd8b6d16a70d35db91f109ad20c3c904b1a1190aa5c851cace0c56ac253c72b97a2e45992d783014"; 523 523 } 524 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-i686/ca/firefox-51.0.tar.bz2"; 524 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-i686/ca/firefox-51.0.1.tar.bz2"; 525 525 locale = "ca"; 526 526 arch = "linux-i686"; 527 - sha512 = "0cfb11b0d869b0466d477ac99e4dc65ee60f0d2d08a8af307c2c149e2d10bd8df17b16024947872d5b4513ed5b0188716dd5d23132429a180209d187b62732f5"; 527 + sha512 = "b246544190cb1d6336046df019a21e84d7cbf360d96e4b9259379b5885e870e55041916534987d12cc7c215c46524a48ea8085ef09f2d5286adc76be4070be92"; 528 528 } 529 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-i686/cak/firefox-51.0.tar.bz2"; 529 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-i686/cak/firefox-51.0.1.tar.bz2"; 530 530 locale = "cak"; 531 531 arch = "linux-i686"; 532 - sha512 = "92b08671ddd98e4ee1158dd0fbbd0ce0d45794732f34a3ad43f8698ed2085fd4e1b5124da3ad47fb1ed01ea372655a3d04b82200b8af5cc0ad997c61dc2dd855"; 532 + sha512 = "98ea4dde99fdfe6f1b18e39f1d5d9eb5c805c7f6287fe6c1206b71622df184c57982560fe836493d351bb0ab6fdd37bab41e5f89be2a18a6d705595f618a507f"; 533 533 } 534 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-i686/cs/firefox-51.0.tar.bz2"; 534 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-i686/cs/firefox-51.0.1.tar.bz2"; 535 535 locale = "cs"; 536 536 arch = "linux-i686"; 537 - sha512 = "f5bef965360f84821f3b39990c6dcddc12f52851f1d33cc8d72d8772e770ced14784a1e29667b7047f3c9bb9510086eec2f16d2a4401c2b0cafc6b1275c00b28"; 537 + sha512 = "7b8dac698df7c415ad1b200ab437119fa39ca7a601c241145c0f2bffb89a5b97210f4f2173ad626818f006bf5f7ff5f3571911a2058f224326268bd53f11cee5"; 538 538 } 539 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-i686/cy/firefox-51.0.tar.bz2"; 539 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-i686/cy/firefox-51.0.1.tar.bz2"; 540 540 locale = "cy"; 541 541 arch = "linux-i686"; 542 - sha512 = "d6bae2da5f69e95ae8e751653d66917571279f44810666553bb7dde4cd41af954c0002276afe7d28dceb83210877bc19db48d7fb7498cefa256e609201e89db0"; 542 + sha512 = "30f1f7453f62bc18cb65d76590e6a780757600c7bef187debde4a1f68c1355148fd2dc4b63e5b98f6516f6542b47c1165ab594dbda0be4c5a2dc6a8d948db4d0"; 543 543 } 544 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-i686/da/firefox-51.0.tar.bz2"; 544 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-i686/da/firefox-51.0.1.tar.bz2"; 545 545 locale = "da"; 546 546 arch = "linux-i686"; 547 - sha512 = "bb705294c74406eb7dd50dc6a9b70acc7db297e1bf4c4087523a5f6ce653c0e98fac64f0b9bc34442c8cb8d2da3e5077c06b72495a83ffb0a1c5dac04cc3ec36"; 547 + sha512 = "00daf69b001ecac3fb11c410fec9619e7f9b9ad32fe40fbe1baf96d555678d3c6addf78d55ff6c607e525618931e441276967b92124fd8c0ea5857d2880f8b31"; 548 548 } 549 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-i686/de/firefox-51.0.tar.bz2"; 549 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-i686/de/firefox-51.0.1.tar.bz2"; 550 550 locale = "de"; 551 551 arch = "linux-i686"; 552 - sha512 = "c77daf84ee3bf5f3d04039f897c603cfb5d067f6da1dc767d2df6a29a7ea479ec69814d9e7e83be94285970b69ff700e972d526b5fe029258a3adf592688c1a4"; 552 + sha512 = "0c7cb4ea4929d7f807eef1a74ed1e9324e2e14c79651bd6ebce523d9c8668111304556aab2656ecdd6fa82028304439782ea9f654ee2108019fa5238e707b61a"; 553 553 } 554 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-i686/dsb/firefox-51.0.tar.bz2"; 554 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-i686/dsb/firefox-51.0.1.tar.bz2"; 555 555 locale = "dsb"; 556 556 arch = "linux-i686"; 557 - sha512 = "c95d409c97e65e4ae8ff5a57c1e626b638096801c04eb70b3d0f737f7ea66c0572327760db4595ab05025b727df8be233df3bf79e9e79504df2b7b26423af8c7"; 557 + sha512 = "53c2ead4d133f3b69ffb32ec7f6ac037d30e313cb85a6baff97ca997e3fccb0bc44c7258cb21e03231cd2283d8cfe50d0f6d1d64489a9b1e12e0a69fc57d6271"; 558 558 } 559 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-i686/el/firefox-51.0.tar.bz2"; 559 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-i686/el/firefox-51.0.1.tar.bz2"; 560 560 locale = "el"; 561 561 arch = "linux-i686"; 562 - sha512 = "0008bf61cbaf9f79318ba48ed34e5d63e26cfe8876e7faef410e5953b8eccef9ef2380a8796d0fbea326a6ed8d4c1ca4c437db46a5b8981d7c05788d054bff58"; 562 + sha512 = "088a6357c7e0fbd0060b8ba1369a0611c896ea2d5a23d4d38d7803c6ca9871807d9453c9a831762f27cdaa43a9827097c344441d2da1ca03aebbef922d0b1e31"; 563 563 } 564 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-i686/en-GB/firefox-51.0.tar.bz2"; 564 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-i686/en-GB/firefox-51.0.1.tar.bz2"; 565 565 locale = "en-GB"; 566 566 arch = "linux-i686"; 567 - sha512 = "7069ae86235e354b0485c7a2764915138dd030496340fd4717b37c47ac109e452a41c13450e7c1520d698f0e2aa036919516a6473a1ee5c3f6e14fb45441b7e6"; 567 + sha512 = "e65c80fdfb097deb980df7021908e8db839b82f89b5076f213a562572e6e6ad7072fa88cef68c9d1e5c6e21925691e90ad6a9ce96fb4d71b3da4b52d11fb457e"; 568 568 } 569 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-i686/en-US/firefox-51.0.tar.bz2"; 569 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-i686/en-US/firefox-51.0.1.tar.bz2"; 570 570 locale = "en-US"; 571 571 arch = "linux-i686"; 572 - sha512 = "509ce17388209ea19197ec42bee61b4cb9e31d80a829de3e7f751f7cfad9da5d6ec4827ca47499e40662a1eeaa4c74726ab687440a99f9c0fc81415916aadf33"; 572 + sha512 = "119643dda37b8ea552450302aec2b115c2fedaf707acce9ac314b464f47d03ee76358f63c30cf788298fdb6a25af0efbecae1ab1e72d2cb53190c648154b2e4d"; 573 573 } 574 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-i686/en-ZA/firefox-51.0.tar.bz2"; 574 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-i686/en-ZA/firefox-51.0.1.tar.bz2"; 575 575 locale = "en-ZA"; 576 576 arch = "linux-i686"; 577 - sha512 = "30598fca931008beb5f7d01f1ba24f61192f2b2cc9e8cc073f7ab3318b4b5c82ba4abd9324a46126ab9fa7adc7d207947d63eee8211aecf7cb5d5d360dc7284c"; 577 + sha512 = "adcbbc09fe61f04daef46c673b4b7e294ad8c107b76ea1a22e46a1a5ab5eb3e84aae711c7b9edc882be67c529abd26f6183583da3423afd152325a98742763ab"; 578 578 } 579 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-i686/eo/firefox-51.0.tar.bz2"; 579 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-i686/eo/firefox-51.0.1.tar.bz2"; 580 580 locale = "eo"; 581 581 arch = "linux-i686"; 582 - sha512 = "c887c7819cc2115a637f5454249061ee8a1b9733a11c70f0ef0e0ee0445c4bd072cd553f39dd830fc841f9893906a721b1288b1d7edea1ec437161ec5db1892b"; 582 + sha512 = "247f1b6f90de42abab245390a8a66fc7095ad058b6cdb5f930efc77d47e6b9c1062cea0367c266a192c64916cc8cf8fb55b09c35f92823131c22c35b0305ffac"; 583 583 } 584 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-i686/es-AR/firefox-51.0.tar.bz2"; 584 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-i686/es-AR/firefox-51.0.1.tar.bz2"; 585 585 locale = "es-AR"; 586 586 arch = "linux-i686"; 587 - sha512 = "3167d335115b1861debebb96fd9b190c959fe6d89c085e0c792bb33243cfb7fe80d82a1360a72041d5df422342b3abb4c97779bac85da1caad3e6ad1330af3e8"; 587 + sha512 = "4c456158008b7e355ddaecde20cd655b772164aa976abf612ac021ead6aa82420284dc6f16327f79cc12bd9c66854b8e5c9a6ae05f53b4e9901f0d6eff75d5a6"; 588 588 } 589 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-i686/es-CL/firefox-51.0.tar.bz2"; 589 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-i686/es-CL/firefox-51.0.1.tar.bz2"; 590 590 locale = "es-CL"; 591 591 arch = "linux-i686"; 592 - sha512 = "1c6cdd5f526b342b234a007d3861c54326edfcea40b06ee691c1bd3d0d9f49c9b426e98286a85736f67d1b328dedbcb27a80610cee63d95ab1eefccce166e723"; 592 + sha512 = "de45a4d7660416e8da164be585c468c24c4b80fcf0a602b93cd60556759aee619d59d08d58e2ecf28e86e5de31c2bd820905861b441d9ae1bba693204ba67779"; 593 593 } 594 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-i686/es-ES/firefox-51.0.tar.bz2"; 594 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-i686/es-ES/firefox-51.0.1.tar.bz2"; 595 595 locale = "es-ES"; 596 596 arch = "linux-i686"; 597 - sha512 = "d9ce835f0125063d0be546b9507a9ab00c84ddcc1a83f7a4a4428ec26e3ce5a308845884a6488212b5abe8901300e976068269db03de45a6bb3b684ba9a6186f"; 597 + sha512 = "b3dc903cedf008894c3afa52e503ca5266094c4766925b725f761d19a0bf7dad0ef546b36c9581c4b42de32ecf8727f752b7d3023ff97a307049fdc54045bbdf"; 598 598 } 599 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-i686/es-MX/firefox-51.0.tar.bz2"; 599 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-i686/es-MX/firefox-51.0.1.tar.bz2"; 600 600 locale = "es-MX"; 601 601 arch = "linux-i686"; 602 - sha512 = "fb31254aaf29d8f843576d3dd1f7d9172ff3f021efbe862aba7409fb9b6269107d982219f519778d1bf8e984589b034fd948367f7d6be7c95b778aaf6ed71db7"; 602 + sha512 = "afc6090847e00c1ff9940516e7d15c048295e30e1055f9bae7f07990fb447d7ddb61a4ffa336b6f2283cadc972df86fd59f5abaa07d0399d999b8fd0c8d8354b"; 603 603 } 604 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-i686/et/firefox-51.0.tar.bz2"; 604 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-i686/et/firefox-51.0.1.tar.bz2"; 605 605 locale = "et"; 606 606 arch = "linux-i686"; 607 - sha512 = "24b7e8070c92cec844fd13e5fbab3abf549bb2685fd7a09397c8a6a0c1742fb58eaace43542b3f7399639348a5c34427f0b162114cdef99946e673108e899e13"; 607 + sha512 = "1258aa0f0eeb2902ccf86e5aa97e5d174e926b57adfddced2667a9e3253a103866431dcded2ecff7411ff4f4e1866aef133eaca0921738a0bbf4a98faf813880"; 608 608 } 609 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-i686/eu/firefox-51.0.tar.bz2"; 609 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-i686/eu/firefox-51.0.1.tar.bz2"; 610 610 locale = "eu"; 611 611 arch = "linux-i686"; 612 - sha512 = "ec30e182f42fa2c3a6ff09b8354fea55da91748b9ab024466ec5fe9dfee47ba0b8732d43c61858c4e46a48d8bca9b45a03e972afbcbac113640b44951a67b81b"; 612 + sha512 = "540cf167ac1739e1c90290dfd0faec82924cd80e1db1d700b9a7e4ebd064895830b1b5675c5800eb4e5cc8042373e5e1b174d6fcbd0751204853e94809b89d5e"; 613 613 } 614 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-i686/fa/firefox-51.0.tar.bz2"; 614 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-i686/fa/firefox-51.0.1.tar.bz2"; 615 615 locale = "fa"; 616 616 arch = "linux-i686"; 617 - sha512 = "89e96bdd179fd5e3aeaca6967fb40c1c3310fb390fa62a4dc7ab419cf57ecbf11cf57a01f0ecde64a387a784135f2a6e90c7ff1ee9953508fafe6a8bee236309"; 617 + sha512 = "0a3ca143ccac6d9fc950d9345839edeaceb68565b5f86706c3f39f1cab5aa74699f1f573c6768869bcbc0335042f11a8651401a0e6cff0849c36878b08e58a89"; 618 618 } 619 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-i686/ff/firefox-51.0.tar.bz2"; 619 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-i686/ff/firefox-51.0.1.tar.bz2"; 620 620 locale = "ff"; 621 621 arch = "linux-i686"; 622 - sha512 = "ebe06e58b607791f91522314558506ba4179a23cc3ce64418bee68aeacff6680571013a8af99645f53761564b5b8672c3ec39ff879731c37d2ae69cc81144879"; 622 + sha512 = "fd2588b2c179cfdbef55f43ca11218673a7ec818cb8e5002ba7d6957ac61dd4d1f296b00f2d39de85a14c5fffe3500ba939edadd15374e0eb6a9183d3fb4a856"; 623 623 } 624 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-i686/fi/firefox-51.0.tar.bz2"; 624 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-i686/fi/firefox-51.0.1.tar.bz2"; 625 625 locale = "fi"; 626 626 arch = "linux-i686"; 627 - sha512 = "c6acadf1d77cb9b82918dba4ae6421bfd2054d20c852a08bd28e2f908a6d2acaf9c29fe6b347e9493fe2ff14a5c0e9f4896d1d0a91c4f4c23ad7817b1497eb04"; 627 + sha512 = "6dac643deb4db9139c522abf0b7cd86910d9f3783c3a7c41c60d2f017af742b495d64dd80e5945f045f7ade98e2668a5b5a684f61fb768cbc6ad7a22975a2246"; 628 628 } 629 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-i686/fr/firefox-51.0.tar.bz2"; 629 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-i686/fr/firefox-51.0.1.tar.bz2"; 630 630 locale = "fr"; 631 631 arch = "linux-i686"; 632 - sha512 = "75f0efa7a2c4954dc86b5cf4b0e2d2a38bafc9f484d9cb455168ad9b80b2e8201175d5d1ae398da3fd2d5fdcabeff881fc12970cbb48b33175d0d180c90cfdce"; 632 + sha512 = "161bd06d7299a8dbc08e767c043864b77670f6919f028a746312709b84808d56d5f38558a3a4ddea19e0ebb03f283d020de8c60df9a2e7d67468a1d96fd08dff"; 633 633 } 634 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-i686/fy-NL/firefox-51.0.tar.bz2"; 634 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-i686/fy-NL/firefox-51.0.1.tar.bz2"; 635 635 locale = "fy-NL"; 636 636 arch = "linux-i686"; 637 - sha512 = "77e76e4f485a886a9e32c9ba9663a51d0bc25170237b48a5a42bd895592ad04170d415313eae2a7573495d2a15603e5195c014be621bdb6e078bc8d58f668bb0"; 637 + sha512 = "b77fdd714cc5076981afcaec137065527f93e500a074b9a0beeb7ba85c78233d9a52735648688622f9a1e137a4e097081489d6307c5454330ac931e57f2ab469"; 638 638 } 639 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-i686/ga-IE/firefox-51.0.tar.bz2"; 639 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-i686/ga-IE/firefox-51.0.1.tar.bz2"; 640 640 locale = "ga-IE"; 641 641 arch = "linux-i686"; 642 - sha512 = "0f9745299df4b31137286ee985ea526f33a127fb91a6568f7c2fc922c44e1cf83cc6e728fb1f05c7e68d3365c43045c61020261318a76100a716b7d35948bbc7"; 642 + sha512 = "265f422077a2ec1bd63a54295e6581ce1a559e9aab5b59cee79b4d38e1a494c6d15a7a1e4a211bdfe1c5671457a5ec8a8d67b436f31165f7b27e240bdaf2aec4"; 643 643 } 644 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-i686/gd/firefox-51.0.tar.bz2"; 644 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-i686/gd/firefox-51.0.1.tar.bz2"; 645 645 locale = "gd"; 646 646 arch = "linux-i686"; 647 - sha512 = "fd015052565985956dd89cd96b3f3148704010529db96b3f68a7eff3e78c813ef090d79e9b112710439fd07ee3c0745c1ecffb708a62c9b5c12cc40b4ce05645"; 647 + sha512 = "a0f9b3f528f189004eed28ff2a9582e8a992c127d62c20514afdad69bde793a6f63a12bd92fce9d900cf600147b0d8c462d69d2d9f48613d27997b1f3fceaa8f"; 648 648 } 649 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-i686/gl/firefox-51.0.tar.bz2"; 649 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-i686/gl/firefox-51.0.1.tar.bz2"; 650 650 locale = "gl"; 651 651 arch = "linux-i686"; 652 - sha512 = "4cd8b4aa4f5f450c7a8eff57592cc584300c64e8976544e5de3c16e358330d5db91c5ce504a2576654dee2f80557f8c439e359e8050518784846f0f8b9c36dbb"; 652 + sha512 = "605fdaac3f85a2c64eeec3373fe8a6ddcf78529398f76f5c2ec06a10ea783d2a7962f03fae9dbbc08dd7c4aa8eab07bda55cb2f2f477f4b9971d7149d4a72dc7"; 653 653 } 654 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-i686/gn/firefox-51.0.tar.bz2"; 654 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-i686/gn/firefox-51.0.1.tar.bz2"; 655 655 locale = "gn"; 656 656 arch = "linux-i686"; 657 - sha512 = "baba3e61db17d04224c08595de42c4c76ef7e0c05e259772f8265c07f311613552024256ddf0e209358be3780d3fea97b20854284b3a15d8be3f52193df86501"; 657 + sha512 = "126eb2659750de31bdd346a0e1a255bcc1bd3e6e310c3739f5ec345a95cd2f1f78e381f6ce3d9a1079d3dd07ebc4cbab4af8544db746f42375f02e6a224a9b77"; 658 658 } 659 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-i686/gu-IN/firefox-51.0.tar.bz2"; 659 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-i686/gu-IN/firefox-51.0.1.tar.bz2"; 660 660 locale = "gu-IN"; 661 661 arch = "linux-i686"; 662 - sha512 = "5423af4164dcb39954cf32f6ec6aca508d06b3fde8b9946ce9adef03877625db3567000ed5a1e812c5accefcbfda3c89d332e7e3cb373e89d6d7e3be664d63e1"; 662 + sha512 = "12e7b20d5344d9b866392814aba44ded081c200543ff7db4653df22358f4627b9cb93f1e93ca546b3eef864787342a02ab996b10248eaca8468b70f2347c358e"; 663 663 } 664 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-i686/he/firefox-51.0.tar.bz2"; 664 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-i686/he/firefox-51.0.1.tar.bz2"; 665 665 locale = "he"; 666 666 arch = "linux-i686"; 667 - sha512 = "7ed6b2d4c108a3a6bfb146bd35682f5c7ddf1c2f84998bc70d362352d6e0ddf2887bf6c84d9dbcaaf6289cca0c29036c4295d4d3b45c52c613ad8a9ed51c334a"; 667 + sha512 = "1f0a125f1febc79218cf0bf929a6f6e3ae7c0046ad738cfd6a4ca84cacdb4a7b6a52e1934ac6b9dee25860e23b944d2636a176ca47439e7920fc45fe026a88b3"; 668 668 } 669 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-i686/hi-IN/firefox-51.0.tar.bz2"; 669 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-i686/hi-IN/firefox-51.0.1.tar.bz2"; 670 670 locale = "hi-IN"; 671 671 arch = "linux-i686"; 672 - sha512 = "f85636573a871214848cc1785adf6b57a993d0ceea7920654a5b6e92fea62ef91a637a2baeee03e2b5a54469447307b2116dc85338493756768469920deec284"; 672 + sha512 = "cef6b463aa184cbef529c985e916f5ccf33bc4d8bcf693c685e92f4b211044efab5cd9966eafe75c0f933c716c3c519fc3df84653cecfe2a8452025e2674ae23"; 673 673 } 674 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-i686/hr/firefox-51.0.tar.bz2"; 674 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-i686/hr/firefox-51.0.1.tar.bz2"; 675 675 locale = "hr"; 676 676 arch = "linux-i686"; 677 - sha512 = "ee4474ceb010040153b9527b4455846b4486be09d8ffbb5604021ace790e4f8937a3ea358cd81513aaa515d5c546f323a309c4afb0acf8092f88d7ab5b4ef96e"; 677 + sha512 = "591e79886225686fcec87dfba67548decd953ebf8a06005e76ddcce545d6b060300ed7cd2e8abe222a5900f3dc44e81036356bcb7471a9e086a320946cdc8cfb"; 678 678 } 679 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-i686/hsb/firefox-51.0.tar.bz2"; 679 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-i686/hsb/firefox-51.0.1.tar.bz2"; 680 680 locale = "hsb"; 681 681 arch = "linux-i686"; 682 - sha512 = "bc67effad488c2baafc516e51faa2b897d167dff34d8153e4cc3af6069a1621284f497c8135336bb4a52294f4b3cb0cf6aee165fe2a0b09106948a0537be7aff"; 682 + sha512 = "722a4f539dddf2d076d2e6eab4c5eb50229bdf0142473ce13488e106a115df2470b381b6f68827a80febe200a274de9a2532cc27ed61498051186e4c1b6e6e85"; 683 683 } 684 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-i686/hu/firefox-51.0.tar.bz2"; 684 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-i686/hu/firefox-51.0.1.tar.bz2"; 685 685 locale = "hu"; 686 686 arch = "linux-i686"; 687 - sha512 = "0b38ef74627415300a6575f73c9bfa8eaf5672e82e98524e02f9d79a98d817b217e1238ce485249b0d094903d88c545e1e5469a4a0593322273db5c88e456a01"; 687 + sha512 = "992beb0c027990939a0536fcb77dd6a04f3cacac584df3349fc9ed3c06bae3b162bc530c1a4ec26a39240f8db0bad84686d4352e273d495c6d0f69b23ddbdfc2"; 688 688 } 689 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-i686/hy-AM/firefox-51.0.tar.bz2"; 689 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-i686/hy-AM/firefox-51.0.1.tar.bz2"; 690 690 locale = "hy-AM"; 691 691 arch = "linux-i686"; 692 - sha512 = "d492943011b7ea58e211d4a4d5cede973d02928519849be8cdd2287edd92b45d963368dfa556b811cd1353f048e406a1e907899c89cab29c7e28200b5518eb15"; 692 + sha512 = "00ac6027b5dac840325f6bb21a13383cfc417827eb14e21948b768062eea52fda1b3b4c9d87e39255dd8a21d05e1120d0f39d3fd878edac9eb93c698be0f7682"; 693 693 } 694 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-i686/id/firefox-51.0.tar.bz2"; 694 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-i686/id/firefox-51.0.1.tar.bz2"; 695 695 locale = "id"; 696 696 arch = "linux-i686"; 697 - sha512 = "b0cf8c192350878ab3502ce077dd0ac85f21329b7bb96e3d3040cb959b20fbd4a21c315d8c2c528eadc9388af63e8f2789b3fa610269e658145afe5c4069d834"; 697 + sha512 = "3d6a12dfc4377cb180d4231c26df99058860103aa5395ff777799766f9786093cad0fceb9b72fb73325d1d1aa60b26e9be4cdb00cb875039fe2b0ec455f444a8"; 698 698 } 699 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-i686/is/firefox-51.0.tar.bz2"; 699 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-i686/is/firefox-51.0.1.tar.bz2"; 700 700 locale = "is"; 701 701 arch = "linux-i686"; 702 - sha512 = "28e18d3978a7c4510eeea68fec06014e8ac6789c6297048002ec85317e9e1a304dbe530d93d970bc1f4166be91f6ed7fb4961270e91533dc0d9c8314828b06b9"; 702 + sha512 = "fe74d79704315a2d8568280e56dc735050e91de4467989e81db3b65a6d42ba9c6401b1aa0e50bfa3442c902c8b5b5feb3e9d39d31ada0266f33993ab9fe2522f"; 703 703 } 704 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-i686/it/firefox-51.0.tar.bz2"; 704 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-i686/it/firefox-51.0.1.tar.bz2"; 705 705 locale = "it"; 706 706 arch = "linux-i686"; 707 - sha512 = "76b25e5ce6fdc96143cbe20e348c45e13c519e0db506ad8f39084734d33bc29dfcb6ce7e4e13c33890c1a6d8d69ae886324e63ef9d3c697f97713b8f4b95f65d"; 707 + sha512 = "60b419cff2d17621fdeadb7b8f3dd5123a6a1aec1cae8ad60ed0e516d31483e7cd827cecbd10cfc8262b662c7950097a6da87c873a0c4cb4faa46c08b1467410"; 708 708 } 709 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-i686/ja/firefox-51.0.tar.bz2"; 709 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-i686/ja/firefox-51.0.1.tar.bz2"; 710 710 locale = "ja"; 711 711 arch = "linux-i686"; 712 - sha512 = "01887c81b4806356041be5ff3c7e2a5e9fd3903c3ec3ab8c2f578799375f19bfaaefe18bc41f3055312a7654f91b67f43d1eaee609024cb83a482b05238cfebd"; 712 + sha512 = "43486b8e0044838e0fe57669e86308081a6a9f6e5dc77ea3cecd881e9dea95f9e9bfc7bd217f0ff6bc9d2e16d2bb7ba193e8c0d5fe8a76e5c7f74971a71990f4"; 713 713 } 714 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-i686/ka/firefox-51.0.tar.bz2"; 714 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-i686/ka/firefox-51.0.1.tar.bz2"; 715 715 locale = "ka"; 716 716 arch = "linux-i686"; 717 - sha512 = "595e766c2be521013f755f85dd33c9aef3deeb6824b170fcd948d6d8afad556d4b6e6772041227bf26de23b8a103c39c6c62326c6d30454acd9f73706c53780f"; 717 + sha512 = "f94aa635d7804ea9145e88d2bb6c9ba0a53b33d02def9821ddb9693f2461858bbe1f05b26f2a60b019743dec3f48305fb4fe2f8ba249e9baf50b13c25fbd38ae"; 718 718 } 719 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-i686/kab/firefox-51.0.tar.bz2"; 719 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-i686/kab/firefox-51.0.1.tar.bz2"; 720 720 locale = "kab"; 721 721 arch = "linux-i686"; 722 - sha512 = "49b72ae5e248d55aa20d719b57ebb569ef7470761aa5358a9ff46e495868507431ba2d081de2ee170cdaf7d6c5a20aaf5a3a463e0ac8ce772a7369a5049b0aa4"; 722 + sha512 = "a88287ed1d391986ec290c09b7b04fd484c1ea6b78669dc430ff8aeb63851fe8bc5e51896a8afdea648aa70f9bbc7f8d3ee82868766d2477d50c23af21d17640"; 723 723 } 724 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-i686/kk/firefox-51.0.tar.bz2"; 724 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-i686/kk/firefox-51.0.1.tar.bz2"; 725 725 locale = "kk"; 726 726 arch = "linux-i686"; 727 - sha512 = "04329c30d403a516ef459beb9290c0dd3db21de2cc3d2258423771146724dc6ecb97174d0d55520943c5558d1160974937de0d6f6192ef85ec9a23f1770a5217"; 727 + sha512 = "0170abbaf6d9765c5bb6bf8b1667b51ddc8694f5470884d864b259f23ca824233459cb5a19e8f2411d89df07bc860fc89a16d7ace3f87ceabb50a487c5829eab"; 728 728 } 729 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-i686/km/firefox-51.0.tar.bz2"; 729 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-i686/km/firefox-51.0.1.tar.bz2"; 730 730 locale = "km"; 731 731 arch = "linux-i686"; 732 - sha512 = "7773700766cd12c320981b97510743d5414a0ad4c0bc3eaedf2dcd2f48a8bdfa367f68d5ebfdfa1f9df19fd3596da17b249bf41fd9ade6ba4d547dad2e2ec8e7"; 732 + sha512 = "c7239821e3aafbcbcb8c8ad46e0aa981ad77725f034105d6aa0566f3375639b77f9201391fd91df440a402d2465cf000695e495c9e678c5dfa66c085b7fc09e6"; 733 733 } 734 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-i686/kn/firefox-51.0.tar.bz2"; 734 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-i686/kn/firefox-51.0.1.tar.bz2"; 735 735 locale = "kn"; 736 736 arch = "linux-i686"; 737 - sha512 = "43a84c6aa11c9672c3c5a248306d1cf386a37a14efe5bb3c6e469d6dea8c52b31d4222ff9b54cba4a934569d322b2dae2942acda26e91f9a1eb63000f64ac9f2"; 737 + sha512 = "8088cd7a361ea4b231b61d24b289816f8c5e689eeb1b4f063df70d540f44065a0e9ce284db020a44704b48e2276dd5c555537380e39d2854327a64390be0d37d"; 738 738 } 739 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-i686/ko/firefox-51.0.tar.bz2"; 739 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-i686/ko/firefox-51.0.1.tar.bz2"; 740 740 locale = "ko"; 741 741 arch = "linux-i686"; 742 - sha512 = "4d7d43042a54e495be869ede9904f54ed5dfc3685a693564fa1fd9805fecb5d617659eb68b09f21cb8c976369f62a9e76fea56111919ac4f19b5bd4252916716"; 742 + sha512 = "676ac2be52a7980d007f498e3efa1574d68415ee5b8648597345de22b6fd80df483d9b8a309a4ad22f4a927d45d1c9d9b21447fdb1b8fa57f420227da5a72c18"; 743 743 } 744 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-i686/lij/firefox-51.0.tar.bz2"; 744 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-i686/lij/firefox-51.0.1.tar.bz2"; 745 745 locale = "lij"; 746 746 arch = "linux-i686"; 747 - sha512 = "b8388bfb293177564c09509e8db3f2e2151fb735fd4ddb55adf0045ac096e5e17753632ccb8866e08a0b5fe5edda967c1c9958c7361907bd08b1b27191bed729"; 747 + sha512 = "e93d9d9337299528d569810388a5bc1dbd53d083df090a9308d4cf60f138aea786f7d96ca8b62612252deaa092176cdcda5280e04a9b680f3d63a166dc2478f0"; 748 748 } 749 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-i686/lt/firefox-51.0.tar.bz2"; 749 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-i686/lt/firefox-51.0.1.tar.bz2"; 750 750 locale = "lt"; 751 751 arch = "linux-i686"; 752 - sha512 = "fd9ce324c49dc042be215167272eb7f81c653e5a03dbe09bc573dd1a8852406d0f9e002a7db2e04089004e9f30e86e989f8556527e87efe8cfb5b33da5931bad"; 752 + sha512 = "6c4a21aa700cf9a551f57516349d0e1ac490713fbd51aa8beeb0de6506c7ff5c06788a196132e53b4c4ab314ccd6598ac03df9a99a61b3d4998bfca86d1261ad"; 753 753 } 754 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-i686/lv/firefox-51.0.tar.bz2"; 754 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-i686/lv/firefox-51.0.1.tar.bz2"; 755 755 locale = "lv"; 756 756 arch = "linux-i686"; 757 - sha512 = "07f4d39b46c8e96908a0d7a144874d8a054c115941014c8fdadbdfce84cfd468226c8da2e82c2f61854af1abd645986b42e038768f3644208afeb4fa5b376088"; 757 + sha512 = "b41fc13a30af028f605eca804640a085e711c810debcd44cf148fe142bbd410c491b9edd7f0792200e77c3cbfcb3d75a3cd4aadf8bda9837f1006ab919540c4f"; 758 758 } 759 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-i686/mai/firefox-51.0.tar.bz2"; 759 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-i686/mai/firefox-51.0.1.tar.bz2"; 760 760 locale = "mai"; 761 761 arch = "linux-i686"; 762 - sha512 = "3b16658b9a09d9334ce3da90d05e8af0bd163fb7292c6b858a9098a45305e1b6a689687ad02a47259610b0269ed64f58ed0a3611676f5f282bbdc5b048e13351"; 762 + sha512 = "ef6ed49b36976b243452b866315b664d4fb949dd54ace116d86d1de74df5744c1aefb69bde7926f5b2cd78d904596c80b53971bc21e3e893201a25466abd284f"; 763 763 } 764 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-i686/mk/firefox-51.0.tar.bz2"; 764 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-i686/mk/firefox-51.0.1.tar.bz2"; 765 765 locale = "mk"; 766 766 arch = "linux-i686"; 767 - sha512 = "e4c13520ac45271fe9d11f7f89fe50ef6299137084a0ea46c0ec4a3a64d1a1b311df4f7c54dd6a0f1d351e78e1d328039aa1d547f1bda7a4a386a60b850a4366"; 767 + sha512 = "28fdd392fe782836a47f8a547108990cba1796f92fdeea5f63e8d466e470b13b3fa0ca805b0de580b2620b3674ae1d25c3daaceac723179bea7da615de9dc0c4"; 768 768 } 769 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-i686/ml/firefox-51.0.tar.bz2"; 769 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-i686/ml/firefox-51.0.1.tar.bz2"; 770 770 locale = "ml"; 771 771 arch = "linux-i686"; 772 - sha512 = "342286c05b755482bf19b38aad1f288c0b333b99c39177bf846f46e22ee9b08914e65be2277939a400a514e6603613dfce0bbdecfdb69ceaa77bdec73d1e6082"; 772 + sha512 = "14c1e47a65bdfec98cc0fa3c1cb9ed58de49526fbc0b934ba2d4dbbed2ae6e3942c4f4c3f15a637156fb50347e62fd32bd661621171039a178167f7fb69bef64"; 773 773 } 774 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-i686/mr/firefox-51.0.tar.bz2"; 774 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-i686/mr/firefox-51.0.1.tar.bz2"; 775 775 locale = "mr"; 776 776 arch = "linux-i686"; 777 - sha512 = "e1c4b4e41aafc5fc015883b91bef7d94a8d2f228cd37692d35b10b509036b0cf434f9eee56f7a490db5e2d58f5602ffd63c6413d8220211253dce5fd4b805393"; 777 + sha512 = "8f42dbefce445d592946f91acc7cc7323a0ea1a3e3c023222146f7650f4f4ef7c416e833c40c1b911273ca8ba100f20f5a8882165532c62f1d8af6d0e03cb022"; 778 778 } 779 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-i686/ms/firefox-51.0.tar.bz2"; 779 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-i686/ms/firefox-51.0.1.tar.bz2"; 780 780 locale = "ms"; 781 781 arch = "linux-i686"; 782 - sha512 = "7ba605a491acba8d1dee3858e0c0ef19b66f95b65565e0fb4bccd7d46d9e01aceba01b2a59bcd6d2a58f0978f446fde838b21edd253afe3de9b856d4c0c1ea62"; 782 + sha512 = "05a23010aebce6a79129883102dad6d82ae941b2dbec92b2d1b532c52250f49122f11a8c0837f26e6a7142f88e4fe71b0133c9fe1cf88cfbb18eb66fa88e567e"; 783 783 } 784 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-i686/nb-NO/firefox-51.0.tar.bz2"; 784 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-i686/nb-NO/firefox-51.0.1.tar.bz2"; 785 785 locale = "nb-NO"; 786 786 arch = "linux-i686"; 787 - sha512 = "26d8bb5183dff82a0515936f33cfae5197c0bc3d90e2294622e37062d33c531a6508d0b129579dbfec13941e155d052a2a292591992bb201256a59c7a192bb9a"; 787 + sha512 = "c2e48ec2489e854f76200de5940a17000c80a6f93f5c797a6e0c7e43a76b67a82bbbf9d3eec917f50170522a92cf09a08a2ca25ca892bc452fa4d8cbc6fa3989"; 788 788 } 789 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-i686/nl/firefox-51.0.tar.bz2"; 789 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-i686/nl/firefox-51.0.1.tar.bz2"; 790 790 locale = "nl"; 791 791 arch = "linux-i686"; 792 - sha512 = "5b410bde9763eccfff227b0f667877997be6df08e73748034d411363cfef1fcd33a8639f5bbe883dc52bdb1dd9b728e217b1d4033b5ee3e7b2b5cd1d616b2b69"; 792 + sha512 = "975713ddd22a227ba289ade6a8b7e6141b2c4923de4b33f22711b2b816af2c5305aa43c7bceb7a2f7aa35a0c6e59e4dfb577ba8282dbd1a322ac99dec8245b91"; 793 793 } 794 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-i686/nn-NO/firefox-51.0.tar.bz2"; 794 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-i686/nn-NO/firefox-51.0.1.tar.bz2"; 795 795 locale = "nn-NO"; 796 796 arch = "linux-i686"; 797 - sha512 = "f4da4e20d6fec450669feb9f31a2f8a49f2670f24c88cab08948043331f8cca44908f25a0028d0a1d73707afb156cc763dbdf7726d427acdc8639066e9fa1273"; 797 + sha512 = "0918907a3ec9283c2d2d60db6d4d5efdab0f25b6c3522d8289bb46ca6f7b42a461342ffb2611e5e38e52f88846836688fa9f5b461d69f3c9f838413759f4ac5c"; 798 798 } 799 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-i686/or/firefox-51.0.tar.bz2"; 799 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-i686/or/firefox-51.0.1.tar.bz2"; 800 800 locale = "or"; 801 801 arch = "linux-i686"; 802 - sha512 = "75c69e7d49436dd14108ce1395236401157ec8e55e417bb56f54e0c601335cbe3613da69ba90a7a6f25cc658d36349b3273ec134a4011bffd955aa320fb603b5"; 802 + sha512 = "fb09ee90b4a4f97687310946b260caa8e115b6475305fbdef7d5d54d649d4f8cfbb2be5a3bd567f115f25ab294258726bdf34af25380c5cccc9647db0a523280"; 803 803 } 804 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-i686/pa-IN/firefox-51.0.tar.bz2"; 804 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-i686/pa-IN/firefox-51.0.1.tar.bz2"; 805 805 locale = "pa-IN"; 806 806 arch = "linux-i686"; 807 - sha512 = "2a219eab022bc38c51c0ab91cdf0058840d306a7b420367e2b887627d0cc9af66367cfdff8ea9d4868e3f6e8686db20dd268a5a603e73349bb66a620af594958"; 807 + sha512 = "ef266ef4b57c3efae929fb4061dad5768746383e70a813b5d0cdb32206aa2b5ffc6ef8fa91952d37b61c72c0477050642103f5c63bc0ed0001ec514e9e65494d"; 808 808 } 809 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-i686/pl/firefox-51.0.tar.bz2"; 809 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-i686/pl/firefox-51.0.1.tar.bz2"; 810 810 locale = "pl"; 811 811 arch = "linux-i686"; 812 - sha512 = "542093af3bee169ca314c592d456f0b8f350ab4ebdc203488ce6881983b7acb8c210c8d195e309a5c6936d43c2c2b2336638efae3ecbe1400bf3ec5c70494070"; 812 + sha512 = "f02f704f24109b34300ad7de8582b3c59a480d162dfadf7eb1d4821fa94e793978ec9f584468b3e0bc948adc1d0296b28dc7189e09752e5c2db31c7ce3596b76"; 813 813 } 814 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-i686/pt-BR/firefox-51.0.tar.bz2"; 814 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-i686/pt-BR/firefox-51.0.1.tar.bz2"; 815 815 locale = "pt-BR"; 816 816 arch = "linux-i686"; 817 - sha512 = "b6ad50d05e9023a8cad99000ff368fd1bacac1df5fb1400c44209f9af7a13234b262dd875ad84fcda3b9f52c6fcbaeb4d51363277d4eb09d917e25d790e45547"; 817 + sha512 = "4e8e8fad4dabb933392ecbda9ed5938a3dab018e95c11ce5f70eaa810ef64525d8e71d61a5203d1e6feb1fe198312eb6f929ce2f0dd4cc93fbc3006cfdf7e0a9"; 818 818 } 819 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-i686/pt-PT/firefox-51.0.tar.bz2"; 819 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-i686/pt-PT/firefox-51.0.1.tar.bz2"; 820 820 locale = "pt-PT"; 821 821 arch = "linux-i686"; 822 - sha512 = "dbdbece91863c98a2fe5e50961b613cc9c3989a519599b554e59bc7fcde86235deffa76381b317aa033af565c781894e0a7f4533cddf41bb14cb4abc93c6bc9d"; 822 + sha512 = "eecc2fe5fdb7fc8ce98f0df3a838d6c44d0471eb95fc27271bbcbea5178752e1d974c4e8f0b97efa2d9743fd7695286aaaf44015ae6b5efdfd334d57094b787c"; 823 823 } 824 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-i686/rm/firefox-51.0.tar.bz2"; 824 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-i686/rm/firefox-51.0.1.tar.bz2"; 825 825 locale = "rm"; 826 826 arch = "linux-i686"; 827 - sha512 = "b31b0e52f1b368271877fe56f868e64bfdfc4c5f1533883d90ee1b794cea8f54e7df2704f87a4f1913acf35e105ee5fbf4d4535474e1da1ab6919cf702d58aaf"; 827 + sha512 = "ed02a26930398b4b6e63a532fce29943b634568c6dc21ba931ae0e054c0b95eea1da8949f39f47272e7ff34c6b87caa14cff5ad4ebb956630a7178e2fbc3b440"; 828 828 } 829 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-i686/ro/firefox-51.0.tar.bz2"; 829 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-i686/ro/firefox-51.0.1.tar.bz2"; 830 830 locale = "ro"; 831 831 arch = "linux-i686"; 832 - sha512 = "6f86862438e13213398e5d4ac1a2bf0ade1d56d7ee0ccb217e8ba9383c237871caad4a6c067758babdd571b0bb936890681553cd481ae5790caf52b1b3246930"; 832 + sha512 = "b356ed1dd25084e1ebc5421c9925a7d6339d1bfff7d0fd69ab392b199a904cf31c8124c0ed3df3691be727492f0334b7edb3e1cec210f7eb84a64e37dd4d4847"; 833 833 } 834 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-i686/ru/firefox-51.0.tar.bz2"; 834 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-i686/ru/firefox-51.0.1.tar.bz2"; 835 835 locale = "ru"; 836 836 arch = "linux-i686"; 837 - sha512 = "ed01bb4eef1014d403626e4eb68aa1b86e0a54067c51aad5d0caa255b5cecac45d81ef535d2c50d72cc5568cf45f6cdb7eedd8d527e985e605614e395894a1f2"; 837 + sha512 = "da92e1e769dd673201d157bfdb4070fda84610ec2e313da7a44e75d33a269cd59927409a665689c5145f6e6f463246296aa070f2c471572545443c73f110714c"; 838 838 } 839 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-i686/si/firefox-51.0.tar.bz2"; 839 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-i686/si/firefox-51.0.1.tar.bz2"; 840 840 locale = "si"; 841 841 arch = "linux-i686"; 842 - sha512 = "fa3d1fb7c5c223e6195b2f65148db2eed268a3cef74e51a27e3e3df025d98209c1854cd393dfa1d8a7206c0aff966da981463b8b11880d76bc1b21498ad9d56d"; 842 + sha512 = "08499f564b5c05dca975201d2d8e32fb09385a3596af9e0fa2965968231bd93fa00158e2746769abb17c891f6059221cd0dfc3bfda11ae7df5cf54f013e73d02"; 843 843 } 844 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-i686/sk/firefox-51.0.tar.bz2"; 844 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-i686/sk/firefox-51.0.1.tar.bz2"; 845 845 locale = "sk"; 846 846 arch = "linux-i686"; 847 - sha512 = "d6d3a459e390f4b768de3017f611f619e98f93fd6676b77b3f83173c34df23ac8425b43a57fa79aba37e8f3f406e3507ce4d709ed65d0b41b4ff3a241d1892a7"; 847 + sha512 = "c6e778692f3d3d6c01eb61652cdd698192a7df305b6328d1627443e815aee5369ec4d2409becc32798debb3441d588d8d9ff4c76e3038e58d50c1ba812dd5567"; 848 848 } 849 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-i686/sl/firefox-51.0.tar.bz2"; 849 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-i686/sl/firefox-51.0.1.tar.bz2"; 850 850 locale = "sl"; 851 851 arch = "linux-i686"; 852 - sha512 = "578720764a2af9b62eccdad2a95b2233e6f81e1f4c321cc5c6fad0106ef8d8fe944f8e160b7c3386cb561e385e54d2124aac11505ba2e90af88c6f3a57e0754c"; 852 + sha512 = "a041cde5bf67eb46f328ea90ec84cf293751959e11e952e2da77fe883cf105fd70ceeddef76b2e84d7a849d0cb3c3ac89dc7d839db910fa508a1261f3fbb0a99"; 853 853 } 854 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-i686/son/firefox-51.0.tar.bz2"; 854 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-i686/son/firefox-51.0.1.tar.bz2"; 855 855 locale = "son"; 856 856 arch = "linux-i686"; 857 - sha512 = "c01bdddb9382357a85f86c494977df1185d3fc00b290c6076ccdb48823da8ab73b0af0a7d6d61510f24e881a206e3149070be38dfdaacc8a7a7311e8540acba6"; 857 + sha512 = "3e74bd82ca8259bba5e8ded47bdde199ed64a5fdb44f381d2e981dd05c009159a811348f8369eb345c8cb0fc8ef9377d69ab069be0c3d0238cb3a8e634f3b188"; 858 858 } 859 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-i686/sq/firefox-51.0.tar.bz2"; 859 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-i686/sq/firefox-51.0.1.tar.bz2"; 860 860 locale = "sq"; 861 861 arch = "linux-i686"; 862 - sha512 = "4027be0b161a175fa9576c31a223120ebd559873b622ae0a658bcd85b7afa73e0353aa7dcb379fa196f32c6a7a615cd4e8321bc081c195d78ca1bf63d443912b"; 862 + sha512 = "637e81118bf019d916e26f229a02756ebb1b7eb3f2a9131905320a4fd4a8bc13efbb2d2c85fb52b7ccdf3c02afe7a439754cd0222501c5ebd18069bcbb8146e1"; 863 863 } 864 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-i686/sr/firefox-51.0.tar.bz2"; 864 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-i686/sr/firefox-51.0.1.tar.bz2"; 865 865 locale = "sr"; 866 866 arch = "linux-i686"; 867 - sha512 = "3e975eae9b281af3e44c72aec6684c668186c67f99b3a3f584e319b5784eb3dbde710bfade02ef0158d7191b831861aa292842aed2c58b63877fca22caa95481"; 867 + sha512 = "6ebfd3264b6daaf2726614f12ccae7485773b1fcb3d55b8cba748157bdd81e9d57de5e65553fc928b6fc59a9bf346761b37321caa07b461fa757885d551bbf2d"; 868 868 } 869 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-i686/sv-SE/firefox-51.0.tar.bz2"; 869 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-i686/sv-SE/firefox-51.0.1.tar.bz2"; 870 870 locale = "sv-SE"; 871 871 arch = "linux-i686"; 872 - sha512 = "130af7c0ff6bce178119b88a585f4216effb0d08b17965b75c8eee0c0af728849f5c78ec1732db1ef4c18a2b004ad031b34221921ff7fee1a580e954fd90f123"; 872 + sha512 = "3ba5a114559edb15375abf9011d9c7cef5b35d1182f43d2ee7d38d37e5ae802506c207c0a96dbce8f8a87ed35cc874a4c0748968cc86b460693144240cc2f22d"; 873 873 } 874 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-i686/ta/firefox-51.0.tar.bz2"; 874 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-i686/ta/firefox-51.0.1.tar.bz2"; 875 875 locale = "ta"; 876 876 arch = "linux-i686"; 877 - sha512 = "afd344db4d2e8f64bb2cbdb9cd29bae258aefe0dece1f784fa683d27107d863ca1000d47f0764edb5c2deb80ba5ba36778396f94aba85ee5ff569a6364bfb64a"; 877 + sha512 = "ccc13342dd8d110bb63670c1beacf2ec3e0aa48ddf775f9f8181d2733f0072dbcd465e88a4ea2c2ade503b7bc41c193d16cf4f3a6857748600cdda002c5bda00"; 878 878 } 879 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-i686/te/firefox-51.0.tar.bz2"; 879 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-i686/te/firefox-51.0.1.tar.bz2"; 880 880 locale = "te"; 881 881 arch = "linux-i686"; 882 - sha512 = "e6dde9414cb8a75616bdfd7590aab3b4b9c70b43dc8218eddcda7b5d82968f702438cf6f9fcbac8d1c4aa68d10a7b7aa0b144229a1ddee190a670a93b96b8068"; 882 + sha512 = "6df83ac1eb710aa56bfeba8f2bbb52b002ba5d4a63a3ffa0fd2b9dda076d1594d5507753478ceea89c703ba07b2b78be5b2f0bc7ad15365164f251f6cfb13f3c"; 883 883 } 884 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-i686/th/firefox-51.0.tar.bz2"; 884 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-i686/th/firefox-51.0.1.tar.bz2"; 885 885 locale = "th"; 886 886 arch = "linux-i686"; 887 - sha512 = "3a3a78429127cd9b4677618c583135e4b6adacfd26b411442e7654cc1dba6fe97bdb2485b63cffd212e9dca708e260740cd70a8b8213f241cabb2d0ee651ada4"; 887 + sha512 = "ed32a1b1d7bbbe625c8b528fadff8195c81bca4fa64a9b3e230066e801cd315d14d6c356fe48253a8d796127cbfb0ff0db58b25953054a2c83f55549c6c3cfdf"; 888 888 } 889 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-i686/tr/firefox-51.0.tar.bz2"; 889 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-i686/tr/firefox-51.0.1.tar.bz2"; 890 890 locale = "tr"; 891 891 arch = "linux-i686"; 892 - sha512 = "f0e75b3edbfc1d254c28e545cd15f0dae01c54361f65b7d3fc9e28cfbe4f620dc995725302e9e77c94b85458c60a25cb2ca3ef11839303fa6a1a55829e01944c"; 892 + sha512 = "3e69c04d8993d290293c2d925bd93e1f4269733992c260d5ff61d111acfe0cfb82ee7ac03c78332d45742e36e3a3c8ec4b22110e6feeb5484fc5c4a7568b431f"; 893 893 } 894 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-i686/uk/firefox-51.0.tar.bz2"; 894 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-i686/uk/firefox-51.0.1.tar.bz2"; 895 895 locale = "uk"; 896 896 arch = "linux-i686"; 897 - sha512 = "e00212ba3205a6ce8ce3e66e430cc653b607501900f50cecfac67c73cb7e3ba6cecff276903aa8bf9fc99a2e3d6e9d30021c12ae74be027b6c775ba8f5ef58db"; 897 + sha512 = "7f52ba8eef6515e267b05a48a97eafc5672b5cc77b67836d44207cc72f7b886b8d9aacd8259359433d1515046d72f97836980b9d01c281c8620b0ff693abe7e4"; 898 898 } 899 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-i686/uz/firefox-51.0.tar.bz2"; 899 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-i686/uz/firefox-51.0.1.tar.bz2"; 900 900 locale = "uz"; 901 901 arch = "linux-i686"; 902 - sha512 = "e3d3bbfc59c5d8db89edff8be8dd40a8b4d63821bb0661d8b7af73ffaffbaf955e441ba2f51a3bcd60e0a9fdb972ee02c5eb9e9b1639982be4dd8685bd18b57a"; 902 + sha512 = "d3af1571479bfceb3a9118cf90d5c5530072ff1845d2624f33549ce42581eb257d01e8e5985866114772d8c0e1a8be5d52e7d6d0a30ccee4dc9536cd6a07f4e7"; 903 903 } 904 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-i686/vi/firefox-51.0.tar.bz2"; 904 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-i686/vi/firefox-51.0.1.tar.bz2"; 905 905 locale = "vi"; 906 906 arch = "linux-i686"; 907 - sha512 = "bbba8a10fa3d3958ee2310bf7c72886a94808ac2dc55bf717b0fb073ab2a38dcf258578e653fea2cbc89daaf996915da441d49639f38a3a25ae00b66380e10b5"; 907 + sha512 = "7fd67bb789c2520b9a4a1cd59f0a5713ca2eb8eddca3188a041907047ddb28d2bddfe439f2c85f75c473ddb3df08f4e783d4312af2da5bb13b57ad8dda3aed4c"; 908 908 } 909 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-i686/xh/firefox-51.0.tar.bz2"; 909 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-i686/xh/firefox-51.0.1.tar.bz2"; 910 910 locale = "xh"; 911 911 arch = "linux-i686"; 912 - sha512 = "1e67a4b168e582d8528192b7f15f4c87edf0a9b5f6113c1a22818e0a31ccf9c9d11f934c043a4f12541ffcf2cc7d7dcbe15ab9df14c37f0bbcfa2a54c6f74017"; 912 + sha512 = "81678e379685fe35a23c4c2f490837c8454ae9b65f6f91ac18cb3a4e0c5c475021aa175783e09d99151014604a3aec944252812cce0355b75b7a39bb8b498400"; 913 913 } 914 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-i686/zh-CN/firefox-51.0.tar.bz2"; 914 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-i686/zh-CN/firefox-51.0.1.tar.bz2"; 915 915 locale = "zh-CN"; 916 916 arch = "linux-i686"; 917 - sha512 = "1bdd72ad912894961872da41d76498863bb67ba6bf26ab551cac1da450fc79d5196050968ba0786c32254af83fa86dc2c368e8c9703cdf27309475b1ff4ee899"; 917 + sha512 = "1212c93a2ac3f77e13199fe5c7a518bbe9a5ce573c241777e462167c02ccf3d232dfc9b15c05ad85110ff14df0cf31dfb74209dc50f7a99db068928aa3f723a9"; 918 918 } 919 - { url = "http://archive.mozilla.org/pub/firefox/releases/51.0/linux-i686/zh-TW/firefox-51.0.tar.bz2"; 919 + { url = "http://archive.mozilla.org/pub/firefox/releases/51.0.1/linux-i686/zh-TW/firefox-51.0.1.tar.bz2"; 920 920 locale = "zh-TW"; 921 921 arch = "linux-i686"; 922 - sha512 = "7920151c1d99fda897b8cfc62eb1e6ec7b984dc56253478fb49e3182695313c3c0fd21a49f37993024e5898377bed23e6d943f6d8d5a851aba30fff8922287a2"; 922 + sha512 = "cd2a813befedf187cc11e8374043658a78bed9620681e66e226292c8f754f0b21c865cdb71c7b289acfb040c77361ee5c3a1ab42c34b9e893293270b1a9151a8"; 923 923 } 924 924 ]; 925 925 }
+2 -2
pkgs/applications/networking/browsers/firefox/default.nix
··· 148 148 149 149 firefox-unwrapped = common { 150 150 pname = "firefox"; 151 - version = "51.0"; 152 - sha512 = "4406f840a7a2b4e76a74e846d702b717618fb5b677f1c6df864c3428033dd22aad295d656f1fc57e581fd202d894c5483a16691a60b6ca7710315b157b812467"; 151 + version = "51.0.1"; 152 + sha512 = "556e31b717c0640ef5e181e00b9d2a6ea0ace7c16ae04333d0f2e9e120d0ab9efe82a4ca314ef43594c080523edf37953e65dbf694c7428be0a024f3719d8312"; 153 153 updateScript = import ./update.nix { 154 154 name = "firefox"; 155 155 inherit writeScript xidel coreutils gnused gnugrep curl ed;
+2 -2
pkgs/applications/networking/cluster/terraform/default.nix
··· 2 2 3 3 buildGoPackage rec { 4 4 name = "terraform-${version}"; 5 - version = "0.8.4"; 5 + version = "0.8.5"; 6 6 rev = "v${version}"; 7 7 8 8 goPackagePath = "github.com/hashicorp/terraform"; ··· 11 11 inherit rev; 12 12 owner = "hashicorp"; 13 13 repo = "terraform"; 14 - sha256 = "0wjz7plzi7bgrbw22kgqpbai1j3rmqayrmjcp9dq6a361l9a0msw"; 14 + sha256 = "1cxwv3652fpsbm2zk1akw356cd7w7vhny1623ighgbz9ha8gvg09"; 15 15 }; 16 16 17 17 postInstall = ''
+48 -11
pkgs/applications/networking/instant-messengers/gajim/default.nix
··· 1 - { stdenv, fetchurl, python, intltool, pkgconfig, libX11 1 + { stdenv, fetchurl, autoreconfHook, python, intltool, pkgconfig, libX11 2 2 , ldns, pythonPackages 3 + 4 + # Test requirements 5 + , xvfb_run, dnsutils 3 6 4 7 , enableJingle ? true, farstream ? null, gst_plugins_bad ? null 5 8 , libnice ? null ··· 25 28 version = "0.16.6"; 26 29 27 30 src = fetchurl { 28 - url = "http://www.gajim.org/downloads/0.16/gajim-${version}.tar.bz2"; 29 - sha256 = "1p3qwzy07f0wkika9yigyiq167l2k6wn12flqa7x55z4ihbysmqk"; 31 + name = "${name}.tar.bz2"; 32 + url = "https://dev.gajim.org/gajim/gajim/repository/archive.tar.bz2?" 33 + + "ref=${name}"; 34 + sha256 = "1s0h4xll9490vh7ygmi4zsd1fa107f3s9ykhpq0snb04fllwhjq7"; 30 35 }; 31 36 32 - patches = [ 33 - (fetchurl { 34 - name = "gajim-icon-index.patch"; 35 - url = "https://dev.gajim.org/gajim/gajim/commit/7d20ed2b98a3070add188efab7308a5a06d9f4a2.diff"; 36 - sha256 = "0w54hr5dq9y36val55kmh8d6cid7h4fs2nghx09714jylz2nyxxv"; 37 - }) 38 - ]; 37 + patches = let 38 + # An attribute set of revisions to apply from the upstream repository. 39 + cherries = { 40 + misc-test-fixes = { 41 + rev = "1f0d7387fd020df5dfc9a6349005ec7dedb7c008"; 42 + sha256 = "0nazpzyg50kl0k8z4dkn033933iz60g1i6nzhib1nmzhwwbnacc5"; 43 + }; 44 + jingle-fix = { 45 + rev = "491d32a2ec13ed3a482e151e0b403eda7b4151b8"; 46 + sha256 = "1pfg1ysr0p6rcwmd8ikjs38av3c4gcxn8pxr6cnnj27n85gvi30g"; 47 + }; 48 + fix-connection-mock = { 49 + rev = "46a19733d208fbd2404cbaeedd8c203d0b6557a4"; 50 + sha256 = "0l3s577pksnz16r4mqa1zmz4y165amsx2mclrm4vzlszy35rmy2b"; 51 + }; 52 + }; 53 + in mapAttrsToList (name: { rev, sha256 }: fetchurl { 54 + name = "gajim-${name}.patch"; 55 + url = "https://dev.gajim.org/gajim/gajim/commit/${rev}.diff"; 56 + inherit sha256; 57 + }) cherries; 39 58 40 59 postPatch = '' 41 60 sed -i -e '0,/^[^#]/ { ··· 47 66 sed -i -e 's/return helpers.is_in_path('"'"'drill.*/return True/' \ 48 67 src/features_window.py 49 68 sed -i -e "s|'drill'|'${ldns}/bin/drill'|" src/common/resolver.py 69 + 70 + # We want to run tests in installCheckPhase rather than checkPhase to test 71 + # whether the *installed* version of Gajim works rather than just whether it 72 + # works in the unpacked source tree. 73 + sed -i -e '/sys\.path\.insert.*gajim_root.*\/src/d' test/lib/__init__.py 50 74 '' + optionalString enableSpelling '' 51 75 sed -i -e 's|=.*find_lib.*|= "${gtkspell2}/lib/libgtkspell.so"|' \ 52 76 src/gtkspell.py ··· 57 81 ] ++ optionals enableJingle [ farstream gst_plugins_bad libnice ]; 58 82 59 83 nativeBuildInputs = [ 60 - pythonPackages.wrapPython intltool pkgconfig 84 + autoreconfHook pythonPackages.wrapPython intltool pkgconfig 85 + # Test dependencies 86 + xvfb_run dnsutils 61 87 ]; 88 + 89 + autoreconfPhase = '' 90 + sed -e 's/which/type -P/;s,\./configure,:,' autogen.sh | bash 91 + ''; 62 92 63 93 propagatedBuildInputs = [ 64 94 pythonPackages.pygobject2 pythonPackages.pyGtkGlade ··· 87 117 88 118 patchPythonScript "$out/share/gajim/src/$name.py" 89 119 done 120 + ''; 121 + 122 + doInstallCheck = true; 123 + installCheckPhase = '' 124 + XDG_DATA_DIRS="$out/share/gajim''${XDG_DATA_DIRS:+:}$XDG_DATA_DIRS" \ 125 + PYTHONPATH="test:$out/share/gajim/src:''${PYTHONPATH:+:}$PYTHONPATH" \ 126 + xvfb-run make test 90 127 ''; 91 128 92 129 enableParallelBuilding = true;
+233 -233
pkgs/applications/networking/mailreaders/thunderbird-bin/sources.nix
··· 1 1 { 2 - version = "45.6.0"; 2 + version = "45.7.0"; 3 3 sources = [ 4 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.6.0/linux-x86_64/ar/thunderbird-45.6.0.tar.bz2"; 4 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.7.0/linux-x86_64/ar/thunderbird-45.7.0.tar.bz2"; 5 5 locale = "ar"; 6 6 arch = "linux-x86_64"; 7 - sha512 = "7a2976d272ecc0a3727e34b0841865fea6de9f05195089aa912831836c6f74b9fd34de0ed327cf96cf5b8c0e39829e2db5dd364a92e4ffc48e7139a0fd9cf066"; 7 + sha512 = "5e971fbaebf1e827da0f257277f7589777f426da8ce5465bfc2e5ca935cbe3b573562a94671f5b90b1005447169000b14c422aafdba68ceb7b48c7c1cc529fb0"; 8 8 } 9 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.6.0/linux-x86_64/ast/thunderbird-45.6.0.tar.bz2"; 9 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.7.0/linux-x86_64/ast/thunderbird-45.7.0.tar.bz2"; 10 10 locale = "ast"; 11 11 arch = "linux-x86_64"; 12 - sha512 = "fcb1efd553617825e5ca55afe56a6e36cd8a0c067f4e851c6527058fe1b8169da2e548932e21bc7a52eacec9fa2c55b0cc1369a850a9927ba6c686ed6f5940e6"; 12 + sha512 = "9ae45c5ff83dab4b4da3849d147546e8265718e568a82a14ec111128ac97b606dc122962954e8f2650e29f7bd7335508eebf30b3245165ac5563ccbe9960dffb"; 13 13 } 14 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.6.0/linux-x86_64/be/thunderbird-45.6.0.tar.bz2"; 14 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.7.0/linux-x86_64/be/thunderbird-45.7.0.tar.bz2"; 15 15 locale = "be"; 16 16 arch = "linux-x86_64"; 17 - sha512 = "7ca8e07771a984510f2114bcf58397e49e6d64013dfba94e3312ad926e05afb01dc5beced22e5c00f0e43d742752f8a96b5ef167f4d892a01fbaedc194b76d49"; 17 + sha512 = "6aa812541b2db739e2afabfbc00e3de8c068460b9689490adfb0306b54914efee6a3fe1854f1c5e18eaf266220c1c3b7291e4da0d3f8cf0f7d651a0ef83ea8eb"; 18 18 } 19 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.6.0/linux-x86_64/bg/thunderbird-45.6.0.tar.bz2"; 19 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.7.0/linux-x86_64/bg/thunderbird-45.7.0.tar.bz2"; 20 20 locale = "bg"; 21 21 arch = "linux-x86_64"; 22 - sha512 = "fe717fc5590f420e13a0c8bedba031b8ed5e2379ddf613fc14d82f718afe9341d953baf4f056fca88366248a5f3777cbcc3c12e5bccc33ac07698d3de8306370"; 22 + sha512 = "54d657278863d8b8030119fd1a31656c822e4c12eaa607ee3b61dac2ac24ed11069e913f3d6b1c868a040bfb610d79133e3bfc509937fe742f23d1d5c8be0480"; 23 23 } 24 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.6.0/linux-x86_64/bn-BD/thunderbird-45.6.0.tar.bz2"; 24 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.7.0/linux-x86_64/bn-BD/thunderbird-45.7.0.tar.bz2"; 25 25 locale = "bn-BD"; 26 26 arch = "linux-x86_64"; 27 - sha512 = "9e87ff7976eed19137767b0e9ee2b43b41701edc060201da8d54c68d40f26d88f07c3972d59d59e74191bf30163eec642d6b72f7e633fe48d5cc34f1624d7983"; 27 + sha512 = "45ba00305d7ee59d4d33c73f1dd6bdd6e49f74e7bc41092fc3216f09e36987a0f7a5aed42788a2c4873eee9121267d7206813066b1b63d3a8b6953cdaad62882"; 28 28 } 29 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.6.0/linux-x86_64/br/thunderbird-45.6.0.tar.bz2"; 29 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.7.0/linux-x86_64/br/thunderbird-45.7.0.tar.bz2"; 30 30 locale = "br"; 31 31 arch = "linux-x86_64"; 32 - sha512 = "2c829c85255d15aa6ad9a941404290a546dbe7522877bfc0b9869415e6f806f853252bb646650d8a9f9729cfd139121dceafc4c1c052030ff7ff7b17e9cef4c3"; 32 + sha512 = "277660c584fe60336a3333fedb181713e8eb5a9ede4844238a61748a279c68d5768d96fbaa93b9c6132af5a37fdd38650e0c91579a6b17a3501caf213054426b"; 33 33 } 34 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.6.0/linux-x86_64/ca/thunderbird-45.6.0.tar.bz2"; 34 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.7.0/linux-x86_64/ca/thunderbird-45.7.0.tar.bz2"; 35 35 locale = "ca"; 36 36 arch = "linux-x86_64"; 37 - sha512 = "452f701dd496fe6da40372188f7db2628cbe9b7db737b167d052a4dd75c668fb2505e68b6ec299b8a9d0e4cb448a57f8805aabd0d898e21cb67e89eba0163014"; 37 + sha512 = "c9e69470dec521144fb96f99e9a22987f5e982b4e385ead271966e62e4c252d880aec2581e6f0692710cab8f9667c5c34f26c9cd86ccc84c7bf25b21abd4461f"; 38 38 } 39 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.6.0/linux-x86_64/cs/thunderbird-45.6.0.tar.bz2"; 39 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.7.0/linux-x86_64/cs/thunderbird-45.7.0.tar.bz2"; 40 40 locale = "cs"; 41 41 arch = "linux-x86_64"; 42 - sha512 = "2574febad30bf072d7a0674ff821ca35845d6a5fda09cfce9cff18960af210ded42370bd148324e3599b14977cea770e59e8425c1bf0e6a52824c52f0a864457"; 42 + sha512 = "0be3aac8ffd4d0ad3571740933c3da0e1cd47dbd7e555eca9862751da367f0128537fd190159c138bc5f713fb282189d23220b45ada59de8ead59711566e7b8d"; 43 43 } 44 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.6.0/linux-x86_64/cy/thunderbird-45.6.0.tar.bz2"; 44 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.7.0/linux-x86_64/cy/thunderbird-45.7.0.tar.bz2"; 45 45 locale = "cy"; 46 46 arch = "linux-x86_64"; 47 - sha512 = "f07456acf596b6e3e98586177ebe41cdc09a7476c465371153062b394f0e89a0bf17ead255375cd0616c2db063dce3ac9aeba8d29f7e5906fc1c323000b49f22"; 47 + sha512 = "a36b500385a55756686e5d3378ae1b84df4d438507bbf0c84fbdb6e2a3942e2eb032b37f004fbb70d2ce00b495082534ffae670811b1b0ff82bf33b88d3481c6"; 48 48 } 49 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.6.0/linux-x86_64/da/thunderbird-45.6.0.tar.bz2"; 49 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.7.0/linux-x86_64/da/thunderbird-45.7.0.tar.bz2"; 50 50 locale = "da"; 51 51 arch = "linux-x86_64"; 52 - sha512 = "7bda2aeb26814fc9b2b1afb4470ec17f0b069b779e99ddd3ee423ac3776ca47d23223009cd35d2f6e495e7b5523787a228fa55db6e56f0c724b45e5ba2bac9d4"; 52 + sha512 = "f704327994b2ab085fddf9749dd440062ee8e2d5a9aedb2fd6b4c80bad6fc2ece620ed7794f14b8f55b4e1c358178f6b11d61086e0535b077a770573942f3c33"; 53 53 } 54 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.6.0/linux-x86_64/de/thunderbird-45.6.0.tar.bz2"; 54 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.7.0/linux-x86_64/de/thunderbird-45.7.0.tar.bz2"; 55 55 locale = "de"; 56 56 arch = "linux-x86_64"; 57 - sha512 = "7a9c629f957c74e54c2e82912836fc1f2688f37ceee43a31b29d1d4b9b2c477e7ebff3f4b4969386e7aee458215f22a76ede4abba9138fd8d64411a0bd7103d3"; 57 + sha512 = "cae4b36fca75a9246a91cd0a26248ac2d9d4f1be93eb4ae7b172a9ee66efab17d023a8008e318c0db1b1fe227fd0085def6441a8e16e2fb284198805754aca7f"; 58 58 } 59 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.6.0/linux-x86_64/dsb/thunderbird-45.6.0.tar.bz2"; 59 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.7.0/linux-x86_64/dsb/thunderbird-45.7.0.tar.bz2"; 60 60 locale = "dsb"; 61 61 arch = "linux-x86_64"; 62 - sha512 = "666a64764cbd0f216f9b960f78b1e45d63c008332efd93b9e233842f37478d9c0f2d1faac494a5b28d43ff21a9e01059fa8b46554d05f47d919483b6d63befab"; 62 + sha512 = "5fb46ea74aecac2ea56ad2cf10b00098d144be99d841648cd76baaaba6e26709f4f470d58a22465a3a62dbc4578c8001afe857a4e9536b30bb50d0fa942a25bb"; 63 63 } 64 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.6.0/linux-x86_64/el/thunderbird-45.6.0.tar.bz2"; 64 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.7.0/linux-x86_64/el/thunderbird-45.7.0.tar.bz2"; 65 65 locale = "el"; 66 66 arch = "linux-x86_64"; 67 - sha512 = "02a7f06adfb93ee1694e0389e01b6bd2fe51e5e2379cf3c0fd34b8c7c8d7f58a848679fae19a7cea851bbfcf96fae493a020701841b2753678a142e3925b56e8"; 67 + sha512 = "33fbac5d0cd9348d2e1a5ff239770d058cd29382abebe394756088ff0610e7fce00021ce0f62d81570c557451dcc5352d0c9644f83c08c0f24a496c60194ecc1"; 68 68 } 69 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.6.0/linux-x86_64/en-GB/thunderbird-45.6.0.tar.bz2"; 69 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.7.0/linux-x86_64/en-GB/thunderbird-45.7.0.tar.bz2"; 70 70 locale = "en-GB"; 71 71 arch = "linux-x86_64"; 72 - sha512 = "1e45378d32c04db6b802480e245663f3c4522105da6c548d6ff1e5eebead55f53322909b87ecf0b97b85fab30b684ef8e9f3c0175a033824bccadffbb42cad7f"; 72 + sha512 = "f763c506aa22cb40a9c991a17ca6bdf5e7451a4b727733c54e58aaca2f1945ad008ffb51665f4d960d70189e5008853fbe0308382c8c9300b3156b143fca2375"; 73 73 } 74 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.6.0/linux-x86_64/en-US/thunderbird-45.6.0.tar.bz2"; 74 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.7.0/linux-x86_64/en-US/thunderbird-45.7.0.tar.bz2"; 75 75 locale = "en-US"; 76 76 arch = "linux-x86_64"; 77 - sha512 = "ab06b894f881ebc847cdcc11ffabcf7d9b626da9ce17c4195e7c401963bb3937b8a05eb73ea2fb988662f318568af3ad7142d3fc556cfe139d4393249c353446"; 77 + sha512 = "c186bb0d52eeb8ad87b26871257a9ac6a29cb418ff9956e81804ebd1f557d28f31d99124c530f141b612594dd149996c6258d11953698e5e9083bd1b7c7ebdc3"; 78 78 } 79 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.6.0/linux-x86_64/es-AR/thunderbird-45.6.0.tar.bz2"; 79 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.7.0/linux-x86_64/es-AR/thunderbird-45.7.0.tar.bz2"; 80 80 locale = "es-AR"; 81 81 arch = "linux-x86_64"; 82 - sha512 = "07be1c0f88aa49a8264bfccbc6db3e738dcde83d93f86939bf3ffb5f85c835252f2f4a74a8cb3eb5d2ea6a1b4af31d3d84418090a23be36aa11965cd4ed67b66"; 82 + sha512 = "5aeadcfb8417898367f192f09c1a12595e772d72f66fefb54510ea447942b1a715bd619224dab0047d218bf35e6b7a88562d7bf45f4bfede3f94d189af209e0b"; 83 83 } 84 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.6.0/linux-x86_64/es-ES/thunderbird-45.6.0.tar.bz2"; 84 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.7.0/linux-x86_64/es-ES/thunderbird-45.7.0.tar.bz2"; 85 85 locale = "es-ES"; 86 86 arch = "linux-x86_64"; 87 - sha512 = "2c51ff6931dea175ad6d8eb64c768792f61bef1cb5762efa3e7261cbf14c7619c81ef44a8d6e1ebe7d9764d2608b85e6ddbe47ec437f500c65037d6be8341d88"; 87 + sha512 = "d4762f067f645489147cb53c5fa1e6eb7e2f6df7bfb541b824988a8e918df289498e27af70407a1537b28dfa40d0483a0da08fe757839e3bea2d958e2d9ea7c4"; 88 88 } 89 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.6.0/linux-x86_64/et/thunderbird-45.6.0.tar.bz2"; 89 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.7.0/linux-x86_64/et/thunderbird-45.7.0.tar.bz2"; 90 90 locale = "et"; 91 91 arch = "linux-x86_64"; 92 - sha512 = "e726a397cecb1d624fef5840b89a177591c8a10d397042b2c5f47574d9b88d0725a1b53999e2d268a67c4efd1b4551ffa2052398c1ad14903a8b0217b5b353bc"; 92 + sha512 = "c4b2f7f2b13ea7fb5a14e5ae2e258962f8f3a269d3d35987d37015d72d42d196e6581928f6cb4f5300036c58d4e6ab69b085588164e6b516a778b0f5c789f22a"; 93 93 } 94 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.6.0/linux-x86_64/eu/thunderbird-45.6.0.tar.bz2"; 94 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.7.0/linux-x86_64/eu/thunderbird-45.7.0.tar.bz2"; 95 95 locale = "eu"; 96 96 arch = "linux-x86_64"; 97 - sha512 = "85c2fdc7e27a8298d8e553f221595ae0d7872eae4e78d143d533a18582d8f40195db38f179aa2ed558e790fb7c58510a8ad6037c698ab149d3bd582e34528e5c"; 97 + sha512 = "d38a6bf51d9b8b8c15a709bd8618cf71cee799afea3466f0d197a8c4a1b9b8c4dc60da1b43f398619fe3a73b8444429cdd48af8065bd3a34f91f271d78169ea0"; 98 98 } 99 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.6.0/linux-x86_64/fi/thunderbird-45.6.0.tar.bz2"; 99 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.7.0/linux-x86_64/fi/thunderbird-45.7.0.tar.bz2"; 100 100 locale = "fi"; 101 101 arch = "linux-x86_64"; 102 - sha512 = "ad4516f11670424d31e7fc5c9b12bcf1f0c63110b81ab45a3c5b5a897e1d0a3ce1855117254902ca177a04fc422c193c742098a431dbd8b760bdefe1d7c4c6a3"; 102 + sha512 = "087b9b6b500ecb674b013a8f9fd050cd7694c6e07f90de8e421ac46558afb5b73640d293c155c200f06df3e1dc40adb8d2f2b2f28d30aa83cc888c5f7097f8e1"; 103 103 } 104 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.6.0/linux-x86_64/fr/thunderbird-45.6.0.tar.bz2"; 104 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.7.0/linux-x86_64/fr/thunderbird-45.7.0.tar.bz2"; 105 105 locale = "fr"; 106 106 arch = "linux-x86_64"; 107 - sha512 = "4abb3fd8430867262811a4aa56304666ad6a1336959afff73fcdc38f157505975d6c340219db4980157f38dcb4b2596cdf623f311f6fbd29e613a89bed35beca"; 107 + sha512 = "50824c56fbcd2d164f891a749114b3401e01845b0118b007528542f82884a832ef1cd5fa72b41cf878de80a1f220e453cd26356375275b72b8b7e14dbb94abd9"; 108 108 } 109 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.6.0/linux-x86_64/fy-NL/thunderbird-45.6.0.tar.bz2"; 109 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.7.0/linux-x86_64/fy-NL/thunderbird-45.7.0.tar.bz2"; 110 110 locale = "fy-NL"; 111 111 arch = "linux-x86_64"; 112 - sha512 = "dddab8f7453bfc074f3cd8d6aea33402f66be1bec08ea7c152873af63c802e03edf01e74db236dac6e088f836f188258d3dc62fefa833ffc525ca15b71cfbf21"; 112 + sha512 = "5e32fb0c933a9b5dfd4557a16b41bd8fd17f734b66b887a10780e7a3c5658383450fd63c42f693ed095056fcbdd45e7b2fc2bd7a919225b8dd8152c0620b93df"; 113 113 } 114 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.6.0/linux-x86_64/ga-IE/thunderbird-45.6.0.tar.bz2"; 114 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.7.0/linux-x86_64/ga-IE/thunderbird-45.7.0.tar.bz2"; 115 115 locale = "ga-IE"; 116 116 arch = "linux-x86_64"; 117 - sha512 = "66acfc92a997ef6a2f1dfdf6a6952eebd7788b14d3080867349619b3f9559bbac4cfe6e983ad87900e089a0cb15dab2b9f77dcac69adb66ef0f97f9b5cc4e809"; 117 + sha512 = "747c305440e3fbacd96dbd1aba42fc85d302171220eca94bb46930f618404ec152de5a1bc130fd7033098d7f9401fc945df51c8215a49e7ba1d6fedc22679d81"; 118 118 } 119 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.6.0/linux-x86_64/gd/thunderbird-45.6.0.tar.bz2"; 119 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.7.0/linux-x86_64/gd/thunderbird-45.7.0.tar.bz2"; 120 120 locale = "gd"; 121 121 arch = "linux-x86_64"; 122 - sha512 = "e4d2fefb8e7c0c14395af7f695e216f6fdb685ca150cb803a347228aaea988169a7093747e770921716123a9333bbc00560e6324ff2f4f966cd895c2fbe6e21d"; 122 + sha512 = "6e661d5c2b6a531dd4600ac55c65d895e176477a85a0311697e1a14d3888da2de40d03701e4f447898e4119c210bb64d90ef2a3f1d131540ae521cf4448bfb7f"; 123 123 } 124 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.6.0/linux-x86_64/gl/thunderbird-45.6.0.tar.bz2"; 124 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.7.0/linux-x86_64/gl/thunderbird-45.7.0.tar.bz2"; 125 125 locale = "gl"; 126 126 arch = "linux-x86_64"; 127 - sha512 = "6cc628399fa0adce0fe740e77a8e708988f7dee4d004bcb785fe567ca680fca79fde756e479cab9017828cebe48fa091e402d52d6bed54aae9cc5b6e28f246d8"; 127 + sha512 = "9da68b8ea5125f94c22ef74bad14ce2f624e59521e62b778884fa68740a2bcc632b80d83a3e85011bbcdc76bac7cebe7853f22ad6bf7c9642878a089dbd034fb"; 128 128 } 129 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.6.0/linux-x86_64/he/thunderbird-45.6.0.tar.bz2"; 129 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.7.0/linux-x86_64/he/thunderbird-45.7.0.tar.bz2"; 130 130 locale = "he"; 131 131 arch = "linux-x86_64"; 132 - sha512 = "82bbf5a5fe84953d9118948fe3e9d4d6a46ceaafe42f76ea3dda36134458d30f0c73f2ab61682d2627b8c3d598d2174d549d8b4b80bf5c3071627b57b713329a"; 132 + sha512 = "cc9e36346cc7b0b18afaf23e7637d51e2232db028f9b9d5c708a1bb4ba0cd62638343fae5dd414098c6755782a2e8e9ac4731e38746574610edbad94acb65bad"; 133 133 } 134 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.6.0/linux-x86_64/hr/thunderbird-45.6.0.tar.bz2"; 134 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.7.0/linux-x86_64/hr/thunderbird-45.7.0.tar.bz2"; 135 135 locale = "hr"; 136 136 arch = "linux-x86_64"; 137 - sha512 = "c70dcfc8506132ce0764de325c8e0debafdc8460052bfa4901172f880b935d1c0bd70b1f7d227604f6bfd155c2ff165c1ad7a5b509d512483b54eff80e910a1a"; 137 + sha512 = "0f68a4059b2053319cdf0fe335f782d9a53e392c5d1c471326cdc47f2f779dcce75e4882e6c9e339cf6d0589f084ab54d9ef5d4c4df193c96a7f476cd0c5f9ef"; 138 138 } 139 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.6.0/linux-x86_64/hsb/thunderbird-45.6.0.tar.bz2"; 139 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.7.0/linux-x86_64/hsb/thunderbird-45.7.0.tar.bz2"; 140 140 locale = "hsb"; 141 141 arch = "linux-x86_64"; 142 - sha512 = "5baeaa2ae960514551d062979cd60644971b6603ab33b9773a3eff10e267f0029b2edd5d48734dfcf99697ec77c88e12f4f240ea18a7433a0a2eb07f70283389"; 142 + sha512 = "f6077a9c5b91f5688d2f71201064015d87bf38bc34d9f556ee1037650815c05e71a2cfc0d67736c308fdb6b5217f0fec56fbfc5a7044940f06c809579a80610e"; 143 143 } 144 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.6.0/linux-x86_64/hu/thunderbird-45.6.0.tar.bz2"; 144 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.7.0/linux-x86_64/hu/thunderbird-45.7.0.tar.bz2"; 145 145 locale = "hu"; 146 146 arch = "linux-x86_64"; 147 - sha512 = "bbba8bfef9168efcf0aca6fa98596b3d7bbfaf456ceca263825d2f96b054d6dbc672e1086db645a48966f82cd0d6f4c85e9846935dc7b2595faeefa81c66904f"; 147 + sha512 = "958d7b9d82fc4ecbd0387df0bf2c95d27fde530b28519a5c7e6795f0e62ec0fcdc77bcf526342d5e13df993236daa2576f205c8333705adc2be35f156d5b9176"; 148 148 } 149 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.6.0/linux-x86_64/hy-AM/thunderbird-45.6.0.tar.bz2"; 149 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.7.0/linux-x86_64/hy-AM/thunderbird-45.7.0.tar.bz2"; 150 150 locale = "hy-AM"; 151 151 arch = "linux-x86_64"; 152 - sha512 = "b58088defd9a2f76aa779bf080135a5735e1531de065b1a3ac6f9048266e763bee8a22be634f435584d308aa5a532b72687bbddc8f7dedaca39642ed04137bfa"; 152 + sha512 = "2415b150651c0a6f173238180973a6ec1615e67fbb7fb7aa4d2d3d773e14c0584ca2c8ac268fb8c6597c1985fc91db741d6a842e17b47f4841cd50a13cb7896b"; 153 153 } 154 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.6.0/linux-x86_64/id/thunderbird-45.6.0.tar.bz2"; 154 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.7.0/linux-x86_64/id/thunderbird-45.7.0.tar.bz2"; 155 155 locale = "id"; 156 156 arch = "linux-x86_64"; 157 - sha512 = "c83198b8ac60132f3124253c082ea0d5a45f1db7a7a6509ea18e3d084e26796364e6ced3c20675620cfc7f849b4e7fe342c86d0cea24eee48c815dc02730074f"; 157 + sha512 = "3a682b3a4dc497244446674c98e588ed0f8f5e835eef00d9530e78d84a62e43ad849b807b8d6a9086ed20347b874da2ae486769e451ec19525e8e34004a34727"; 158 158 } 159 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.6.0/linux-x86_64/is/thunderbird-45.6.0.tar.bz2"; 159 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.7.0/linux-x86_64/is/thunderbird-45.7.0.tar.bz2"; 160 160 locale = "is"; 161 161 arch = "linux-x86_64"; 162 - sha512 = "285427b6f53c181889b78d005071f71211a2a51b6fa5f3eaf5a573a4a5e15cd83d946b97f3da89d383fd797a6985f8c1d589fe40e1267a73224848080af9b79c"; 162 + sha512 = "9fd5b5a7d606913ab9697754093e21daefbb70baf515200bb3b8400f6eed2cce39b1415ef6f4ddb195c40bdd7deb9ed8c863c5d3c2ba4b8d4e3714f62ead7fc5"; 163 163 } 164 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.6.0/linux-x86_64/it/thunderbird-45.6.0.tar.bz2"; 164 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.7.0/linux-x86_64/it/thunderbird-45.7.0.tar.bz2"; 165 165 locale = "it"; 166 166 arch = "linux-x86_64"; 167 - sha512 = "5e763b01fce3bb3ce5deaea0d3e4bb51b5cd752ab5fa191a064400f7961d237924b98013179f0d32017bc527478d665d6fbc74482680aaf041444d3c376497ae"; 167 + sha512 = "0d05dca4e136b3aac77af366f3356a5af32c0f46589a6303eafdf63f0e8128fd9c4f80232852ff91ab1f0a4e06e27daa70fbff640e3f6a30c0a31dae280b0cf1"; 168 168 } 169 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.6.0/linux-x86_64/ja/thunderbird-45.6.0.tar.bz2"; 169 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.7.0/linux-x86_64/ja/thunderbird-45.7.0.tar.bz2"; 170 170 locale = "ja"; 171 171 arch = "linux-x86_64"; 172 - sha512 = "7dd7b1f9fcfe103d8b70587e2a8307bec93766b504390ee138cab52bb8b8f76759af84568eccc71e5a88ee8cf3e326313930760cc92267ecf7e0fb29fc09f8e8"; 172 + sha512 = "ffe36363f9958132c8a4263f985ae3d5ab349fc7247cd3521a2ea613fb3dfea420d36af8e650d024d9db39b89b225751bccd0efc8e2e4d4c91bd8786657dc0db"; 173 173 } 174 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.6.0/linux-x86_64/ko/thunderbird-45.6.0.tar.bz2"; 174 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.7.0/linux-x86_64/ko/thunderbird-45.7.0.tar.bz2"; 175 175 locale = "ko"; 176 176 arch = "linux-x86_64"; 177 - sha512 = "1776ae557e7f7d6df013d178a68f969aee4da9de6049f0055e290a808da61af4bd712d7915ac05a04c159db93fab7d994bd0317a471dc0498c2b5c0b8696cf71"; 177 + sha512 = "9d91b3df05ba7d55428cd3854a70a28e42d7d51a227d239a29c5d9efb11f8d0eaaf812bc71940d33875bb7bfed9699a9131874af8ee49e4504cb996c0c3571d7"; 178 178 } 179 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.6.0/linux-x86_64/lt/thunderbird-45.6.0.tar.bz2"; 179 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.7.0/linux-x86_64/lt/thunderbird-45.7.0.tar.bz2"; 180 180 locale = "lt"; 181 181 arch = "linux-x86_64"; 182 - sha512 = "499a710619b3e9f86fe7e77e35ddbfece5609af92d79b50b697ea8539cd0b198ec88702a7c19a9169cdb2b1dead19fe786d0af16bc6fe2b9f3e0414780a1e1e9"; 182 + sha512 = "3b5aa45b9e893b784a192961c40c4c29dc3bba641b13b9aaaf0fc67b8d7b5aa3b404700c63fdf3f7bdeadaaae89495b1e37e274fb686a46b654113308dafaae5"; 183 183 } 184 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.6.0/linux-x86_64/nb-NO/thunderbird-45.6.0.tar.bz2"; 184 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.7.0/linux-x86_64/nb-NO/thunderbird-45.7.0.tar.bz2"; 185 185 locale = "nb-NO"; 186 186 arch = "linux-x86_64"; 187 - sha512 = "d97a5f532a000f3cf44e1b741a3a7026d07bf2c6012b4f6361021b81058aa93876304014d3d8d7181695c526cfd887523e217b7b502c493f5327bb4ba4d00461"; 187 + sha512 = "1959225b4fb510cc414b57934728c75e91bbd9d105ce0cfc7784167c4f30676adb59302e9252475c758dec08618df733f8873378a0d0ca3db4dd51b9c469c424"; 188 188 } 189 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.6.0/linux-x86_64/nl/thunderbird-45.6.0.tar.bz2"; 189 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.7.0/linux-x86_64/nl/thunderbird-45.7.0.tar.bz2"; 190 190 locale = "nl"; 191 191 arch = "linux-x86_64"; 192 - sha512 = "06df0ab52f6a9916bef1605283c7669a1afbe5ce7f6bed5746673ad5ad222034333bb41a6a1d81e87165105e3493d095bc90c5a910cb48041042367972dd9d61"; 192 + sha512 = "c4c32627de1e70a9934178bbf05298ccd22194269dfd82907919b91edbbd9ee177c3cbb821e8c62d6aa6fd67207ecab633e80cadfa85bf1fed8d67a508e1da42"; 193 193 } 194 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.6.0/linux-x86_64/nn-NO/thunderbird-45.6.0.tar.bz2"; 194 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.7.0/linux-x86_64/nn-NO/thunderbird-45.7.0.tar.bz2"; 195 195 locale = "nn-NO"; 196 196 arch = "linux-x86_64"; 197 - sha512 = "3509fbcb2955b226d869e43812665c7d2752956f68cff8cd4df3dbb3d0bda2b060218ede3eb9fdae285ed6765ce89c720793f905e09a97d6d22c2e36db890261"; 197 + sha512 = "3ca25a101458c38677eac0998a3d88097d9a56214e2cfb47113ea250e2aa504ad0f2f9f97b94644c39a8079a0ef57ba3a6d89298180f16c26f0e253b25338a57"; 198 198 } 199 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.6.0/linux-x86_64/pa-IN/thunderbird-45.6.0.tar.bz2"; 199 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.7.0/linux-x86_64/pa-IN/thunderbird-45.7.0.tar.bz2"; 200 200 locale = "pa-IN"; 201 201 arch = "linux-x86_64"; 202 - sha512 = "b113f1134df372dd4d369eb9d4c9c30dfe15fc8d65c153ca2087a6ce3ade368554ea2e9561b7d4642f7ec52247071bb323649e884ebd89b8472bc046c1e3be5e"; 202 + sha512 = "8ff5831dad507d975946f30b28c757e3dbab3b48c410df24b9a18e2b01cdc0813640f75603e14a5fadf7f449657b5dbe580cbec2f93f1c010d252c491510588f"; 203 203 } 204 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.6.0/linux-x86_64/pl/thunderbird-45.6.0.tar.bz2"; 204 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.7.0/linux-x86_64/pl/thunderbird-45.7.0.tar.bz2"; 205 205 locale = "pl"; 206 206 arch = "linux-x86_64"; 207 - sha512 = "4ea27afc66451ba40c8cfa22930598925dc18b4b074ab190d8c8866d0f516e9887e8c006ec1564b490a79f67b0b2c88d3fdfa616727e36bf705d780af82a27f3"; 207 + sha512 = "b50a227c15ef35067baa3ce95fe0fc8e6f5cc2d90abd14f3d783198573de530bf0d86b216cb065b73ab540f213cd2a896beb8335a7d5cce150110d3e23e5846b"; 208 208 } 209 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.6.0/linux-x86_64/pt-BR/thunderbird-45.6.0.tar.bz2"; 209 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.7.0/linux-x86_64/pt-BR/thunderbird-45.7.0.tar.bz2"; 210 210 locale = "pt-BR"; 211 211 arch = "linux-x86_64"; 212 - sha512 = "263ac30d26e20733eb332c6ae6837e3ebe7b8c41ff1cc15e47951f22e89873a620218e9caa2a3cfb74a93e619575a4812b362d4908372fd3ce05406d7ef295d5"; 212 + sha512 = "f286dfb2dca8b69569059c39eba7dd2d78037440f64687fb7543f2209d54e5b68884da910a91f87f0f16ba0516d78da65835f56d94a3ccd89644aaee83e0d562"; 213 213 } 214 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.6.0/linux-x86_64/pt-PT/thunderbird-45.6.0.tar.bz2"; 214 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.7.0/linux-x86_64/pt-PT/thunderbird-45.7.0.tar.bz2"; 215 215 locale = "pt-PT"; 216 216 arch = "linux-x86_64"; 217 - sha512 = "90ed68c12871e11165f9357a1e836fe8cf872bf654303c07e26f1bf30979d756e9fe6f034b4265d8f22fe8d31853ba76a983a8c7fe3759d7793f904f8cd0f788"; 217 + sha512 = "49a74c9068102b510995c1634e9a3084216caeb8995b07ad287fe0239040e9a63aa1f3800870912212cf5b94dcbd6672ad96154dc19589804f63eab8f9e0213f"; 218 218 } 219 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.6.0/linux-x86_64/rm/thunderbird-45.6.0.tar.bz2"; 219 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.7.0/linux-x86_64/rm/thunderbird-45.7.0.tar.bz2"; 220 220 locale = "rm"; 221 221 arch = "linux-x86_64"; 222 - sha512 = "ba6aa5a07a06e57a4241f1e9962f4a28b4221032b8b3220cbfec2f3675f808367c586da0fba987e7d1309bb3bcc4d2ed48ea8ef98a6f4a3e65d4fd9fe06c527d"; 222 + sha512 = "c17bade5200a48d8aae39b6084768065709e45d3eb29054c507d038d88d3f2ab4ee0ec4fec111b20c5acec341817fd1ac52babcf581b985d0e28e8e2a35e1934"; 223 223 } 224 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.6.0/linux-x86_64/ro/thunderbird-45.6.0.tar.bz2"; 224 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.7.0/linux-x86_64/ro/thunderbird-45.7.0.tar.bz2"; 225 225 locale = "ro"; 226 226 arch = "linux-x86_64"; 227 - sha512 = "caeecf69a9da3dfeb2c3ef8b0d8733e81e32ac201c0c5b60206160d47172863c91f2a0fddf3e7d2f707918934467c01a0dbbe1f63e3859a7106974b3a5f084a8"; 227 + sha512 = "f146430b29fd011df252a077bb283221b3af1ce7dea1f482f807624326909a98e9dc18debaa184b3704554fda591961b70c5f09748c8d523e309dccc08c790e8"; 228 228 } 229 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.6.0/linux-x86_64/ru/thunderbird-45.6.0.tar.bz2"; 229 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.7.0/linux-x86_64/ru/thunderbird-45.7.0.tar.bz2"; 230 230 locale = "ru"; 231 231 arch = "linux-x86_64"; 232 - sha512 = "22727502ca4dec94470a71456c19ffd7f01b75118480ae67ed4849510bf77c8ec1359ddb0233e41c1b1dbad219ad5111d0b11c6c7ae7258ec10167f27b08f197"; 232 + sha512 = "3794c474c09e20c9c58359a005377fa7a2336c72399b7149191c54dc824031377470b8b105d731380efc3a89f73c7befa18a443210affc3d8062943d8db9f544"; 233 233 } 234 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.6.0/linux-x86_64/si/thunderbird-45.6.0.tar.bz2"; 234 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.7.0/linux-x86_64/si/thunderbird-45.7.0.tar.bz2"; 235 235 locale = "si"; 236 236 arch = "linux-x86_64"; 237 - sha512 = "b872fb53f0380f77dd4dd87ccde7151db206adaa81801aa907db398df1a51bf3ae65510c452b035cf71c9000dd949106c9d64f44cbde7f1419cc41e403ac6d29"; 237 + sha512 = "a06ad8b09784b1dc291a3196765f98b89ca66b1c68b1546b3cb71864c73339063af62e8f06ec3518c6508cb54dc2f3cc93b50906a3ff9cba88809ee9b18c731e"; 238 238 } 239 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.6.0/linux-x86_64/sk/thunderbird-45.6.0.tar.bz2"; 239 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.7.0/linux-x86_64/sk/thunderbird-45.7.0.tar.bz2"; 240 240 locale = "sk"; 241 241 arch = "linux-x86_64"; 242 - sha512 = "32b1e962e7e4e6aa8d198e080a09b43d21cb307bb8a3af50fc7170748604ce3b6f96b5f59b56b5c0edd61f7af31ccec9446aac50ef9eb94e5ef7a48c71e99541"; 242 + sha512 = "6f4a883e1da1dc3902e0230c2105eda528e882caeaac0762c8a7bcd5e9c63e003bb803f921af2e7f9c7a21f34fbbb3558222d8e018f083553d5f532b915896c7"; 243 243 } 244 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.6.0/linux-x86_64/sl/thunderbird-45.6.0.tar.bz2"; 244 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.7.0/linux-x86_64/sl/thunderbird-45.7.0.tar.bz2"; 245 245 locale = "sl"; 246 246 arch = "linux-x86_64"; 247 - sha512 = "c9192435795c677aae642884e773362d17e5afd8e5943e2759d1486e4ca5bddb35be3c99a4b6869aa7018db4bffa09f0b63e500eb26a00cd35c141543eec0a00"; 247 + sha512 = "328199364bcbf2816fce38597fe8554dc0ddf31cc1ab027c5b7e1a490d7261e4c440938ede308e7aabfa3a05f9b7ba9880209eaeab306022e4b46fd0eeef5b94"; 248 248 } 249 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.6.0/linux-x86_64/sq/thunderbird-45.6.0.tar.bz2"; 249 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.7.0/linux-x86_64/sq/thunderbird-45.7.0.tar.bz2"; 250 250 locale = "sq"; 251 251 arch = "linux-x86_64"; 252 - sha512 = "2150abcdded45107ce54ee58f55bbb78f9fdd0fae143fe423e14f4debfa4819c23b021c8d4d36dfe606e206d3dc3deda0671cd08f6d82f7ceca7e7591e7df3a6"; 252 + sha512 = "a04e1b5d44fdaaec2ddc49d531eef3c7bb84347533f84e0974a243a5b3b90ba8acee63080ba191b5404432e4ec597ced4cd69d674d1ec50e21825ff79fbe7af1"; 253 253 } 254 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.6.0/linux-x86_64/sr/thunderbird-45.6.0.tar.bz2"; 254 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.7.0/linux-x86_64/sr/thunderbird-45.7.0.tar.bz2"; 255 255 locale = "sr"; 256 256 arch = "linux-x86_64"; 257 - sha512 = "a9bdf3062d72095d080ad309f25bb8aa27635d3497fd99e6982ae3ba635f61c97e66fe9aefb88466f6f22c6e691692d70abe00c10294353d88fc288111dad6f1"; 257 + sha512 = "f9439cb927e37769e3da2e511865114d9cb76d2a8de6de4b83f240606609501090fa8f0348c515aebe97d7214842c2731de24f3881baa32fc04b0d2779711704"; 258 258 } 259 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.6.0/linux-x86_64/sv-SE/thunderbird-45.6.0.tar.bz2"; 259 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.7.0/linux-x86_64/sv-SE/thunderbird-45.7.0.tar.bz2"; 260 260 locale = "sv-SE"; 261 261 arch = "linux-x86_64"; 262 - sha512 = "4353836558baf234d4dd3376a6262ac0af576f16d725c71ec5eb994a72599e748d2334cb916a3050db8f719aa68f2f9d7204aaa4a41ff9da339db933fb64d496"; 262 + sha512 = "db3c318588b029cac92b0d4f85da41aa09538e1c8941719fa2a87302d5d025e83c08a86ce720417b1dd8810b7284c1ff913bf299791c60b5babc1a81e7cbfdc4"; 263 263 } 264 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.6.0/linux-x86_64/ta-LK/thunderbird-45.6.0.tar.bz2"; 264 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.7.0/linux-x86_64/ta-LK/thunderbird-45.7.0.tar.bz2"; 265 265 locale = "ta-LK"; 266 266 arch = "linux-x86_64"; 267 - sha512 = "9f4c8192c6d683325efcfed3d5ccea7218e2eaf3193ccde00be8542f13e8b3771d2a3690ff212cabaef067452f72061fb47a8184ef16fdf59d687e3b760126a5"; 267 + sha512 = "976fa4171b0f7f085cb5d5d5ca23cc009c26bde5bedc4c8ebd76e30d6dc75b19ba3022167639b4df03d85865f2c9e1725a70e2badae644622a233a1d74a3a989"; 268 268 } 269 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.6.0/linux-x86_64/tr/thunderbird-45.6.0.tar.bz2"; 269 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.7.0/linux-x86_64/tr/thunderbird-45.7.0.tar.bz2"; 270 270 locale = "tr"; 271 271 arch = "linux-x86_64"; 272 - sha512 = "12f567a390f44a79af8615f677b87164d74172f7540ebe6d08023e017576493b0da5a63c466ffc2c3a4c406b0d9e8753e00aaa45dd1acb751621cbb8d9e53415"; 272 + sha512 = "fd336f9880d03cf276d8749afbd605452344d3e7966a260e81020f59eb30166f10ba0d2bc17ff0e635a5cb1d15dad46cae36629526cc3383827ca162743c3642"; 273 273 } 274 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.6.0/linux-x86_64/uk/thunderbird-45.6.0.tar.bz2"; 274 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.7.0/linux-x86_64/uk/thunderbird-45.7.0.tar.bz2"; 275 275 locale = "uk"; 276 276 arch = "linux-x86_64"; 277 - sha512 = "844e7ee825d304ae19edfbd4c324ba11c2037c9a97fc96f8b99da7fc3ad0137d3106069fdfb06814d2df20a75c6051416b52448ec56980858c70110676294f90"; 277 + sha512 = "3f9ae50655d274ed6a7022a2af0f9f403a835dd3d76027f176ddfddf4fc3095b1e5951cbdf043e449a34b387b7ad446740a01c2867573064039e3a1b34f7f66b"; 278 278 } 279 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.6.0/linux-x86_64/vi/thunderbird-45.6.0.tar.bz2"; 279 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.7.0/linux-x86_64/vi/thunderbird-45.7.0.tar.bz2"; 280 280 locale = "vi"; 281 281 arch = "linux-x86_64"; 282 - sha512 = "35c0fee2083c922284fc11a048150d53a343fe7980160d2c4cf2046e588056457b4e5876dfceb51b79a828886d9671a1934d51079c6d1e64e9af979927d9d8db"; 282 + sha512 = "82fccaecc5e654f4d49292bc8d45d7b27aed13a63df0cfd7eccd8b06131f5cb3053d1e3dda5e6cbeedfa6df275833fa38860c0ddb6cf59402b2e4c3aea208cad"; 283 283 } 284 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.6.0/linux-x86_64/zh-CN/thunderbird-45.6.0.tar.bz2"; 284 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.7.0/linux-x86_64/zh-CN/thunderbird-45.7.0.tar.bz2"; 285 285 locale = "zh-CN"; 286 286 arch = "linux-x86_64"; 287 - sha512 = "039cb44b4e07fdaf6d9b1eb717baf798b3f3a3cf8726ce97b4fa7ab7e938b9365158597747e406916ae35150c9cf96af74590c5189a64ddfbf65740c1cd45c5c"; 287 + sha512 = "d4d35875d1c0edc2d67cccf9804b5dbe66f4808155933515fa6c532f657856bde441c3bf1af9553d4417e4858ca64db112d4d9fbdbd1151cd22d38da09b7a895"; 288 288 } 289 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.6.0/linux-x86_64/zh-TW/thunderbird-45.6.0.tar.bz2"; 289 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.7.0/linux-x86_64/zh-TW/thunderbird-45.7.0.tar.bz2"; 290 290 locale = "zh-TW"; 291 291 arch = "linux-x86_64"; 292 - sha512 = "4721eed25de2cc71728d7cee651fdf51ef5b791873a3e59df2720c0f46269bf375e0e9456024ca4ec9ca31f8178b5af704e2fa9cb057860fa46b72ff4b22970c"; 292 + sha512 = "0d7986de773742dbab8210aa97cf6c7d80b792cfae192a06a3cf1c0b39436431ce174c3b97c5421879eb261960bb5eeb52c8b22abcba208b531fd45896ba9124"; 293 293 } 294 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.6.0/linux-i686/ar/thunderbird-45.6.0.tar.bz2"; 294 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.7.0/linux-i686/ar/thunderbird-45.7.0.tar.bz2"; 295 295 locale = "ar"; 296 296 arch = "linux-i686"; 297 - sha512 = "e149770dd3229d3a00e56cd34848afbb1ff6765e66da4fa449156dc58c6990bd35e442ea8c14cf90e63541a34fbcfec8d8714350186e863ded72391b60622c69"; 297 + sha512 = "8ff8bb47f0a845139f813df40d021a215e498c38149b53f57094b4ee20484f4a0ad668337b6dc79ad8e84d6a6a9b9a99de6fed57accdf5b8dc123b0833961d0e"; 298 298 } 299 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.6.0/linux-i686/ast/thunderbird-45.6.0.tar.bz2"; 299 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.7.0/linux-i686/ast/thunderbird-45.7.0.tar.bz2"; 300 300 locale = "ast"; 301 301 arch = "linux-i686"; 302 - sha512 = "3bf557b9e9ce9f4b84e3407dfed2fbaaa280893033d4bee0724543b6951e0533050b8feeb0a01b4693140815ced705a5ef16e800d149f967bb39329dcbecb5f7"; 302 + sha512 = "8968e2f4d61b4753c6e1cc07a0f61ad6fbe0d205b29b424bfeda4bcdc3b23d3458561eca7287dded12196c008b6ad699f680b61aaf6dd7f4ee6dd7e813b25ed3"; 303 303 } 304 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.6.0/linux-i686/be/thunderbird-45.6.0.tar.bz2"; 304 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.7.0/linux-i686/be/thunderbird-45.7.0.tar.bz2"; 305 305 locale = "be"; 306 306 arch = "linux-i686"; 307 - sha512 = "ace07c8982b68ed259b344aab73790fc9f90f98f39b65a57c6be7463c3918d545c4a0a6ff6df5b8ef7b7b07ae44c7e69a1bfa84c7cc82b9dd62bba075a2a113c"; 307 + sha512 = "2a3b2e5f101a6a69f425494934900d151545a026d8c77a4e08342d3816de5229802c834120e5a797b5691b55fb5e486d21b3dea189ce6ffb8e4323e0f2dc2051"; 308 308 } 309 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.6.0/linux-i686/bg/thunderbird-45.6.0.tar.bz2"; 309 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.7.0/linux-i686/bg/thunderbird-45.7.0.tar.bz2"; 310 310 locale = "bg"; 311 311 arch = "linux-i686"; 312 - sha512 = "fed2ed25fe530939c4116daa3a3a09075812b005a937c36cab385bfb867d703a84feef50e2006f83009a25c0736c9b032c17605b2364d8fde4799d1e9f479b8c"; 312 + sha512 = "09de26308307a0fc43dfde5a5033c737a79d76e80a4f5e457b87a8c8710dfe05acd1fd782e3b86872673c61b9d559162135b017a9f93dc3ef9d93c530b7f513b"; 313 313 } 314 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.6.0/linux-i686/bn-BD/thunderbird-45.6.0.tar.bz2"; 314 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.7.0/linux-i686/bn-BD/thunderbird-45.7.0.tar.bz2"; 315 315 locale = "bn-BD"; 316 316 arch = "linux-i686"; 317 - sha512 = "84190d0cc6884f14ccf4ce06dbd69193f90591becd5d8064ea89c7ec12ec411bf766bff1bc5d5c6f142fa53ed2b9ce494718f7d32a74a027819de32381b24526"; 317 + sha512 = "040523cd6589834870b23de3660a81fd588e2d2ba8c727be6d19cf92ec0b669d79058a8139f0ca7a289493658324216f8fe3fcfeed2721fc54c7c3860bf1e0ef"; 318 318 } 319 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.6.0/linux-i686/br/thunderbird-45.6.0.tar.bz2"; 319 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.7.0/linux-i686/br/thunderbird-45.7.0.tar.bz2"; 320 320 locale = "br"; 321 321 arch = "linux-i686"; 322 - sha512 = "619857fadb8721ccf103a3739a1336e2cafbfa62a0a2ab074254481d50f0d301f7718d47b5a3d42922fa562f1382de2aa8b5256bc62d829400926a494bc19403"; 322 + sha512 = "df02188626d3180ea0822756a116f1b6a4cee6178b0e0fc22bccc3970ea3aa5717b75cb5623f5dddadf354ac0c890acd4f13f434418b7431b944ccef2833aafa"; 323 323 } 324 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.6.0/linux-i686/ca/thunderbird-45.6.0.tar.bz2"; 324 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.7.0/linux-i686/ca/thunderbird-45.7.0.tar.bz2"; 325 325 locale = "ca"; 326 326 arch = "linux-i686"; 327 - sha512 = "3314b1129be6ce854a6b028849167af5f93c289073f962f5de09eb37fc7a2c40eb75b8b361289c879c4b7f752170f05a01dc6ae996bba4a5b706c1deb037cfc4"; 327 + sha512 = "2ab3ff92c2899ca294631e9b0a2402080493f478affb40eee4aad7b001c7a7d8f8cc81b5659c16d7d134c8ecf6e8f1447fd6daccf7ff82b03f283be55638bde3"; 328 328 } 329 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.6.0/linux-i686/cs/thunderbird-45.6.0.tar.bz2"; 329 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.7.0/linux-i686/cs/thunderbird-45.7.0.tar.bz2"; 330 330 locale = "cs"; 331 331 arch = "linux-i686"; 332 - sha512 = "07d21c5f4aef38b9f7b330bf0c06f10ba3fc7cfeedcdd45e45ffb9ad4e5b1f729cb5d249028a87a8ce122da96c240447a6eed4be2220e302a2c55ac39cb1628a"; 332 + sha512 = "7ba56912a4ce6e87b6e4a1303f254608960aa2a156e7d246230e4dbaaf50f083b9f4afc52e89966caea6fd64eefe3dc9bbcdfccd1c0e65910efc49e44bfd5a76"; 333 333 } 334 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.6.0/linux-i686/cy/thunderbird-45.6.0.tar.bz2"; 334 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.7.0/linux-i686/cy/thunderbird-45.7.0.tar.bz2"; 335 335 locale = "cy"; 336 336 arch = "linux-i686"; 337 - sha512 = "b2f86ed9ebfd8124611f6d9e20cf36322e36cecc2fea688649b9f6df231d65ed4cad192e12b7a27367b3b7706e510c5547c5bb22aedab76d420540cea9b81ee5"; 337 + sha512 = "f74b4829ada40e7b507012ae77cef420d3e8f77b41e8adee352dd1f91300f090e98dafc852f7983d04a8eea4ae90d1978301c39347aa75ad68eec42822a9c1fb"; 338 338 } 339 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.6.0/linux-i686/da/thunderbird-45.6.0.tar.bz2"; 339 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.7.0/linux-i686/da/thunderbird-45.7.0.tar.bz2"; 340 340 locale = "da"; 341 341 arch = "linux-i686"; 342 - sha512 = "00ef125afcb33ebd5f11b765c9c3ea9e3e240e3416d00012cbf1b82377f8d610ab2b4aac800d7a0ae0f443447840b35d92e58600d83dfb6c6dd76e8ecabd3924"; 342 + sha512 = "29139a2f285a684952a209e898e444af2290b32940de11f3a93db472985bab2071d813dd69e73df5422f8088772cf76591a792b567a957d9a36aba54102603d0"; 343 343 } 344 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.6.0/linux-i686/de/thunderbird-45.6.0.tar.bz2"; 344 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.7.0/linux-i686/de/thunderbird-45.7.0.tar.bz2"; 345 345 locale = "de"; 346 346 arch = "linux-i686"; 347 - sha512 = "05e1cae57b9a2e2fb274c2efc130e596c5f6c35ce14055156f728a662e9f8f5423a42708629726e0a70e3420aeb1d9b3b224c019cbbaa6f4a0cee69f78c740ac"; 347 + sha512 = "5cf919f3ff9911068b57afe972539a5f5c35335cc1b2462437cd31767d2b949305d77f30a839e89421c60a92abe63be3b4805acc0c5c37eb4f95e3e465449fc9"; 348 348 } 349 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.6.0/linux-i686/dsb/thunderbird-45.6.0.tar.bz2"; 349 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.7.0/linux-i686/dsb/thunderbird-45.7.0.tar.bz2"; 350 350 locale = "dsb"; 351 351 arch = "linux-i686"; 352 - sha512 = "dd0dadb02dd11dc9c39c6aa67eb995b786fdec47e966cb79177bde56400300b214ba90509a50ad839b36908da18829eb02431a4e1cae3e878dcb3debed258bc1"; 352 + sha512 = "989afa417e7819de693327caf9c13a8e2704aef0627795807c715e0c4a2bde9f2a5c67ea13d0a541cee79d74643cec58c07d1a8121ebc86ecf1c4b121c10f777"; 353 353 } 354 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.6.0/linux-i686/el/thunderbird-45.6.0.tar.bz2"; 354 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.7.0/linux-i686/el/thunderbird-45.7.0.tar.bz2"; 355 355 locale = "el"; 356 356 arch = "linux-i686"; 357 - sha512 = "12fc5fe4fb9fcccc295cd05c46850dab1ebfa81e0fc1ea073c493ef7c8db73e2c96999e9b1a29cda8f8cfa5437920f8a6b88d3b6911fd88dfde2673563e2afc1"; 357 + sha512 = "20679e832ded809351203c788ec4e87a303ee6dfeb56b5bdeb6745a59d8ec3980e42356126ee20abdba35143fe7f7e24112aa6ddd9059c7fa9b1919b730c4f06"; 358 358 } 359 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.6.0/linux-i686/en-GB/thunderbird-45.6.0.tar.bz2"; 359 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.7.0/linux-i686/en-GB/thunderbird-45.7.0.tar.bz2"; 360 360 locale = "en-GB"; 361 361 arch = "linux-i686"; 362 - sha512 = "0e195cd68923d8b8bedb4028d17b08d029eecc82d0b40de575b55d573dda6227684043cf50c959c790746a6b38089e02cc996cc8a23cb31011c6fe4c3fd2ae89"; 362 + sha512 = "44b92fd4895d25e43e4875f2f654886f2bfbe1d97643eec7da098bff9046ce61a2423a55557911dc1c02bbb49e44d907b31adcb3743804ef358ce38d86691b0d"; 363 363 } 364 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.6.0/linux-i686/en-US/thunderbird-45.6.0.tar.bz2"; 364 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.7.0/linux-i686/en-US/thunderbird-45.7.0.tar.bz2"; 365 365 locale = "en-US"; 366 366 arch = "linux-i686"; 367 - sha512 = "d3ceea1ef1e3562d682882b14f518f917143e4c4417ac07e8a474c52a57ccf0169fe1580355dcda0710e03c67b46eeb78fd59b31b831b8f431ef1a0cd9a37c2e"; 367 + sha512 = "3aad942932385264efd5eec81aeda2bae552b281f89416a6228f9f3b6f7f58e927fdf46d8da0064e51a792d2e4deefecc17717422ee911691a2305d72fa8f913"; 368 368 } 369 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.6.0/linux-i686/es-AR/thunderbird-45.6.0.tar.bz2"; 369 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.7.0/linux-i686/es-AR/thunderbird-45.7.0.tar.bz2"; 370 370 locale = "es-AR"; 371 371 arch = "linux-i686"; 372 - sha512 = "19a3703f4f3fc5ce82ac8f69468fabb494ff663ed0b507af4a7cb74fcfefc5eb7e8090771392a800cbec88897c9c00315b457289eb1be860e1b47dff2f25a5d3"; 372 + sha512 = "28bb08df80f60ea268b4d8706a61cc6ead17c059d2d05d3017e6199a4c5c73bbb63c3159d9f35656749b6c1990a4938ebb6b10c1d016504b3346fbf9b18b6182"; 373 373 } 374 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.6.0/linux-i686/es-ES/thunderbird-45.6.0.tar.bz2"; 374 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.7.0/linux-i686/es-ES/thunderbird-45.7.0.tar.bz2"; 375 375 locale = "es-ES"; 376 376 arch = "linux-i686"; 377 - sha512 = "706987651522f9c843c8771a4e58c474661da8a45104e1dfdd1b72be74c3a43d9eaaf4f9eb3661718c4237515afc90272c535579d0db1fa3715a29d03bef36af"; 377 + sha512 = "dff7c77e94b7ad138b153e9a83934da72a2f57db5c1a6404a0c47fc26c2ae241b5c65ac56f499e54f8cf488a9fc9d144194326afb710f959bafdd4b9c56a7348"; 378 378 } 379 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.6.0/linux-i686/et/thunderbird-45.6.0.tar.bz2"; 379 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.7.0/linux-i686/et/thunderbird-45.7.0.tar.bz2"; 380 380 locale = "et"; 381 381 arch = "linux-i686"; 382 - sha512 = "3ec0d0fa4ab85a3ce958b8c637e4d208f803e861f3b544d3f15a79ac1e1704efa963eb127f1687cbe5f4e75926bf1731bd9fd781a6e7fdda07035766eba8d39d"; 382 + sha512 = "a3ec79f99783b5ae9ce6b3d690f959bbb80f0a41396bde676f9b1bf8a68e39200525a35c8932123906dfbd84df4b6de19e0a9f27c2d3883b2a3c71c1349e5969"; 383 383 } 384 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.6.0/linux-i686/eu/thunderbird-45.6.0.tar.bz2"; 384 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.7.0/linux-i686/eu/thunderbird-45.7.0.tar.bz2"; 385 385 locale = "eu"; 386 386 arch = "linux-i686"; 387 - sha512 = "54eaeebfce0f0c805954be911c3ac666993d9bf927ccdb01ce0f322524451523ccb7d6d8fee473eebd9cac14d6653655de8f0e6861f8d4fb0953658cd808b74e"; 387 + sha512 = "90255f58a358fa9e9b27d36b1b9b954d753ef584118f84405bf4b4d1dde4cf2a19c3dda91b30551f03b1d07c2f96c00f8ba72726fb2f4c325f7db82387fd45c2"; 388 388 } 389 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.6.0/linux-i686/fi/thunderbird-45.6.0.tar.bz2"; 389 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.7.0/linux-i686/fi/thunderbird-45.7.0.tar.bz2"; 390 390 locale = "fi"; 391 391 arch = "linux-i686"; 392 - sha512 = "51d09e9b7ecbf4891ceee5fde9fe00ce2ac9cbf4a2fc0a3f1433e7004677d6fc35067734c3f0506362b346953423f71844937c1187db9194ebe952adad1abef6"; 392 + sha512 = "d19f0a819a3b5b04038cfaf7adf3ec4da337789ad5fd809b27447427838140fffb35a5bab8a0e018d65fa467935fe691a578ce044eb57d746b4df48f879ac8c9"; 393 393 } 394 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.6.0/linux-i686/fr/thunderbird-45.6.0.tar.bz2"; 394 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.7.0/linux-i686/fr/thunderbird-45.7.0.tar.bz2"; 395 395 locale = "fr"; 396 396 arch = "linux-i686"; 397 - sha512 = "0c3b9635cf107cdfb91c4cdc4771c25b112fd7d87341c88259a5670c5fa716e105cb910b1b6b85d8c22d518abba5a538f87250c8bb34c71df4cb98bf7026f8be"; 397 + sha512 = "0e9204299add1f7ca774b59eae56d8a04c3a575894f9824d7d60c19769e2bd596def6537dd07cdc7e025ce2cf0220577864dd1f0701c2fdfb39c22e87ac03e83"; 398 398 } 399 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.6.0/linux-i686/fy-NL/thunderbird-45.6.0.tar.bz2"; 399 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.7.0/linux-i686/fy-NL/thunderbird-45.7.0.tar.bz2"; 400 400 locale = "fy-NL"; 401 401 arch = "linux-i686"; 402 - sha512 = "45adb1b96d4d57c5302ca373f193b5a7e0a9f8577fabcb37c184bc8aaa66cdd4b0136e810af0ca8f1a7727fd51d60ee1006f6dc3e5fd182ff45056fc923d7d13"; 402 + sha512 = "d62bb3d3fab33aa5556d80ae7331771f8ae8efd389d301c98aab57debb6aec0765bca89bf254819e3b7bcdda392a12f27771e344b486027cb8faa5fc051f5a05"; 403 403 } 404 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.6.0/linux-i686/ga-IE/thunderbird-45.6.0.tar.bz2"; 404 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.7.0/linux-i686/ga-IE/thunderbird-45.7.0.tar.bz2"; 405 405 locale = "ga-IE"; 406 406 arch = "linux-i686"; 407 - sha512 = "4c3453566e747b57f94ef980a7d9b4d2a1c5b78584b0bcf1eea4d8c6b26ca177f18cf94811e5301a12e7de8939a11bbebe202683449b367f29a391a94d020cb1"; 407 + sha512 = "30248eb96c52255c476dc43aa5232a1185143d5fc56a246fd8d1219c573a63eee1a583d96d470b8bcfdfa1e48f6fa8e49c10c990ee75936078dc5ba2612af533"; 408 408 } 409 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.6.0/linux-i686/gd/thunderbird-45.6.0.tar.bz2"; 409 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.7.0/linux-i686/gd/thunderbird-45.7.0.tar.bz2"; 410 410 locale = "gd"; 411 411 arch = "linux-i686"; 412 - sha512 = "ba0f0ee9c8a2a64c414e1621c8d5ce47194ef144f026e3306cf2c81d214fd0e1df541fea11dfdc2de7629cdc8ba2a4aaccb16dc7cc0c3404925177b893ca5d73"; 412 + sha512 = "853cd5f940c155aaabea87b2436282ee9e60de0744aa28426ebe7d5d3a2cda653c88c9fd5c1cb335fe5e4447b8b4eee79674dc5bb18a113e665906e13a5faadf"; 413 413 } 414 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.6.0/linux-i686/gl/thunderbird-45.6.0.tar.bz2"; 414 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.7.0/linux-i686/gl/thunderbird-45.7.0.tar.bz2"; 415 415 locale = "gl"; 416 416 arch = "linux-i686"; 417 - sha512 = "f1d948b366842bfc2fd349ccae3c6c9f586fd69e99f0a0f9804bf3bff25ce6262451513952ad30f128626bffd6f9719d377868fb7d2fa56d8b6f54b2f4751ea8"; 417 + sha512 = "3505a993c4f0062be5108096c104e8d2c34bbd677036f3facbc9e71cdff66dcdfcf720b02065e03e18030f81c3571d8d971febdbc8e593ea7cb3b52d5cdfa969"; 418 418 } 419 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.6.0/linux-i686/he/thunderbird-45.6.0.tar.bz2"; 419 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.7.0/linux-i686/he/thunderbird-45.7.0.tar.bz2"; 420 420 locale = "he"; 421 421 arch = "linux-i686"; 422 - sha512 = "1e0f048b272b4927d19f66390577ae2a37a32dadc24e36a7cdfd48e4257db09f5433c2812429c1700a5fa1f3630deb3c43db316de921d8e9be58f41388d2502d"; 422 + sha512 = "183c71c1b5745d27d6e5a2a9f6131e5a8da942fac1e3c4b1111973d0c22441a264119a088c7f3fa525dda31c40177c6017b7e67f9e518f851c41a16180b88533"; 423 423 } 424 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.6.0/linux-i686/hr/thunderbird-45.6.0.tar.bz2"; 424 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.7.0/linux-i686/hr/thunderbird-45.7.0.tar.bz2"; 425 425 locale = "hr"; 426 426 arch = "linux-i686"; 427 - sha512 = "a821b66d67f32c84d0bf4172fb82ee487c13703122821042b00739890777573288c31c5178f4dfb6fce587eb58a19eaccd6f23b4b8f3d851fc203293674fb510"; 427 + sha512 = "485aa2be69afc9fc9576ef03b19d33423c15667096b57c5b6b47ab303d0ea5376c1a01a1d92a4c679874bff109a6206c585adcc6f6ed954ce17343722d4ba7ab"; 428 428 } 429 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.6.0/linux-i686/hsb/thunderbird-45.6.0.tar.bz2"; 429 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.7.0/linux-i686/hsb/thunderbird-45.7.0.tar.bz2"; 430 430 locale = "hsb"; 431 431 arch = "linux-i686"; 432 - sha512 = "c756ae475fc1964ae915a68313411ec8ab4a7d4744685de2ffeaaae33d58fcc08712657a2f030b1b358d02d9653c26478515ecbd915881e33cdaca9d9842fb38"; 432 + sha512 = "8bf706f4b5662e5febd4a23cd939af570e75fcee4f0af2304b7239349eb4ee40a361eaf5cb02d103db4cb80c5962d9a549b282d0692dfb335dd1d0206ef9d604"; 433 433 } 434 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.6.0/linux-i686/hu/thunderbird-45.6.0.tar.bz2"; 434 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.7.0/linux-i686/hu/thunderbird-45.7.0.tar.bz2"; 435 435 locale = "hu"; 436 436 arch = "linux-i686"; 437 - sha512 = "d2f68c86f57fb9351c5c2ba74a8976bc89810634dbf5a521c34a553ccb6ff27eaf66fdc92e50c0f226246e9fc25316d4305feea1c3801513f418f58dff1955bd"; 437 + sha512 = "de6aa8dc185ba3fed516fa478dc9c66211f26bde7e21d6b2b86b19ad58e192ca4540bc0847fbd5d24c4f32602f05577cffd2c3046f5282afbe55432d2ef16bd2"; 438 438 } 439 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.6.0/linux-i686/hy-AM/thunderbird-45.6.0.tar.bz2"; 439 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.7.0/linux-i686/hy-AM/thunderbird-45.7.0.tar.bz2"; 440 440 locale = "hy-AM"; 441 441 arch = "linux-i686"; 442 - sha512 = "42ad523ad7f30638a69d8d549491af06ab9f740f8eb0b81e681236a09ce39de3758e2af61f2857293d085603f3530df3edaa23c19a014034528d3d130517fcef"; 442 + sha512 = "2c9138c07246475d7fd9be05f631126f0051b2cb7ad688d6d4bc02254d5b9fce3eaebea7b8ff8df6e82d45211ca0279a03b8616d776dc30bc0a30f867ff01214"; 443 443 } 444 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.6.0/linux-i686/id/thunderbird-45.6.0.tar.bz2"; 444 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.7.0/linux-i686/id/thunderbird-45.7.0.tar.bz2"; 445 445 locale = "id"; 446 446 arch = "linux-i686"; 447 - sha512 = "42a023e474e440b8201dbe5caaa7354546f89d5e4e9fcd34152dae93349bab8872f6060e5029fa629fd9853999ecf08688e51a2d9a16400265bc5c61a9abf783"; 447 + sha512 = "2bed57e5998da429c80e2e04a4250c58bcdc17214a94a80d1d03bdefcbf7567bd65ac3ceb46f7b9d59ac37eec0bfe31f4050f02894be6828c2fc96488e4290f2"; 448 448 } 449 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.6.0/linux-i686/is/thunderbird-45.6.0.tar.bz2"; 449 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.7.0/linux-i686/is/thunderbird-45.7.0.tar.bz2"; 450 450 locale = "is"; 451 451 arch = "linux-i686"; 452 - sha512 = "6fe784f65ee584a1fb9fdc962be412e09ff43e88afa29365ddabf6a237ae7a1c854c05d5e3b3bbef83653fae94646c7a32144c2f7907304573b5f71e5f978ac9"; 452 + sha512 = "ba2e12db8b2ef82971762bb13e802bdf1e65252843687b40dee0455e6de46083220904cdf51c492ccdb13c7390b8692e5d4db7e4f170c88b545ee17e50710083"; 453 453 } 454 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.6.0/linux-i686/it/thunderbird-45.6.0.tar.bz2"; 454 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.7.0/linux-i686/it/thunderbird-45.7.0.tar.bz2"; 455 455 locale = "it"; 456 456 arch = "linux-i686"; 457 - sha512 = "dae36c69bfa5cc80ad9489c76acdc6094f5fcd2c41f8c2f5dcd5d8d103aca564daaa96b27426f8096aaf555b6786f7d2c2227cbf1096d7eae53285b337d8221c"; 457 + sha512 = "e1fbedc1c8eb67cb0528ffc8c103cf0606a43240471e920fdc3cec4c3cd0ac357878992ee67a2eff90f8abf5c6654a27f17dc37c69d0d828d3e9c3fd0345e34a"; 458 458 } 459 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.6.0/linux-i686/ja/thunderbird-45.6.0.tar.bz2"; 459 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.7.0/linux-i686/ja/thunderbird-45.7.0.tar.bz2"; 460 460 locale = "ja"; 461 461 arch = "linux-i686"; 462 - sha512 = "c33ba443ee0556b28b60ba4517913d54a931cc2b63339262b35a1d576166e9abe1e7f6297f11683397a13f5c7b71cd96f97e60ad1a956aa27ba9fbd7f0c5fb43"; 462 + sha512 = "2741dcc26e73c0ef5fee48b84b02c336310aa15004d4b7cc2781e80f045dd5ba5b21aacc9c90e223c22c4491914810c6df9435d025ea76929605fc6462f6713e"; 463 463 } 464 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.6.0/linux-i686/ko/thunderbird-45.6.0.tar.bz2"; 464 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.7.0/linux-i686/ko/thunderbird-45.7.0.tar.bz2"; 465 465 locale = "ko"; 466 466 arch = "linux-i686"; 467 - sha512 = "0587a7bb7218b16c859717e99a3fd96e697b3a32dd322361edfbaf0b069522914e84b74160466d3b25fac76d925af485b9688fb5a3e072f1eff94dabb0239669"; 467 + sha512 = "5236c168604748c2a3edb8f0ffeedaa51792fceb61e4b5439932324c8bf94304ff65598655f2c6f66260c253563a381cf99ab5c07dce89a3728afef346e48e66"; 468 468 } 469 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.6.0/linux-i686/lt/thunderbird-45.6.0.tar.bz2"; 469 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.7.0/linux-i686/lt/thunderbird-45.7.0.tar.bz2"; 470 470 locale = "lt"; 471 471 arch = "linux-i686"; 472 - sha512 = "0789f1357a0c2a61fa676c9c375c79c29e78c3b3bf8faa2a392ec90714e1e581bd07eb75628284e6873c66553c613e7b43a18532a01cc66510f0bdcbef5f5b83"; 472 + sha512 = "2c919f8835753afcf6f9d7cb027c1df8e00f6d197a0fe26e3de7222bed2a54028843974cf2b0ec2d88a29e22e6ad84192b1ecc3057528647db8b7e9eb29f040c"; 473 473 } 474 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.6.0/linux-i686/nb-NO/thunderbird-45.6.0.tar.bz2"; 474 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.7.0/linux-i686/nb-NO/thunderbird-45.7.0.tar.bz2"; 475 475 locale = "nb-NO"; 476 476 arch = "linux-i686"; 477 - sha512 = "906ebc96274cc490b82b434f648ba33f16a4f2b641e99142fcf18cd24701ed0b4b34558b2b380a0ff1d4ebe253ffd99d6b2cf4b9cf059a3f071c9e3bee94dd0b"; 477 + sha512 = "dbc4609240a5cf5e6db64360b386da196039fb6d7ac4517b8f5de5466dca830a06b284db2f7db7d4352f5cffe2122277e90b37b2a2533dd9a3a3ec1691c8824f"; 478 478 } 479 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.6.0/linux-i686/nl/thunderbird-45.6.0.tar.bz2"; 479 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.7.0/linux-i686/nl/thunderbird-45.7.0.tar.bz2"; 480 480 locale = "nl"; 481 481 arch = "linux-i686"; 482 - sha512 = "d18b521eddf0e71cecb33473275bb44038717cefadddc648441b0d4c7a01aaa08e45fad28e3eb74e8d01d1a637db1ef4d999d45a83c2fcb3aa3e7430b73b666f"; 482 + sha512 = "b7f0517d2eda98ab6d6de52513eb7493231eb1e319862256798280c1fc924af8a0f3330bf8aac01916b54d54b2b5c7427897a6b2516229e4387a77424a349f4c"; 483 483 } 484 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.6.0/linux-i686/nn-NO/thunderbird-45.6.0.tar.bz2"; 484 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.7.0/linux-i686/nn-NO/thunderbird-45.7.0.tar.bz2"; 485 485 locale = "nn-NO"; 486 486 arch = "linux-i686"; 487 - sha512 = "66f7b07352f7a6064d3a805d8d348ae4956240b42359a2d3fbd1d96291a025e1f4920ddcb0cd9312e1d8f146fcceae4e0d9811a9e6ae43479307aa204d8de8d3"; 487 + sha512 = "cf3ffbc00fb2553bf87da5f0efbd5d115d717de04a047f0cbdc17bb500dc05880495b3242c5d75801374418d1aa6f173303cad7f9325558cd6da6c67d42b675c"; 488 488 } 489 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.6.0/linux-i686/pa-IN/thunderbird-45.6.0.tar.bz2"; 489 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.7.0/linux-i686/pa-IN/thunderbird-45.7.0.tar.bz2"; 490 490 locale = "pa-IN"; 491 491 arch = "linux-i686"; 492 - sha512 = "828e57876a063979f945d0cee371b57e43d2f26eba4723a8983b448b85a091a303da068f17ba73f1eb23b35e06d9b3a37b56d9a3be49c202c950d2bd2ed9db05"; 492 + sha512 = "70d224c9145cf6225335cdbbfd137d73131651fa22cc326657c0e75c3c1c4a73730c4193d575da5c7881bb607ddfebd74ce428a1425e12b60e5dfeac661bad02"; 493 493 } 494 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.6.0/linux-i686/pl/thunderbird-45.6.0.tar.bz2"; 494 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.7.0/linux-i686/pl/thunderbird-45.7.0.tar.bz2"; 495 495 locale = "pl"; 496 496 arch = "linux-i686"; 497 - sha512 = "6ca824649b5f030423213dd573018af5b6a8033fa86b6b23c5b99e59afdd5234cd2c7a8237124dabbf75175511afff980dd3d971f59967c3522b633680d7277a"; 497 + sha512 = "664c04d5650c24ae6c2422b41dbaf737fe83b8cd142a869b5ce4042688bc3c4da26fea9bd034a9ab978cd8404cabc90822c3ba23983fb75bfd0118570b0eb9d5"; 498 498 } 499 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.6.0/linux-i686/pt-BR/thunderbird-45.6.0.tar.bz2"; 499 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.7.0/linux-i686/pt-BR/thunderbird-45.7.0.tar.bz2"; 500 500 locale = "pt-BR"; 501 501 arch = "linux-i686"; 502 - sha512 = "399dc86d31375ea3af21e6032b686ffdec65a3c0ca403d95bc89e0e7715e6c998dc846057ff4a6b919fda794a9fdabb53eafd7a07d8894a65e1109c9c52e43d1"; 502 + sha512 = "a25f39972af8ce6181ca703b7f35307e74c436a476e1a3482d770aca41275b98373ad8279ba0095c68b5518c525d0813a3d215712d65aef661af8cef5d97ae52"; 503 503 } 504 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.6.0/linux-i686/pt-PT/thunderbird-45.6.0.tar.bz2"; 504 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.7.0/linux-i686/pt-PT/thunderbird-45.7.0.tar.bz2"; 505 505 locale = "pt-PT"; 506 506 arch = "linux-i686"; 507 - sha512 = "f758fb69c99c02fe1bcab8c9a4b02eeebcc190c30e73f4b009521c36956cc7f076e1f544181a332807bee93ec39d7d170cca3f0d87fc6ed89b60a4515c394749"; 507 + sha512 = "4fab35699dc609be69a1d613b5996d412b6c79c2b79f04466ea862713509abee1f12e1188371374027a37df953dda810d44dc066c9cfad2737bd5dd433beb522"; 508 508 } 509 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.6.0/linux-i686/rm/thunderbird-45.6.0.tar.bz2"; 509 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.7.0/linux-i686/rm/thunderbird-45.7.0.tar.bz2"; 510 510 locale = "rm"; 511 511 arch = "linux-i686"; 512 - sha512 = "d338c243cbfa41e5b54195923bc12876e45683271df477d492058973dbc0f7352d59863a3bde571ab001612b8ce5704512f1bc0ad1e8af066f7aa448b5c89f0a"; 512 + sha512 = "4167aabf7a012824637ecc1e356b983e79a91c02d5079bb2d99546c99fdd3e7631323420d78d4b8fda596d8a9bec82ebb02d0a8092af5c71ff3b7536ecb77df8"; 513 513 } 514 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.6.0/linux-i686/ro/thunderbird-45.6.0.tar.bz2"; 514 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.7.0/linux-i686/ro/thunderbird-45.7.0.tar.bz2"; 515 515 locale = "ro"; 516 516 arch = "linux-i686"; 517 - sha512 = "2c011b2cef9c5761c1297b2cc2dcd442ae9fd8d0f28d0f469aa2abbd6da80fe11bd607df8fb224ff03bd21932bdd40591532722756c467b498313da0f639c3fc"; 517 + sha512 = "b642339e49fc0c06481d9fcfdbcc1234ec2313ffbe0c6825d34ae1447b128afe1c20c5c983a565be1a42d740a9989548b59c9fbb737e952d7aca0804d41be75e"; 518 518 } 519 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.6.0/linux-i686/ru/thunderbird-45.6.0.tar.bz2"; 519 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.7.0/linux-i686/ru/thunderbird-45.7.0.tar.bz2"; 520 520 locale = "ru"; 521 521 arch = "linux-i686"; 522 - sha512 = "90fe536806f6e2ec20c470c72812ff8e54af58499ba220f9b6a5b6043c3a6072c78dc834c4204ca4e1f9d5ab71093296c958fe12409e50435136903f3ea3d544"; 522 + sha512 = "08e4b72edc6a4625639e313acfa6caddd0d82630930d32eb6c01f3e4a5fcb5e62836856c4f8e27e1855a14eacf66fe84078bb7445a8f809dbe31c41b86818a26"; 523 523 } 524 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.6.0/linux-i686/si/thunderbird-45.6.0.tar.bz2"; 524 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.7.0/linux-i686/si/thunderbird-45.7.0.tar.bz2"; 525 525 locale = "si"; 526 526 arch = "linux-i686"; 527 - sha512 = "36fed4f969775870a3e224aef66b36d8b8f1adec2471b4b45d75c52318b9481bdd81a9f583589b4c5450045e4a8abff91f3fb9083f4bafd237c742015626291f"; 527 + sha512 = "1464769f4b50a7cf2eb8b51a6040bb623a5d7942665943ac16f3659139724253ba8b75cf6987c3e67e7d88c7a7d680aa34800672fdcfaf6c130e3690316fcba4"; 528 528 } 529 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.6.0/linux-i686/sk/thunderbird-45.6.0.tar.bz2"; 529 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.7.0/linux-i686/sk/thunderbird-45.7.0.tar.bz2"; 530 530 locale = "sk"; 531 531 arch = "linux-i686"; 532 - sha512 = "e89ac23a25ae446f69e9c31478cc844253ba57de01893bd12b6b2bbe0e599fa09bf1506e9cfcbeab506998d81bc170fe1cff2d0e9aa13411299a5441d40d8959"; 532 + sha512 = "63b2cdbde995f2977e2047a9d0966358d10ad717e16ec1e7b013973203dea5cfa48cd3677407a21d89783496babee62c912887591b09701be95295f67878448d"; 533 533 } 534 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.6.0/linux-i686/sl/thunderbird-45.6.0.tar.bz2"; 534 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.7.0/linux-i686/sl/thunderbird-45.7.0.tar.bz2"; 535 535 locale = "sl"; 536 536 arch = "linux-i686"; 537 - sha512 = "6a74cc252d64d6d11a98af51e8fffc8a4bba8c74e2647afee9cfaae55ffcabe7ef9d82ee95a1a4d169fc057025c84f1253f455c6bd5e8f5fb9e33d7372c96a01"; 537 + sha512 = "82d43393eb873c96334ee994d07f9fe4873efeda9dc326a1398ddfcbd02a83c2b20c1d78c0e1f88f5c1a4c4b4008c94eff07912696cffb2cd7d5340cfef7d5b2"; 538 538 } 539 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.6.0/linux-i686/sq/thunderbird-45.6.0.tar.bz2"; 539 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.7.0/linux-i686/sq/thunderbird-45.7.0.tar.bz2"; 540 540 locale = "sq"; 541 541 arch = "linux-i686"; 542 - sha512 = "2ab4b18e5560eb495093aa0e5867f6e91148fe1cf7123f50306cb19b646b0834cde8cbd449df46f7e12b597465ee69910ad386e9920e26cdadc2085ca92e7af9"; 542 + sha512 = "5fb9aae5dd7e39e60ca17c4ba12c418f0ef75952f35537ae3ff4b1f57914f9ddcc5e8c8dbfcbad2c4a29911a6e48b6e96514759112170bb377b7883484f7a83b"; 543 543 } 544 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.6.0/linux-i686/sr/thunderbird-45.6.0.tar.bz2"; 544 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.7.0/linux-i686/sr/thunderbird-45.7.0.tar.bz2"; 545 545 locale = "sr"; 546 546 arch = "linux-i686"; 547 - sha512 = "dc23ac3a9c3fc8b0105bdac2b14f24a0cd76b7f6c3bcd3994d979ef2db44a9f11bc2e5648148bd45008ea832261399898737b39727c0a61a03b8315aeede6bde"; 547 + sha512 = "b1fa8938971d0736da1e297fb8a431750e8a1681250015aa249d3e6a1b797933c47e3ab43516cdc199ac4213b4e3505b8ce68264ed342a53bba7e4d86ef64e6b"; 548 548 } 549 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.6.0/linux-i686/sv-SE/thunderbird-45.6.0.tar.bz2"; 549 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.7.0/linux-i686/sv-SE/thunderbird-45.7.0.tar.bz2"; 550 550 locale = "sv-SE"; 551 551 arch = "linux-i686"; 552 - sha512 = "ebcac4ddcb84291613eeb64289e1f9f374a6085eb587df3cffc906dd7d7950f7564be1aed17c794d37f415840459b82c0c6edebefab2d8ba6f3e34c20426757a"; 552 + sha512 = "ed008ecc0355faf21e79121c9987823220b9ff796df22ab59ccf79dbfc336d998df51f13500a9a189fd40900a9fec52cb53be0811e391a48d4149f021bfffd77"; 553 553 } 554 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.6.0/linux-i686/ta-LK/thunderbird-45.6.0.tar.bz2"; 554 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.7.0/linux-i686/ta-LK/thunderbird-45.7.0.tar.bz2"; 555 555 locale = "ta-LK"; 556 556 arch = "linux-i686"; 557 - sha512 = "b164c7e70aa313517ecd85828a3734113f504f7e86ae615a24465a4334f41197af42b181f1f0048782d841422c3847eff1b8868450d190e362a36ffb5d1f2b6d"; 557 + sha512 = "4bd8c5a05706f88b2678331e8096d0b04d2717bfc9e6f22d6abf00881fcea46c4de50bf435d51a1022c9217ce837668439d152d0dd257ac2e77fdea44421810f"; 558 558 } 559 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.6.0/linux-i686/tr/thunderbird-45.6.0.tar.bz2"; 559 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.7.0/linux-i686/tr/thunderbird-45.7.0.tar.bz2"; 560 560 locale = "tr"; 561 561 arch = "linux-i686"; 562 - sha512 = "6c3d65c4c277382961238e491f90e0f33a265614614428f2abeeb3779cc3b23b068d8ddf7f4a7c98a4c7497b22df79b3ba16ef0191b9cfb752aa24316d4fb8e3"; 562 + sha512 = "0f3aa7228a605df6e2f5fcaddfb95009ea6b9084791d876ed1fca148ba11b08646ea1265bb1d6771e681f5b33317ea43381ef271842d263e7c387942447a3748"; 563 563 } 564 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.6.0/linux-i686/uk/thunderbird-45.6.0.tar.bz2"; 564 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.7.0/linux-i686/uk/thunderbird-45.7.0.tar.bz2"; 565 565 locale = "uk"; 566 566 arch = "linux-i686"; 567 - sha512 = "6754bead8887f244c6d87a6c76f45247933fae42fc74240c453bbef8acfa7a85ba282db4185c1fb6ec9e93115e3d9e4ac0ee113c00db9634f26a4eec6f79ea6b"; 567 + sha512 = "825ff1066f1b533ac5091fa74a050fdc760145f378126b2b7cb63b9bf3e58936372d475fa5b2b900cb79ea99f553a4228182c09c1483ded6f2256a831966d37e"; 568 568 } 569 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.6.0/linux-i686/vi/thunderbird-45.6.0.tar.bz2"; 569 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.7.0/linux-i686/vi/thunderbird-45.7.0.tar.bz2"; 570 570 locale = "vi"; 571 571 arch = "linux-i686"; 572 - sha512 = "34110501557ea23c1c854fbba9e6c043e25634f5993f34197b8d5842ee88d4717c87a0a8fe326a35dd12e74fcfbf9ddb0b6e7db0b09a058d710680e37cd5b939"; 572 + sha512 = "b8fdfe8463c99695219a59f2951363685249a6ced9ecb38b7e25455b4102baf334e69437b15bdcb06ca36575367b13cd3331d7ac5e0349d8fdcb4350b70cc680"; 573 573 } 574 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.6.0/linux-i686/zh-CN/thunderbird-45.6.0.tar.bz2"; 574 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.7.0/linux-i686/zh-CN/thunderbird-45.7.0.tar.bz2"; 575 575 locale = "zh-CN"; 576 576 arch = "linux-i686"; 577 - sha512 = "493073bee16e9e22db0d3c2700f13f1304129c28528a80fb9a548afbabaaa147b7ac46a254cc3b05619d47e94e61c29ff7cc80618c8af09b3659e6c91883c017"; 577 + sha512 = "f41c99d2a972210e0999fd6a509ffed9fa34edee23f7925c8dccdd5f492aef7c15fb3fc995ea549d095746302852e3957b9da01346277a2ed6b3efafa1a2acb1"; 578 578 } 579 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.6.0/linux-i686/zh-TW/thunderbird-45.6.0.tar.bz2"; 579 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/45.7.0/linux-i686/zh-TW/thunderbird-45.7.0.tar.bz2"; 580 580 locale = "zh-TW"; 581 581 arch = "linux-i686"; 582 - sha512 = "7ac66a0ee967e7f87d084acda72120c65bb64c2572f42249b97baf9755b0b7dc314a1d88049941a7be86846f98f236cdfe54b87b22ff7f66b6099397788373b2"; 582 + sha512 = "d903664c9cefe044e0871b527d0a2f45812312c99f541832887abdef46d6c741085f807bf09a9e6f83d24992377ced5a84534a33f933025dd6bde11a7aa8cde3"; 583 583 } 584 584 ]; 585 585 }
+2 -2
pkgs/applications/networking/mailreaders/thunderbird/default.nix
··· 14 14 enableOfficialBranding ? false 15 15 }: 16 16 17 - let version = "45.6.0"; in 17 + let version = "45.7.0"; in 18 18 let verName = "${version}"; in 19 19 20 20 stdenv.mkDerivation rec { ··· 22 22 23 23 src = fetchurl { 24 24 url = "mirror://mozilla/thunderbird/releases/${verName}/source/thunderbird-${verName}.source.tar.xz"; 25 - sha512 = "1f4579ac37b8ab98c91fe2e3e6742ba1b005ca9346d23f467d19e6af45eb457cab749bf91ed2a79f2058bd66f54da661da3ea5d5786f8c4b472d8a2a6c34db4b"; 25 + sha512 = "99cea54b553158c1e08cf19157ac2bb6822fd1fef0501d36f983e6b8d4f2143a2e6124d61297446944033d3fed9326fe0f12ca45db0b5815be71a0777e73ffb0"; 26 26 }; 27 27 28 28 patches = [ ./gcc6.patch ];
+17 -5
pkgs/applications/video/cinelerra/default.nix
··· 2 2 , pkgconfig, faad2, faac, a52dec, alsaLib, fftw, lame, libavc1394 3 3 , libiec61883, libraw1394, libsndfile, libvorbis, libogg, libjpeg 4 4 , libtiff, freetype, mjpegtools, x264, gettext, openexr 5 - , libXext, libXxf86vm, libXv, libXi, libX11, xextproto, libtheora, libpng 6 - , libdv, libuuid, file, nasm, perl }: 5 + , libXext, libXxf86vm, libXv, libXi, libX11, libXft, xextproto, libtheora, libpng 6 + , libdv, libuuid, file, nasm, perl 7 + , fontconfig, intltool }: 7 8 8 9 stdenv.mkDerivation { 9 10 name = "cinelerra-git"; ··· 15 16 16 17 src = fetchgit { 17 18 url = "git://git.cinelerra-cv.org/j6t/cinelerra.git"; 18 - rev = "01dc4375a0fb65d10dd95151473d0e195239175f"; 19 - sha256 = "0grz644vrnajhxn96x05a3rlwrbd20yq40sw3y5yg7bvi96900gf"; 19 + # 2.3 20 + #rev = "58ef118e63bf2fac8c99add372c584e93b008bae"; 21 + #sha256 = "1wx8c9rvh4y7fgg39lb02cy3sanms8a4fayr70jbhcb4rp691lph"; 22 + # master 22 nov 2016 23 + #rev = "dbc22e0f35a9e8c274b06d4075b51dc9bace34aa"; 24 + #sha256 = "0c76j98ws1x2s5hzcdlykxm2bi7987d9nanka428xj62id0grla5"; 25 + 26 + # j6t/cinelerra.git 27 + rev = "454be60e201c18c1fc3f1f253a6d2184fcfc94c4"; 28 + sha256 = "1n4kshqhgnr7aivsi8dgx48phyd2nzvv4szbc82mndklvs9jfb7r"; 20 29 }; 21 30 22 31 # touch config.rpath: work around bug in automake 1.10 ? ··· 34 43 a52dec alsaLib fftw lame libavc1394 libiec61883 35 44 libraw1394 libsndfile libvorbis libogg libjpeg libtiff freetype 36 45 mjpegtools x264 gettext openexr 37 - libXext libXxf86vm libXv libXi libX11 xextproto 46 + libXext libXxf86vm libXv libXi libX11 libXft xextproto 38 47 libtheora libpng libdv libuuid 39 48 nasm 40 49 perl 50 + fontconfig intltool 41 51 ]; 52 + 53 + enableParallelBuilding = true; 42 54 43 55 meta = { 44 56 description = "Video Editor";
+2 -2
pkgs/applications/video/obs-studio/default.nix
··· 22 22 optional = stdenv.lib.optional; 23 23 in stdenv.mkDerivation rec { 24 24 name = "obs-studio-${version}"; 25 - version = "0.15.2"; 25 + version = "17.0.1"; 26 26 27 27 src = fetchFromGitHub { 28 28 owner = "jp9000"; 29 29 repo = "obs-studio"; 30 30 rev = "${version}"; 31 - sha256 = "0vw203a1zj2npras589ml6gr5s11h9bhaica90plrh5ajayg0qwj"; 31 + sha256 = "0x5lnl1xkmm8x4g0f8rma8ir1bcldz9sssj2fzkv80hn79h2cvxm"; 32 32 }; 33 33 34 34 nativeBuildInputs = [ cmake
+10 -3
pkgs/applications/video/shotcut/default.nix
··· 5 5 6 6 stdenv.mkDerivation rec { 7 7 name = "shotcut-${version}"; 8 - version = "16.10"; 8 + version = "17.01"; 9 9 10 10 src = fetchurl { 11 11 url = "https://github.com/mltframework/shotcut/archive/v${version}.tar.gz"; 12 - sha256 = "0brskci86bwdj2ahjfvv3v254ligjn97bm0f6c8yg46r0jb8q5xw"; 12 + sha256 = "1f3276q58rvw1brxfnm9z3v99fx63wml6j02sgmpzazw3172lnpg"; 13 13 }; 14 14 15 15 buildInputs = [ SDL frei0r gettext mlt pkgconfig qtbase qtmultimedia qtwebkit ··· 17 17 18 18 enableParallelBuilding = true; 19 19 20 + prePatch = '' 21 + sed 's_shotcutPath, "qmelt"_"${mlt}/bin/melt"_' -i src/jobs/meltjob.cpp 22 + sed 's_shotcutPath, "ffmpeg"_"${mlt.ffmpeg}/bin/ffmpeg"_' -i src/jobs/ffmpegjob.cpp 23 + NICE=$(type -P nice) 24 + sed "s_/usr/bin/nice_''${NICE}_" -i src/jobs/meltjob.cpp src/jobs/ffmpegjob.cpp 25 + ''; 26 + 20 27 postInstall = '' 21 28 mkdir -p $out/share/shotcut 22 29 cp -r src/qml $out/share/shotcut/ 23 - wrapQtProgram $out/bin/shotcut --prefix FREI0R_PATH : ${frei0r}/lib/frei0r-1 --prefix LD_LIBRARY_PATH : ${stdenv.lib.makeLibraryPath [ jack1 SDL ]} 30 + wrapQtProgram $out/bin/shotcut --prefix FREI0R_PATH : ${frei0r}/lib/frei0r-1 --prefix LD_LIBRARY_PATH : ${stdenv.lib.makeLibraryPath [ jack1 SDL ]} --prefix PATH : ${mlt}/bin 24 31 ''; 25 32 26 33 meta = with stdenv.lib; {
-93
pkgs/applications/virtualization/qemu/2.8.nix
··· 1 - { stdenv, fetchurl, fetchpatch, python2, zlib, pkgconfig, glib 2 - , ncurses, perl, pixman, vde2, alsaLib, texinfo, libuuid, flex 3 - , bison, lzo, snappy, libaio, gnutls, nettle, curl 4 - , makeWrapper 5 - , attr, libcap, libcap_ng 6 - , CoreServices, Cocoa, rez, setfile 7 - , numaSupport ? stdenv.isLinux, numactl 8 - , seccompSupport ? stdenv.isLinux, libseccomp 9 - , pulseSupport ? !stdenv.isDarwin, libpulseaudio 10 - , sdlSupport ? !stdenv.isDarwin, SDL 11 - , vncSupport ? true, libjpeg, libpng 12 - , spiceSupport ? !stdenv.isDarwin, spice, spice_protocol, usbredir 13 - , x86Only ? false 14 - , nixosTestRunner ? false 15 - }: 16 - 17 - with stdenv.lib; 18 - let 19 - version = "2.8.0"; 20 - audio = optionalString (hasSuffix "linux" stdenv.system) "alsa," 21 - + optionalString pulseSupport "pa," 22 - + optionalString sdlSupport "sdl,"; 23 - in 24 - 25 - stdenv.mkDerivation rec { 26 - name = "qemu-" 27 - + stdenv.lib.optionalString x86Only "x86-only-" 28 - + stdenv.lib.optionalString nixosTestRunner "for-vm-tests-" 29 - + version; 30 - 31 - src = fetchurl { 32 - url = "http://wiki.qemu.org/download/qemu-${version}.tar.bz2"; 33 - sha256 = "0qjy3rcrn89n42y5iz60kgr0rrl29hpnj8mq2yvbc1wrcizmvzfs"; 34 - }; 35 - 36 - buildInputs = 37 - [ python2 zlib pkgconfig glib ncurses perl pixman 38 - vde2 texinfo libuuid flex bison makeWrapper lzo snappy 39 - gnutls nettle curl 40 - ] 41 - ++ optionals stdenv.isDarwin [ CoreServices Cocoa rez setfile ] 42 - ++ optionals seccompSupport [ libseccomp ] 43 - ++ optionals numaSupport [ numactl ] 44 - ++ optionals pulseSupport [ libpulseaudio ] 45 - ++ optionals sdlSupport [ SDL ] 46 - ++ optionals vncSupport [ libjpeg libpng ] 47 - ++ optionals spiceSupport [ spice_protocol spice usbredir ] 48 - ++ optionals stdenv.isLinux [ alsaLib libaio libcap_ng libcap attr ]; 49 - 50 - enableParallelBuilding = true; 51 - 52 - patches = [ 53 - ./no-etc-install.patch 54 - ] ++ optional nixosTestRunner ./force-uid0-on-9p.patch; 55 - hardeningDisable = [ "stackprotector" ]; 56 - 57 - configureFlags = 58 - [ "--smbd=smbd" # use `smbd' from $PATH 59 - "--audio-drv-list=${audio}" 60 - "--sysconfdir=/etc" 61 - "--localstatedir=/var" 62 - ] 63 - ++ optional numaSupport "--enable-numa" 64 - ++ optional seccompSupport "--enable-seccomp" 65 - ++ optional spiceSupport "--enable-spice" 66 - ++ optional x86Only "--target-list=i386-softmmu,x86_64-softmmu" 67 - ++ optional stdenv.isDarwin "--enable-cocoa" 68 - ++ optional stdenv.isLinux "--enable-linux-aio"; 69 - 70 - postFixup = 71 - '' 72 - for exe in $out/bin/qemu-system-* ; do 73 - paxmark m $exe 74 - done 75 - ''; 76 - 77 - postInstall = 78 - '' 79 - # Add a ‘qemu-kvm’ wrapper for compatibility/convenience. 80 - p="$out/bin/qemu-system-${if stdenv.system == "x86_64-linux" then "x86_64" else "i386"}" 81 - if [ -e "$p" ]; then 82 - makeWrapper "$p" $out/bin/qemu-kvm --add-flags "\$([ -e /dev/kvm ] && echo -enable-kvm)" 83 - fi 84 - ''; 85 - 86 - meta = with stdenv.lib; { 87 - homepage = http://www.qemu.org/; 88 - description = "A generic and open source machine emulator and virtualizer"; 89 - license = licenses.gpl2Plus; 90 - maintainers = with maintainers; [ viric eelco ]; 91 - platforms = platforms.linux ++ platforms.darwin; 92 - }; 93 - }
-12
pkgs/applications/virtualization/qemu/CVE-2016-9102.patch
··· 1 - diff --git a/hw/9pfs/9p.c b/hw/9pfs/9p.c 2 - index d938427..7557a7d 100644 3 - --- a/hw/9pfs/9p.c 4 - +++ b/hw/9pfs/9p.c 5 - @@ -3261,6 +3261,7 @@ 6 - xattr_fidp->fs.xattr.flags = flags; 7 - v9fs_string_init(&xattr_fidp->fs.xattr.name); 8 - v9fs_string_copy(&xattr_fidp->fs.xattr.name, &name); 9 - + g_free(xattr_fidp->fs.xattr.value); 10 - xattr_fidp->fs.xattr.value = g_malloc0(size); 11 - err = offset; 12 - put_fid(pdu, file_fidp);
+5 -122
pkgs/applications/virtualization/qemu/default.nix
··· 1 1 { stdenv, fetchurl, fetchpatch, python2, zlib, pkgconfig, glib 2 - , ncurses, perl, pixman, vde2, alsaLib, texinfo, libuuid, flex 2 + , ncurses, perl, pixman, vde2, alsaLib, texinfo, flex 3 3 , bison, lzo, snappy, libaio, gnutls, nettle, curl 4 4 , makeWrapper 5 5 , attr, libcap, libcap_ng ··· 16 16 17 17 with stdenv.lib; 18 18 let 19 - version = "2.7.0"; 19 + version = "2.8.0"; 20 20 audio = optionalString (hasSuffix "linux" stdenv.system) "alsa," 21 21 + optionalString pulseSupport "pa," 22 22 + optionalString sdlSupport "sdl,"; 23 23 in 24 24 25 25 stdenv.mkDerivation rec { 26 - name = "qemu-" 26 + name = "qemu-" 27 27 + stdenv.lib.optionalString x86Only "x86-only-" 28 28 + stdenv.lib.optionalString nixosTestRunner "for-vm-tests-" 29 29 + version; 30 30 31 31 src = fetchurl { 32 32 url = "http://wiki.qemu.org/download/qemu-${version}.tar.bz2"; 33 - sha256 = "0lqyz01z90nvxpc3nx4djbci7hx62cwvs5zwd6phssds0sap6vij"; 33 + sha256 = "0qjy3rcrn89n42y5iz60kgr0rrl29hpnj8mq2yvbc1wrcizmvzfs"; 34 34 }; 35 35 36 36 buildInputs = 37 37 [ python2 zlib pkgconfig glib ncurses perl pixman 38 - vde2 texinfo libuuid flex bison makeWrapper lzo snappy 38 + vde2 texinfo flex bison makeWrapper lzo snappy 39 39 gnutls nettle curl 40 40 ] 41 41 ++ optionals stdenv.isDarwin [ CoreServices Cocoa rez setfile ] ··· 51 51 52 52 patches = [ 53 53 ./no-etc-install.patch 54 - (fetchpatch { 55 - url = "https://sources.debian.net/data/main/q/qemu/1:2.7+dfsg-3/debian/patches/net-vmxnet-initialise-local-tx-descriptor-CVE-2016-6836.patch"; 56 - sha256 = "1i01vsxsdwrb5r7i9dmrshal4fvpj2j01cmvfkl5wz3ssq5z02wc"; 57 - }) 58 - (fetchpatch { 59 - url = "https://sources.debian.net/data/main/q/qemu/1:2.7+dfsg-3/debian/patches/scsi-mptconfig-fix-an-assert-expression-CVE-2016-7157.patch"; 60 - sha256 = "1wqf9k79wdr1k25siyhhybz1bpb0iyshv6fvsf55pgk5p0dg1970"; 61 - }) 62 - (fetchpatch { 63 - url = "https://sources.debian.net/data/main/q/qemu/1:2.7+dfsg-3/debian/patches/scsi-mptconfig-fix-misuse-of-MPTSAS_CONFIG_PACK-CVE-2016-7157.patch"; 64 - sha256 = "0l78fcbq8mywlgax234dh4226kxzbdgmarz1yrssaaiipkzq4xgw"; 65 - }) 66 - (fetchpatch { 67 - url = "https://sources.debian.net/data/main/q/qemu/1:2.7+dfsg-3/debian/patches/scsi-mptsas-use-g_new0-to-allocate-MPTSASRequest-obj-CVE-2016-7423.patch"; 68 - sha256 = "14l8w40zjjhpmzz4rkh69h5na8d4did7v99ng7nzrychakd5l29h"; 69 - }) 70 - (fetchpatch { 71 - url = "https://sources.debian.net/data/main/q/qemu/1:2.7+dfsg-3/debian/patches/scsi-pvscsi-check-page-count-while-initialising-descriptor-rings-CVE-2016-7155.patch"; 72 - sha256 = "1dwkci5mqgx3xz2q69kbcn48l8vwql9g3qaza2jxi402xdgc07zn"; 73 - }) 74 - (fetchpatch { 75 - url = "https://sources.debian.net/data/main/q/qemu/1:2.7+dfsg-3/debian/patches/scsi-pvscsi-limit-loop-to-fetch-SG-list-CVE-2016-7156.patch"; 76 - sha256 = "1r5xm4m9g39p89smsia4i9jbs32nq9gdkpx6wgd91vmswggcbqsi"; 77 - }) 78 - (fetchpatch { 79 - url = "https://sources.debian.net/data/main/q/qemu/1:2.7+dfsg-3/debian/patches/scsi-pvscsi-limit-process-IO-loop-to-ring-size-CVE-2016-7421.patch"; 80 - sha256 = "07661d1kd0ddkmzsrjph7jnhz2qbfavkxamnvs3axaqpp52kx6ga"; 81 - }) 82 - (fetchpatch { 83 - url = "https://sources.debian.net/data/main/q/qemu/1:2.7+dfsg-3/debian/patches/usb-xhci-fix-memory-leak-in-usb_xhci_exit-CVE-2016-7466.patch"; 84 - sha256 = "0nckwzn9k6369vni12s8hhjn73gbk6ns0mazns0dlgcq546q2fjj"; 85 - }) 86 - (fetchpatch { 87 - url = "https://sources.debian.net/data/main/q/qemu/1:2.7+dfsg-3/debian/patches/virtio-add-check-for-descriptor-s-mapped-address-CVE-2016-7422.patch"; 88 - sha256 = "1f1ilpzlxfjqvwmv9h0mzygwl5l8zd690f32vxfv9g6rfbr5h72k"; 89 - }) 90 - (fetchpatch { 91 - name = "qemu-CVE-2016-8909.patch"; 92 - url = "http://git.qemu.org/?p=qemu.git;a=patch;h=0c0fc2b5fd534786051889459848764edd798050"; 93 - sha256 = "0mavkajxchfacpl4gpg7dhppbnhs1bbqn2rwqwiwkl0m5h19d9fv"; 94 - }) 95 - (fetchpatch { 96 - name = "qemu-CVE-2016-8910.patch"; 97 - url = "http://git.qemu.org/?p=qemu.git;a=patch;h=c7c35916692fe010fef25ac338443d3fe40be225"; 98 - sha256 = "10qmlggifdmvj5hg3brs712agjq6ppnslm0n5d5jfgjl7599wxml"; 99 - }) 100 - (fetchpatch { 101 - name = "qemu-CVE-2016-9103.patch"; 102 - url = "http://git.qemu.org/?p=qemu.git;a=patch;h=eb687602853b4ae656e9236ee4222609f3a6887d"; 103 - sha256 = "0j20n4z1wzybx8m7pn1zsxmz4rbl8z14mbalfabcjdgz8sx8g90d"; 104 - }) 105 - (fetchpatch { 106 - name = "qemu-CVE-2016-9104.patch"; 107 - url = "http://git.qemu.org/?p=qemu.git;a=patch;h=7e55d65c56a03dcd2c5d7c49d37c5a74b55d4bd6"; 108 - sha256 = "1l99sf70098l6v05dq4x7p2glxx1l4nq1l8l3711ykp9vxkp91qs"; 109 - }) 110 - (fetchpatch { 111 - name = "qemu-CVE-2016-9105.patch"; 112 - url = "http://git.qemu.org/?p=qemu.git;a=patch;h=4c1586787ff43c9acd18a56c12d720e3e6be9f7c"; 113 - sha256 = "0b2w5myw2vjqk81wm8dz373xfhfkx3hgy7bxr94l060snxcl7ar4"; 114 - }) 115 - (fetchpatch { 116 - name = "qemu-CVE-2016-9106.patch"; 117 - url = "http://git.qemu.org/?p=qemu.git;a=patch;h=fdfcc9aeea1492f4b819a24c94dfb678145b1bf9"; 118 - sha256 = "0npi3fag52icq7xr799h5zi11xscbakdhqmdab0kyl6q331cc32z"; 119 - }) 120 - (fetchpatch { 121 - name = "qemu-CVE-2016-7994.patch"; 122 - url = "http://git.qemu.org/?p=qemu.git;a=patch;h=cb3a0522b694cc5bb6424497b3f828ccd28fd1dd"; 123 - sha256 = "1zhmbqlj0hc69ia4s6h59pi1z3nmijkryxwmf4bzp9gahx8x4xm3"; 124 - }) 125 - (fetchpatch { 126 - name = "qemu-CVE-2016-8668.patch"; 127 - url = "http://git.qemu.org/?p=qemu.git;a=patch;h=8caed3d564672e8bc6d2e4c6a35228afd01f4723"; 128 - sha256 = "19sq6fh7nh8wrk52skky4vwm80029lhm093g11f539krmzjgipik"; 129 - }) 130 - (fetchpatch { 131 - name = "qemu-CVE-2016-7907.patch"; 132 - url = "http://git.qemu.org/?p=qemu.git;a=patch;h=070c4b92b8cd5390889716677a0b92444d6e087a"; 133 - sha256 = "0in89697r6kwkf302v3cg16390q7qs33n2b4kba26m4x65632dxm"; 134 - }) 135 - 136 - # FIXME: Fix for CVE-2016-9101 not yet ready: https://lists.gnu.org/archive/html/qemu-devel/2016-10/msg03024.html 137 - 138 - # from http://git.qemu.org/?p=qemu.git;a=patch;h=ff55e94d23ae94c8628b0115320157c763eb3e06 139 - ./CVE-2016-9102.patch 140 - 141 - (fetchpatch { 142 - name = "qemu-CVE-2016-9911.patch"; 143 - url = "http://git.qemu.org/?p=qemu.git;a=patch;h=791f97758e223de3290592d169f8e6339c281714"; 144 - sha256 = "0952mpc81h42k5kqsw42prnw5vw86r3j88wk5z4sr1xd1sg428d6"; 145 - }) 146 - (fetchpatch { 147 - name = "qemu-CVE-2016-9921_9922.patch"; 148 - url = "http://git.qemu.org/?p=qemu.git;a=patch;h=4299b90e9ba9ce5ca9024572804ba751aa1a7e70"; 149 - sha256 = "125xlysdgpp59m4rp1mb59i3ipmf3yjk8x01gzvxcg1hnpgm4j4c"; 150 - }) 151 - (fetchpatch { 152 - name = "qemu-CVE-2016-9845.patch"; 153 - url = "http://git.qemu.org/?p=qemu.git;a=patch;h=42a8dadc74f8982fc269e54e3c5627b54d9f83d8"; 154 - sha256 = "0qivj585pp1g6xfzknzgi5d2p6can3ihfgpxz3wi12h5jl5q6677"; 155 - }) 156 - (fetchpatch { 157 - name = "qemu-CVE-2016-9846.patch"; 158 - url = "http://git.qemu.org/?p=qemu.git;a=patch;h=2d1cd6c7a91a4beb99a0c3a21be529222a708545"; 159 - sha256 = "1pa8wwxaz4k4sw1zfa4w0zlxkw6qpsrny1z8c8i8di91aswspq3i"; 160 - }) 161 - (fetchpatch { 162 - name = "qemu-CVE-2016-9907.patch"; 163 - url = "http://git.qemu.org/?p=qemu.git;a=patch;h=07b026fd82d6cf11baf7d7c603c4f5f6070b35bf"; 164 - sha256 = "0phsk2x6mfsd6gabmfk4pr5nc4aymcqsfd88zihlm9d20gg9pbv3"; 165 - }) 166 - (fetchpatch { 167 - name = "qemu-CVE-2016-9912.patch"; 168 - url = "http://git.qemu.org/?p=qemu.git;a=patch;h=b8e23926c568f2e963af39028b71c472e3023793"; 169 - sha256 = "1b711s63pg6rzqkqyx0mrlb4x6jv3dscc90qg8w6lflwlhwa73iv"; 170 - }) 171 54 ] ++ optional nixosTestRunner ./force-uid0-on-9p.patch; 172 55 hardeningDisable = [ "stackprotector" ]; 173 56
+38
pkgs/build-support/dhall-to-nix.nix
··· 1 + /* `dhallToNix` is a utility function to convert expressions in the Dhall 2 + configuration language to their corresponding Nix expressions. 3 + 4 + Example: 5 + dhallToNix "{ foo = 1, bar = True }" 6 + => { foo = 1; bar = true; } 7 + dhallToNix "λ(x : Bool) → x == False" 8 + => x : x == false 9 + dhallToNix "λ(x : Bool) → x == False" false 10 + => true 11 + 12 + See https://hackage.haskell.org/package/dhall-nix/docs/Dhall-Nix.html for 13 + a longer tutorial 14 + 15 + Note that this uses "import from derivation", meaning that Nix will perform 16 + a build during the evaluation phase if you use this `dhallToNix` utility 17 + */ 18 + { stdenv, dhall-nix }: 19 + 20 + let 21 + dhallToNix = code : 22 + let 23 + file = builtins.toFile "dhall-expression" code; 24 + 25 + drv = stdenv.mkDerivation { 26 + name = "dhall-compiled.nix"; 27 + 28 + buildCommand = '' 29 + dhall-to-nix <<< "${file}" > $out 30 + ''; 31 + 32 + buildInputs = [ dhall-nix ]; 33 + }; 34 + 35 + in 36 + import "${drv}"; 37 + in 38 + dhallToNix
+8 -13
pkgs/desktops/gnome-3/3.22/core/gnome-user-share/default.nix
··· 1 - { stdenv, intltool, fetchurl, apacheHttpd_2_2, nautilus 1 + { stdenv, intltool, fetchurl, apacheHttpd, nautilus 2 2 , pkgconfig, gtk3, glib, libxml2, gnused, systemd 3 - , bash, makeWrapper, itstool, libnotify, libtool, mod_dnssd 3 + , bash, wrapGAppsHook, itstool, libnotify, libtool, mod_dnssd 4 4 , gnome3, librsvg, gdk_pixbuf, file, libcanberra_gtk3 }: 5 5 6 6 stdenv.mkDerivation rec { ··· 11 11 NIX_CFLAGS_COMPILE = "-I${gnome3.glib.dev}/include/gio-unix-2.0"; 12 12 13 13 preConfigure = '' 14 - sed -e 's,^LoadModule dnssd_module.\+,LoadModule dnssd_module ${mod_dnssd}/modules/mod_dnssd.so,' -i data/dav_user_2.2.conf 14 + sed -e 's,^LoadModule dnssd_module.\+,LoadModule dnssd_module ${mod_dnssd}/modules/mod_dnssd.so,' \ 15 + -e 's,''${HTTP_MODULES_PATH},${apacheHttpd}/modules,' \ 16 + -i data/dav_user_2.4.conf 15 17 ''; 16 18 17 - configureFlags = [ "--with-httpd=${apacheHttpd_2_2.out}/bin/httpd" 18 - "--with-modules-path=${apacheHttpd_2_2.dev}/modules" 19 + configureFlags = [ "--with-httpd=${apacheHttpd.out}/bin/httpd" 20 + "--with-modules-path=${apacheHttpd.dev}/modules" 19 21 "--with-systemduserunitdir=$(out)/etc/systemd/user" 20 - "--disable-bluetooth" 21 22 "--with-nautilusdir=$(out)/lib/nautilus/extensions-3.0" ]; 22 23 23 24 buildInputs = [ pkgconfig gtk3 glib intltool itstool libxml2 libtool 24 - makeWrapper file gdk_pixbuf gnome3.defaultIconTheme librsvg 25 + wrapGAppsHook file gdk_pixbuf gnome3.defaultIconTheme librsvg 25 26 nautilus libnotify libcanberra_gtk3 systemd ]; 26 27 27 28 postInstall = '' 28 29 mkdir -p $out/share/gsettings-schemas/$name 29 30 mv $out/share/glib-2.0 $out/share/gsettings-schemas/$name 30 31 ${glib.dev}/bin/glib-compile-schemas $out/share/gsettings-schemas/$name/glib-2.0/schemas 31 - ''; 32 - 33 - preFixup = '' 34 - wrapProgram "$out/libexec/gnome-user-share-webdav" \ 35 - --set GDK_PIXBUF_MODULE_FILE "$GDK_PIXBUF_MODULE_FILE" \ 36 - --prefix XDG_DATA_DIRS : "$out/share:$XDG_ICON_DIRS:$GSETTINGS_SCHEMAS_PATH" 37 32 ''; 38 33 39 34 meta = with stdenv.lib; {
+26
pkgs/desktops/gnome-3/3.22/core/vte/fix_g_test_init_calls.patch
··· 1 + diff --git a/src/vteconv.cc b/src/vteconv.cc 2 + index b78d3928..5cb63e7e 100644 3 + --- a/src/vteconv.cc 4 + +++ b/src/vteconv.cc 5 + @@ -771,7 +771,7 @@ int 6 + main (int argc, 7 + char *argv[]) 8 + { 9 + - g_test_init (&argc, &argv, NULL); 10 + + g_test_init (&argc, &argv, (char *)NULL); 11 + 12 + g_test_add_func ("/vte/conv/utf8/strlen", test_utf8_strlen); 13 + g_test_add_func ("/vte/conv/utf8/validate", test_utf8_validate); 14 + diff --git a/src/vtetypes.cc b/src/vtetypes.cc 15 + index 1365a295..8f38c9d9 100644 16 + --- a/src/vtetypes.cc 17 + +++ b/src/vtetypes.cc 18 + @@ -407,7 +407,7 @@ test_util_smart_fd(void) 19 + int 20 + main(int argc, char *argv[]) 21 + { 22 + - g_test_init (&argc, &argv, NULL); 23 + + g_test_init (&argc, &argv, (char *)NULL); 24 + 25 + g_test_add_func("/vte/c++/grid/coords", test_grid_coords); 26 + g_test_add_func("/vte/c++/grid/span", test_grid_span);
+13
pkgs/desktops/gnome-3/3.22/core/vte/fix_vteseq_n_lookup_declaration.patch
··· 1 + diff --git a/src/vteseq.cc b/src/vteseq.cc 2 + index 2330939d..e0ac14eb 100644 3 + --- a/src/vteseq.cc 4 + +++ b/src/vteseq.cc 5 + @@ -3409,7 +3409,7 @@ vte_sequence_handler_iterm2_1337(VteTerminalPrivate *that, GValueArray *params) 6 + #define VTE_SEQUENCE_HANDLER(name) name 7 + 8 + static const struct vteseq_n_struct * 9 + -vteseq_n_lookup (register const char *str, register unsigned int len); 10 + +vteseq_n_lookup (register const char *str, register size_t len); 11 + #include"vteseq-n.cc" 12 + 13 + #undef VTE_SEQUENCE_HANDLER
+24
pkgs/desktops/gnome-3/3.22/core/vte/ng.nix
··· 1 + { gnome3, fetchFromGitHub, autoconf, automake, gtk_doc, gettext, libtool, gperf }: 2 + 3 + gnome3.vte.overrideAttrs (oldAttrs: rec { 4 + name = "vte-ng-${version}"; 5 + version = "0.46.1.a"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "thestinger"; 9 + repo = "vte-ng"; 10 + rev = version; 11 + sha256 = "125fpibid1liz50d7vbxy71pnm8b01x90xnkr4z3419b90lybr0a"; 12 + }; 13 + 14 + # The patches apply the changes from https://github.com/GNOME/vte/pull/7 and 15 + # can be removed once the commits are merged into vte-ng. 16 + patches = [ 17 + ./fix_g_test_init_calls.patch 18 + ./fix_vteseq_n_lookup_declaration.patch 19 + ]; 20 + 21 + preConfigure = oldAttrs.preConfigure + "; ./autogen.sh"; 22 + 23 + nativeBuildInputs = [ gtk_doc autoconf automake gettext libtool gperf ]; 24 + })
+2
pkgs/desktops/gnome-3/3.22/default.nix
··· 234 234 235 235 vte_290 = callPackage ./core/vte/2.90.nix { }; 236 236 237 + vte-ng = callPackage ./core/vte/ng.nix { }; 238 + 237 239 vino = callPackage ./core/vino { }; 238 240 239 241 yelp = callPackage ./core/yelp { };
+10 -7
pkgs/development/compilers/coreclr/default.nix
··· 2 2 , fetchFromGitHub 3 3 , which 4 4 , cmake 5 - , clang_35 6 - , llvmPackages_36 5 + , clang 6 + , llvmPackages 7 7 , libunwind 8 8 , gettext 9 9 , openssl ··· 30 30 buildInputs = [ 31 31 which 32 32 cmake 33 - clang_35 34 - llvmPackages_36.llvm 35 - llvmPackages_36.lldb 33 + clang 34 + llvmPackages.llvm 35 + llvmPackages.lldb 36 36 libunwind 37 37 gettext 38 38 openssl ··· 47 47 configurePhase = '' 48 48 # Prevent clang-3.5 (rather than just clang) from being selected as the compiler as that's 49 49 # not wrapped 50 - substituteInPlace src/pal/tools/gen-buildsys-clang.sh --replace "which \"clang-\$" "which \"clang-DoNotFindThisOne\$" 50 + # substituteInPlace src/pal/tools/gen-buildsys-clang.sh --replace "which \"clang-\$" "which \"clang-DoNotFindThisOne\$" 51 51 52 52 patchShebangs build.sh 53 53 patchShebangs src/pal/tools/gen-buildsys-clang.sh ··· 67 67 BuildType = if debug then "Debug" else "Release"; 68 68 69 69 hardeningDisable = [ "strictoverflow" "format" ]; 70 - NIX_CFLAGS_COMPILE = [ "-Wno-error=unused-result" ]; 70 + NIX_CFLAGS_COMPILE = [ 71 + "-Wno-error=unused-result" "-Wno-error=delete-non-virtual-dtor" 72 + "-Wno-error=null-dereference" 73 + ]; 71 74 72 75 buildPhase = '' 73 76 ./build.sh $BuildArch $BuildType
-29
pkgs/development/compilers/llvm/3.6/clang/cmake-exports.patch
··· 1 - diff -Naur clang-3.6.0.src-orig/CMakeLists.txt clang-3.6.0.src/CMakeLists.txt 2 - --- clang-3.6.0.src-orig/CMakeLists.txt 2015-03-05 05:56:20.788520896 +0100 3 - +++ clang-3.6.0.src/CMakeLists.txt 2015-03-05 06:02:15.589365469 +0100 4 - @@ -362,6 +362,7 @@ 5 - 6 - if (NOT LLVM_INSTALL_TOOLCHAIN_ONLY OR ${name} STREQUAL "libclang") 7 - install(TARGETS ${name} 8 - + EXPORT ClangTargets 9 - LIBRARY DESTINATION lib${LLVM_LIBDIR_SUFFIX} 10 - ARCHIVE DESTINATION lib${LLVM_LIBDIR_SUFFIX} 11 - RUNTIME DESTINATION bin) 12 - @@ -516,15 +517,15 @@ 13 - set(CLANG_INSTALL_PACKAGE_DIR share/clang/cmake) 14 - set(clang_cmake_builddir "${CMAKE_BINARY_DIR}/${CLANG_INSTALL_PACKAGE_DIR}") 15 - get_property(CLANG_EXPORTS GLOBAL PROPERTY CLANG_EXPORTS) 16 - - export(TARGETS ${CLANG_EXPORTS} FILE ${clang_cmake_builddir}/ClangTargets.cmake) 17 - 18 - # Install a <prefix>/share/clang/cmake/ClangConfig.cmake file so that 19 - # find_package(Clang) works. Install the target list with it. 20 - install(FILES 21 - ${CMAKE_CURRENT_SOURCE_DIR}/cmake/modules/ClangConfig.cmake 22 - - ${CLANG_BINARY_DIR}/share/clang/cmake/ClangTargets.cmake 23 - DESTINATION share/clang/cmake) 24 - 25 - + install(EXPORT ClangTargets DESTINATION share/clang/cmake) 26 - + 27 - # Also copy ClangConfig.cmake to the build directory so that dependent projects 28 - # can build against a build directory of Clang more easily. 29 - configure_file(
-56
pkgs/development/compilers/llvm/3.6/clang/default.nix
··· 1 - { stdenv, fetch, cmake, libxml2, libedit, llvm, version, clang-tools-extra_src }: 2 - 3 - let 4 - gcc = if stdenv.cc.isGNU then stdenv.cc.cc else stdenv.cc.cc.gcc; 5 - self = stdenv.mkDerivation { 6 - name = "clang-${version}"; 7 - 8 - unpackPhase = '' 9 - unpackFile ${fetch "cfe" "1wwr8s6lzr324hv4s1k6na4j5zv6n9kdhi14s4kb9b13d93814df"} 10 - mv cfe-${version}.src clang 11 - sourceRoot=$PWD/clang 12 - unpackFile ${clang-tools-extra_src} 13 - mv clang-tools-extra-* $sourceRoot/tools/extra 14 - ''; 15 - 16 - buildInputs = [ cmake libedit libxml2 llvm ]; 17 - 18 - cmakeFlags = [ 19 - "-DCMAKE_CXX_FLAGS=-std=c++11" 20 - ] ++ 21 - # Maybe with compiler-rt this won't be needed? 22 - (stdenv.lib.optional stdenv.isLinux "-DGCC_INSTALL_PREFIX=${gcc}") ++ 23 - (stdenv.lib.optional (stdenv.cc.libc != null) "-DC_INCLUDE_DIRS=${stdenv.cc.libc}/include"); 24 - 25 - patches = [ ./purity.patch ./cmake-exports.patch ]; 26 - 27 - postPatch = '' 28 - sed -i -e 's/Args.hasArg(options::OPT_nostdlibinc)/true/' lib/Driver/Tools.cpp 29 - sed -i -e 's/DriverArgs.hasArg(options::OPT_nostdlibinc)/true/' lib/Driver/ToolChains.cpp 30 - ''; 31 - 32 - # Clang expects to find LLVMgold in its own prefix 33 - # Clang expects to find sanitizer libraries in its own prefix 34 - postInstall = '' 35 - ln -sv ${llvm}/lib/LLVMgold.so $out/lib 36 - ln -sv ${llvm}/lib/clang/${version}/lib $out/lib/clang/${version}/ 37 - ln -sv $out/bin/clang $out/bin/cpp 38 - ''; 39 - 40 - enableParallelBuilding = true; 41 - 42 - passthru = { 43 - lib = self; # compatibility with gcc, so that `stdenv.cc.cc.lib` works on both 44 - isClang = true; 45 - } // stdenv.lib.optionalAttrs stdenv.isLinux { 46 - inherit gcc; 47 - }; 48 - 49 - meta = { 50 - description = "A c, c++, objective-c, and objective-c++ frontend for the llvm compiler"; 51 - homepage = http://llvm.org/; 52 - license = stdenv.lib.licenses.bsd3; 53 - platforms = stdenv.lib.platforms.all; 54 - }; 55 - }; 56 - in self
-22
pkgs/development/compilers/llvm/3.6/clang/purity.patch
··· 1 - diff --git a/lib/Driver/Tools.cpp b/lib/Driver/Tools.cpp 2 - index 198e82e..810d006 100644 3 - --- a/lib/Driver/Tools.cpp 4 - +++ b/lib/Driver/Tools.cpp 5 - @@ -7355,17 +7355,6 @@ void gnutools::Link::ConstructJob(Compilation &C, const JobAction &JA, 6 - CmdArgs.push_back("-shared"); 7 - } 8 - 9 - - if (ToolChain.getArch() == llvm::Triple::arm || 10 - - ToolChain.getArch() == llvm::Triple::armeb || 11 - - ToolChain.getArch() == llvm::Triple::thumb || 12 - - ToolChain.getArch() == llvm::Triple::thumbeb || 13 - - (!Args.hasArg(options::OPT_static) && 14 - - !Args.hasArg(options::OPT_shared))) { 15 - - CmdArgs.push_back("-dynamic-linker"); 16 - - CmdArgs.push_back(Args.MakeArgString( 17 - - D.DyldPrefix + getLinuxDynamicLinker(Args, ToolChain))); 18 - - } 19 - - 20 - CmdArgs.push_back("-o"); 21 - CmdArgs.push_back(Output.getFilename()); 22 -
-35
pkgs/development/compilers/llvm/3.6/default.nix
··· 1 - { newScope, stdenv, isl, fetchurl, overrideCC, wrapCC }: 2 - let 3 - callPackage = newScope (self // { inherit stdenv isl version fetch; }); 4 - 5 - version = "3.6.2"; 6 - 7 - fetch = fetch_v version; 8 - fetch_v = ver: name: sha256: fetchurl { 9 - url = "http://llvm.org/releases/${ver}/${name}-${ver}.src.tar.xz"; 10 - inherit sha256; 11 - }; 12 - 13 - compiler-rt_src = fetch "compiler-rt" "11qx8d3pbfqjaj2x207pvlvzihbs1z2xbw4crpz7aid6h1yz6bqg"; 14 - clang-tools-extra_src = fetch "clang-tools-extra" "1ssgs1108gnsggyx9wcl4hmq196f5ix0y1j7ygfh3xcqsckwc3ka"; 15 - 16 - self = { 17 - llvm = callPackage ./llvm.nix { 18 - inherit compiler-rt_src stdenv; 19 - }; 20 - 21 - clang-unwrapped = callPackage ./clang { 22 - inherit clang-tools-extra_src stdenv; 23 - }; 24 - 25 - clang = wrapCC self.clang-unwrapped; 26 - 27 - stdenv = overrideCC stdenv self.clang; 28 - 29 - lldb = callPackage ./lldb.nix {}; 30 - 31 - libcxx = callPackage ./libc++ {}; 32 - 33 - libcxxabi = callPackage ./libc++abi.nix {}; 34 - }; 35 - in self
-30
pkgs/development/compilers/llvm/3.6/libc++/darwin.patch
··· 1 - diff -ru -x '*~' libcxx-3.4.2.src-orig/lib/CMakeLists.txt libcxx-3.4.2.src/lib/CMakeLists.txt 2 - --- libcxx-3.4.2.src-orig/lib/CMakeLists.txt 2013-11-15 18:18:57.000000000 +0100 3 - +++ libcxx-3.4.2.src/lib/CMakeLists.txt 2014-09-24 14:04:01.000000000 +0200 4 - @@ -56,7 +56,7 @@ 5 - "-compatibility_version 1" 6 - "-current_version ${LIBCXX_VERSION}" 7 - "-install_name /usr/lib/libc++.1.dylib" 8 - - "-Wl,-reexport_library,/usr/lib/libc++abi.dylib" 9 - + "-Wl,-reexport_library,${LIBCXX_LIBCXXABI_LIB_PATH}/libc++abi.dylib" 10 - "-Wl,-unexported_symbols_list,${CMAKE_CURRENT_SOURCE_DIR}/libc++unexp.exp" 11 - "/usr/lib/libSystem.B.dylib") 12 - else() 13 - @@ -64,14 +64,14 @@ 14 - list(FIND ${CMAKE_OSX_ARCHITECTURES} "armv7" OSX_HAS_ARMV7) 15 - if (OSX_HAS_ARMV7) 16 - set(OSX_RE_EXPORT_LINE 17 - - "${CMAKE_OSX_SYSROOT}/usr/lib/libc++abi.dylib" 18 - + "${CMAKE_OSX_SYSROOT}${LIBCXX_LIBCXXABI_LIB_PATH}/libc++abi.dylib" 19 - "-Wl,-reexported_symbols_list,${CMAKE_CURRENT_SOURCE_DIR}/libc++sjlj-abi.exp") 20 - else() 21 - set(OSX_RE_EXPORT_LINE 22 - - "-Wl,-reexport_library,${CMAKE_OSX_SYSROOT}/usr/lib/libc++abi.dylib") 23 - + "-Wl,-reexport_library,${CMAKE_OSX_SYSROOT}${LIBCXX_LIBCXXABI_LIB_PATH}/libc++abi.dylib") 24 - endif() 25 - else() 26 - - set (OSX_RE_EXPORT_LINE "/usr/lib/libc++abi.dylib -Wl,-reexported_symbols_list,${CMAKE_CURRENT_SOURCE_DIR}/libc++abi${LIBCXX_LIBCPPABI_VERSION}.exp") 27 - + set (OSX_RE_EXPORT_LINE "${LIBCXX_LIBCXXABI_LIB_PATH}/libc++abi.dylib -Wl,-reexported_symbols_list,${CMAKE_CURRENT_SOURCE_DIR}/libc++abi${LIBCXX_LIBCPPABI_VERSION}.exp") 28 - endif() 29 - 30 - list(APPEND link_flags
-41
pkgs/development/compilers/llvm/3.6/libc++/default.nix
··· 1 - { lib, stdenv, fetch, cmake, libcxxabi, fixDarwinDylibNames, version }: 2 - 3 - stdenv.mkDerivation rec { 4 - name = "libc++-${version}"; 5 - 6 - src = fetch "libcxx" "10cbgi1nfksjrlgvbsx8pkcqxsgkszdqy5cj2zgwj2c2yi9d9wsj"; 7 - 8 - # instead of allowing libc++ to link with /usr/lib/libc++abi.dylib, 9 - # force it to link with our copy 10 - preConfigure = stdenv.lib.optionalString stdenv.isDarwin '' 11 - substituteInPlace lib/CMakeLists.txt \ 12 - --replace 'OSX_RE_EXPORT_LINE "/usr/lib/libc++abi.dylib' \ 13 - 'OSX_RE_EXPORT_LINE "${libcxxabi}/lib/libc++abi.dylib' \ 14 - --replace '"''${CMAKE_OSX_SYSROOT}/usr/lib/libc++abi.dylib"' \ 15 - '"${libcxxabi}/lib/libc++abi.dylib"' 16 - ''; 17 - 18 - patches = [ ./darwin.patch ]; 19 - 20 - buildInputs = [ cmake libcxxabi ] ++ lib.optional stdenv.isDarwin fixDarwinDylibNames; 21 - 22 - cmakeFlags = [ 23 - "-DLIBCXX_LIBCXXABI_INCLUDE_PATHS=${libcxxabi}/include" 24 - "-DLIBCXX_LIBCXXABI_LIB_PATH=${libcxxabi}/lib" 25 - "-DLIBCXX_LIBCPPABI_VERSION=2" 26 - "-DLIBCXX_CXX_ABI=libcxxabi" 27 - ]; 28 - 29 - enableParallelBuilding = true; 30 - 31 - linkCxxAbi = stdenv.isLinux; 32 - 33 - setupHook = ./setup-hook.sh; 34 - 35 - meta = { 36 - homepage = http://libcxx.llvm.org/; 37 - description = "A new implementation of the C++ standard library, targeting C++11"; 38 - license = "BSD"; 39 - platforms = stdenv.lib.platforms.unix; 40 - }; 41 - }
-3
pkgs/development/compilers/llvm/3.6/libc++/setup-hook.sh
··· 1 - linkCxxAbi="@linkCxxAbi@" 2 - export NIX_CXXSTDLIB_COMPILE+=" -isystem @out@/include/c++/v1" 3 - export NIX_CXXSTDLIB_LINK=" -stdlib=libc++${linkCxxAbi:+" -lc++abi"}"
-47
pkgs/development/compilers/llvm/3.6/libc++abi.nix
··· 1 - { stdenv, cmake, fetch, libcxx, libunwind, llvm, version }: 2 - 3 - stdenv.mkDerivation { 4 - name = "libc++abi-${version}"; 5 - 6 - src = fetch "libcxxabi" "16xh54rlnbip4f2bwwbdm1sd6bkqky35jgp7fndnns0llpjqrd3g"; 7 - 8 - buildInputs = [ cmake ] ++ stdenv.lib.optional (!stdenv.isDarwin) libunwind; 9 - 10 - postUnpack = '' 11 - unpackFile ${libcxx.src} 12 - unpackFile ${llvm.src} 13 - export NIX_CFLAGS_COMPILE+=" -I$PWD/include" 14 - export cmakeFlags="-DLLVM_PATH=$PWD/$(ls -d llvm-*) -DLIBCXXABI_LIBCXX_INCLUDES=$PWD/$(ls -d libcxx-*)/include" 15 - '' + stdenv.lib.optionalString stdenv.isDarwin '' 16 - export TRIPLE=x86_64-apple-darwin 17 - ''; 18 - 19 - installPhase = if stdenv.isDarwin 20 - then '' 21 - for file in lib/*; do 22 - # this should be done in CMake, but having trouble figuring out 23 - # the magic combination of necessary CMake variables 24 - # if you fancy a try, take a look at 25 - # http://www.cmake.org/Wiki/CMake_RPATH_handling 26 - install_name_tool -id $out/$file $file 27 - done 28 - make install 29 - install -d 755 $out/include 30 - install -m 644 ../include/cxxabi.h $out/include 31 - '' 32 - else '' 33 - install -d -m 755 $out/include $out/lib 34 - install -m 644 lib/libc++abi.so.1.0 $out/lib 35 - install -m 644 ../include/cxxabi.h $out/include 36 - ln -s libc++abi.so.1.0 $out/lib/libc++abi.so 37 - ln -s libc++abi.so.1.0 $out/lib/libc++abi.so.1 38 - ''; 39 - 40 - meta = { 41 - homepage = http://libcxxabi.llvm.org/; 42 - description = "A new implementation of low level support for a standard C++ library"; 43 - license = "BSD"; 44 - maintainers = with stdenv.lib.maintainers; [ vlstill ]; 45 - platforms = stdenv.lib.platforms.unix; 46 - }; 47 - }
-43
pkgs/development/compilers/llvm/3.6/lldb.nix
··· 1 - { stdenv 2 - , fetch 3 - , cmake 4 - , zlib 5 - , ncurses 6 - , swig 7 - , which 8 - , libedit 9 - , llvm 10 - , clang-unwrapped 11 - , python 12 - , version 13 - }: 14 - 15 - stdenv.mkDerivation { 16 - name = "lldb-${version}"; 17 - 18 - src = fetch "lldb" "1a93cpmlcnpyglgcyfjb3n7c33683wfhwzn36azpv6wicimwj3cl"; 19 - 20 - patchPhase = '' 21 - sed -i 's|/usr/bin/env||' \ 22 - scripts/Python/finish-swig-Python-LLDB.sh \ 23 - scripts/Python/build-swig-Python.sh 24 - ''; 25 - 26 - buildInputs = [ cmake python which swig ncurses zlib libedit ]; 27 - 28 - cmakeFlags = [ 29 - "-DCMAKE_CXX_FLAGS=-std=c++11" 30 - "-DLLDB_PATH_TO_LLVM_BUILD=${llvm}" 31 - "-DLLDB_PATH_TO_CLANG_BUILD=${clang-unwrapped}" 32 - "-DLLDB_DISABLE_LIBEDIT=1" # https://llvm.org/bugs/show_bug.cgi?id=28898 33 - ]; 34 - 35 - enableParallelBuilding = true; 36 - 37 - meta = { 38 - description = "A next-generation high-performance debugger"; 39 - homepage = http://llvm.org/; 40 - license = stdenv.lib.licenses.bsd3; 41 - platforms = stdenv.lib.platforms.all; 42 - }; 43 - }
-73
pkgs/development/compilers/llvm/3.6/llvm.nix
··· 1 - { stdenv 2 - , fetch 3 - , perl 4 - , groff 5 - , cmake 6 - , python 7 - , libffi 8 - , binutils 9 - , libxml2 10 - , valgrind 11 - , ncurses 12 - , version 13 - , zlib 14 - , compiler-rt_src 15 - , debugVersion ? false 16 - , enableSharedLibraries ? !stdenv.isDarwin 17 - }: 18 - 19 - let 20 - src = fetch "llvm" "153vcvj8gvgwakzr4j0kndc0b7wn91c2g1vy2vg24s6spxcc23gn"; 21 - in stdenv.mkDerivation rec { 22 - name = "llvm-${version}"; 23 - 24 - unpackPhase = '' 25 - unpackFile ${src} 26 - mv llvm-${version}.src llvm 27 - sourceRoot=$PWD/llvm 28 - unpackFile ${compiler-rt_src} 29 - mv compiler-rt-* $sourceRoot/projects/compiler-rt 30 - ''; 31 - 32 - buildInputs = [ perl groff cmake libxml2 python libffi ] /* ++ stdenv.lib.optional stdenv.isLinux valgrind */; 33 - 34 - propagatedBuildInputs = [ ncurses zlib ]; 35 - 36 - # hacky fix: created binaries need to be run before installation 37 - preBuild = '' 38 - mkdir -p $out/ 39 - ln -sv $PWD/lib $out 40 - ''; 41 - 42 - cmakeFlags = with stdenv; [ 43 - "-DCMAKE_BUILD_TYPE=${if debugVersion then "Debug" else "Release"}" 44 - "-DLLVM_BUILD_TESTS=ON" 45 - "-DLLVM_ENABLE_FFI=ON" 46 - "-DLLVM_ENABLE_RTTI=ON" 47 - ] ++ stdenv.lib.optional enableSharedLibraries 48 - "-DBUILD_SHARED_LIBS=ON" 49 - ++ stdenv.lib.optional (!isDarwin) 50 - "-DLLVM_BINUTILS_INCDIR=${binutils.dev}/include" 51 - ++ stdenv.lib.optionals ( isDarwin) [ 52 - "-DCMAKE_CXX_FLAGS=-stdlib=libc++" 53 - "-DCAN_TARGET_i386=false" 54 - ]; 55 - 56 - postBuild = '' 57 - rm -fR $out 58 - 59 - paxmark m bin/{lli,llvm-rtdyld} 60 - ''; 61 - 62 - enableParallelBuilding = true; 63 - 64 - passthru.src = src; 65 - 66 - meta = { 67 - description = "Collection of modular and reusable compiler and toolchain technologies"; 68 - homepage = http://llvm.org/; 69 - license = stdenv.lib.licenses.bsd3; 70 - maintainers = with stdenv.lib.maintainers; [ lovek323 raskin viric ]; 71 - platforms = stdenv.lib.platforms.all; 72 - }; 73 - }
+10 -10
pkgs/development/compilers/openjdk/8.nix
··· 21 21 else 22 22 throw "openjdk requires i686-linux or x86_64 linux"; 23 23 24 - update = "122"; 25 - build = "04"; 24 + update = "121"; 25 + build = "13"; 26 26 baseurl = "http://hg.openjdk.java.net/jdk8u/jdk8u"; 27 27 repover = "jdk8u${update}-b${build}"; 28 28 paxflags = if stdenv.isi686 then "msp" else "m"; 29 29 jdk8 = fetchurl { 30 30 url = "${baseurl}/archive/${repover}.tar.gz"; 31 - sha256 = "1zqqy5gzrx7f438j5pjdavj41plb04p6b1ikspksrgnhs5wrrr02"; 31 + sha256 = "1ns0lnl5n05k1kgp8d6fyyk6gx57sx7rmlcc33d3vxhr58560nbv"; 32 32 }; 33 33 langtools = fetchurl { 34 34 url = "${baseurl}/langtools/archive/${repover}.tar.gz"; 35 - sha256 = "0hhsm23mxvjxmf0jxlhm57s203k88s8xbmk71l8zlnjsz88ni4gx"; 35 + sha256 = "0vj5mnqw80r4xqlmiab7wbrkhz3rl8ijhwqplkbs42wad75lvnh8"; 36 36 }; 37 37 hotspot = fetchurl { 38 38 url = "${baseurl}/hotspot/archive/${repover}.tar.gz"; 39 - sha256 = "1r4a52brsg1xd2dc2b8lzd4w4yvcjdmj9a6avjihx1hpgcs4xzd1"; 39 + sha256 = "0mcjjc34jvckg1f1x9v7gik3h5y4kx7skkfgzhknh14637jzb2hs"; 40 40 }; 41 41 corba = fetchurl { 42 42 url = "${baseurl}/corba/archive/${repover}.tar.gz"; 43 - sha256 = "0ixa6kdqkiq83817qdymiy772449iva11rh3pr68qpfnmbx1zzil"; 43 + sha256 = "0bxf1mrpmxgjmg40yi3ww7lh22f6h0nrvlvf5jwwzf4hb3a3998g"; 44 44 }; 45 45 jdk = fetchurl { 46 46 url = "${baseurl}/jdk/archive/${repover}.tar.gz"; 47 - sha256 = "1kw4h3j93cvnlzh0vhj4xxdm90bk7hfg6kpqk09x0a12whh2ww3h"; 47 + sha256 = "10f641ngwiqr2z6hbz0xkyfh8h3z7kdxj5b1d30rgynzghf5wksr"; 48 48 }; 49 49 jaxws = fetchurl { 50 50 url = "${baseurl}/jaxws/archive/${repover}.tar.gz"; 51 - sha256 = "0wrj3jyv3922m3pxfg0i9c3ap71b0rass7swvhi996c029rd12r7"; 51 + sha256 = "1bgjpivlxi0qlmhvz838zzkzz26d4ly8b0c963kx0lpabz8p99xi"; 52 52 }; 53 53 jaxp = fetchurl { 54 54 url = "${baseurl}/jaxp/archive/${repover}.tar.gz"; 55 - sha256 = "0b743mygzdavdd59l98b3l6a03dihs4ipd1xlpkacy778wzpr59d"; 55 + sha256 = "17bcb5ic1ifk5rda1dzjd1483k9mah5npjg5dg77iyziq8kprvri"; 56 56 }; 57 57 nashorn = fetchurl { 58 58 url = "${baseurl}/nashorn/archive/${repover}.tar.gz"; 59 - sha256 = "10wkshhzj15wvx7i53dbkwi85f4fbbxi26zphr5b6daf3ib0hind"; 59 + sha256 = "19fmlipqk9qiv7jc84b0z022q403nyp7b32a5qqqcn6aavdqnf7c"; 60 60 }; 61 61 openjdk8 = stdenv.mkDerivation { 62 62 name = "openjdk-8u${update}b${build}";
+2 -2
pkgs/development/compilers/rust/nightlyBin.nix
··· 9 9 10 10 bootstrapHash = 11 11 if stdenv.system == "x86_64-linux" 12 - then "05bppmc6hqgv2g4x76rj95xf40x2aikqmcnql5li27rqwliyxznj" 12 + then "1v7jvwigb29m15wilzcrk5jmlpaccpzbkhlzf7z5qw08320gvc91" 13 13 else throw "missing boostrap hash for platform ${stdenv.system}"; 14 14 15 15 needsPatchelf = stdenv.isLinux; ··· 19 19 sha256 = bootstrapHash; 20 20 }; 21 21 22 - version = "2016-12-29"; 22 + version = "2017-01-26"; 23 23 in 24 24 25 25 rec {
+4
pkgs/development/compilers/zulu/default.nix
··· 56 56 57 57 rpath = stdenv.lib.strings.makeLibraryPath libraries; 58 58 59 + passthru = { 60 + home = "${zulu}"; 61 + }; 62 + 59 63 meta = with stdenv.lib; { 60 64 homepage = https://www.azul.com/products/zulu/; 61 65 license = licenses.gpl2;
+23
pkgs/development/coq-modules/math-classes/default.nix
··· 1 + { stdenv, fetchFromGitHub, coq }: 2 + 3 + stdenv.mkDerivation { 4 + name = "coq${coq.coq-version}-math-classes-2016-06-08"; 5 + 6 + src = fetchFromGitHub { 7 + owner = "math-classes"; 8 + repo = "math-classes"; 9 + rev = "751e63b260bd2f78b280f2566c08a18034bd40b3"; 10 + sha256 = "0kjc2wzb6n9hcqb2ijx2pckn8jk5g09crrb87yb4s9m0mrw79smr"; 11 + }; 12 + 13 + buildInputs = [ coq ]; 14 + enableParallelBuilding = true; 15 + installFlags = "COQLIB=$(out)/lib/coq/${coq.coq-version}/"; 16 + 17 + meta = with stdenv.lib; { 18 + homepage = https://math-classes.github.io; 19 + description = "A library of abstract interfaces for mathematical structures in Coq."; 20 + maintainers = with maintainers; [ siddharthist ]; 21 + platforms = coq.meta.platforms; 22 + }; 23 + }
+3
pkgs/development/haskell-modules/configuration-common.nix
··· 1190 1190 optparse-applicative = self.optparse-applicative_0_13_0_0; 1191 1191 }); 1192 1192 1193 + # No upstream issue tracker 1194 + hspec-expectations-pretty-diff = dontCheck super.hspec-expectations-pretty-diff; 1195 + 1193 1196 lentil = super.lentil.overrideScope (self: super: { 1194 1197 pipes = self.pipes_4_3_2; 1195 1198 optparse-applicative = self.optparse-applicative_0_13_0_0;
-2
pkgs/development/haskell-modules/configuration-hackage2nix.yaml
··· 3060 3060 crypto-enigma: [ i686-linux, x86_64-linux, x86_64-darwin ] 3061 3061 crypto-multihash: [ i686-linux, x86_64-linux, x86_64-darwin ] 3062 3062 crypto-random-effect: [ i686-linux, x86_64-linux, x86_64-darwin ] 3063 - cryptonite-openssl: [ i686-linux, x86_64-linux, x86_64-darwin ] 3064 3063 cryptsy-api: [ i686-linux, x86_64-linux, x86_64-darwin ] 3065 3064 crystalfontz: [ i686-linux, x86_64-linux, x86_64-darwin ] 3066 3065 cse-ghc-plugin: [ i686-linux, x86_64-linux, x86_64-darwin ] ··· 4731 4730 hsparql: [ i686-linux, x86_64-linux, x86_64-darwin ] 4732 4731 hspear: [ i686-linux, x86_64-linux, x86_64-darwin ] 4733 4732 hspec-expectations-lifted: [ i686-linux, x86_64-linux, x86_64-darwin ] 4734 - hspec-expectations-pretty-diff: [ i686-linux, x86_64-linux, x86_64-darwin ] 4735 4733 hspec-expectations-pretty: [ i686-linux, x86_64-linux, x86_64-darwin ] 4736 4734 hspec-experimental: [ i686-linux, x86_64-linux, x86_64-darwin ] 4737 4735 hspec-golden-aeson: [ i686-linux, x86_64-linux, x86_64-darwin ]
+2 -2
pkgs/development/interpreters/clojure/clooj.nix
··· 6 6 name = "clooj-${version}"; 7 7 8 8 jar = fetchurl { 9 - url = "http://www.mediafire.com/download/prkf64humftrmz3/clooj-${version}-standalone.jar"; 9 + url = "http://download1492.mediafire.com/dptomdxrjaag/prkf64humftrmz3/clooj-0.4.4-standalone.jar"; 10 10 sha256 = "0hbc29bg2a86rm3sx9kvj7h7db9j0kbnrb706wsfiyk3zi3bavnd"; 11 11 }; 12 12 ··· 25 25 homepage = https://github.com/arthuredelstein/clooj; 26 26 license = stdenv.lib.licenses.bsd3; 27 27 }; 28 - } 28 + }
+2 -2
pkgs/development/interpreters/racket/default.nix
··· 32 32 33 33 stdenv.mkDerivation rec { 34 34 name = "racket-${version}"; 35 - version = "6.7"; 35 + version = "6.8"; 36 36 37 37 src = fetchurl { 38 38 url = "http://mirror.racket-lang.org/installers/${version}/${name}-src.tgz"; 39 - sha256 = "0v1nz07vzz0c7rwyz15kbagpl4l42n871vbwij4wrbk2lx22ksgy"; 39 + sha256 = "1l9z1a0r5zydr50cklx9xjw3l0pwnf64i10xq7112fl1r89q3qgv"; 40 40 }; 41 41 42 42 FONTCONFIG_FILE = fontsConf;
+1
pkgs/development/interpreters/spidermonkey/17.nix
··· 22 22 sed -i 's/(defined\((@TEMPLATE_FILE)\))/\1/' config/milestone.pl 23 23 '' + stdenv.lib.optionalString stdenv.isAarch64 '' 24 24 patch -p1 -d ../.. < ${./aarch64-double-conversion.patch} 25 + patch -p1 -d ../.. < ${./aarch64-48bit-va-fix.patch} 25 26 ''; 26 27 27 28 preConfigure = ''
+106
pkgs/development/interpreters/spidermonkey/aarch64-48bit-va-fix.patch
··· 1 + From a0c0f32299419359b44ac0f880c1ea9073ae51e1 Mon Sep 17 00:00:00 2001 2 + From: Zheng Xu <zheng.xu@linaro.org> 3 + Date: Fri, 02 Sep 2016 17:40:05 +0800 4 + Subject: [PATCH] Bug 1143022 - Manually mmap on arm64 to ensure high 17 bits are clear. r=ehoogeveen 5 + 6 + There might be 48-bit VA on arm64 depending on kernel configuration. 7 + Manually mmap heap memory to align with the assumption made by JS engine. 8 + 9 + Change-Id: Ic5d2b2fe4b758b3c87cc0688348af7e71a991146 10 + --- 11 + 12 + diff --git a/js/src/gc/Memory.cpp b/js/src/gc/Memory.cpp 13 + index 5b386a2..38101cf 100644 14 + --- a/js/src/gc/Memory.cpp 15 + +++ b/js/src/gc/Memory.cpp 16 + @@ -309,6 +309,75 @@ 17 + #endif 18 + } 19 + 20 + +static inline void * 21 + +MapMemory(size_t length, int prot, int flags, int fd, off_t offset) 22 + +{ 23 + +#if defined(__ia64__) 24 + + /* 25 + + * The JS engine assumes that all allocated pointers have their high 17 bits clear, 26 + + * which ia64's mmap doesn't support directly. However, we can emulate it by passing 27 + + * mmap an "addr" parameter with those bits clear. The mmap will return that address, 28 + + * or the nearest available memory above that address, providing a near-guarantee 29 + + * that those bits are clear. If they are not, we return NULL below to indicate 30 + + * out-of-memory. 31 + + * 32 + + * The addr is chosen as 0x0000070000000000, which still allows about 120TB of virtual 33 + + * address space. 34 + + * 35 + + * See Bug 589735 for more information. 36 + + */ 37 + + void *region = mmap((void*)0x0000070000000000, length, prot, flags, fd, offset); 38 + + if (region == MAP_FAILED) 39 + + return MAP_FAILED; 40 + + /* 41 + + * If the allocated memory doesn't have its upper 17 bits clear, consider it 42 + + * as out of memory. 43 + + */ 44 + + if ((uintptr_t(region) + (length - 1)) & 0xffff800000000000) { 45 + + JS_ALWAYS_TRUE(0 == munmap(region, length)); 46 + + return MAP_FAILED; 47 + + } 48 + + return region; 49 + +#elif defined(__aarch64__) 50 + + /* 51 + + * There might be similar virtual address issue on arm64 which depends on 52 + + * hardware and kernel configurations. But the work around is slightly 53 + + * different due to the different mmap behavior. 54 + + * 55 + + * TODO: Merge with the above code block if this implementation works for 56 + + * ia64 and sparc64. 57 + + */ 58 + + const uintptr_t start = (uintptr_t)(0x0000070000000000UL); 59 + + const uintptr_t end = (uintptr_t)(0x0000800000000000UL); 60 + + const uintptr_t step = ChunkSize; 61 + + /* 62 + + * Optimization options if there are too many retries in practice: 63 + + * 1. Examine /proc/self/maps to find an available address. This file is 64 + + * not always available, however. In addition, even if we examine 65 + + * /proc/self/maps, we may still need to retry several times due to 66 + + * racing with other threads. 67 + + * 2. Use a global/static variable with lock to track the addresses we have 68 + + * allocated or tried. 69 + + */ 70 + + uintptr_t hint; 71 + + void* region = MAP_FAILED; 72 + + for (hint = start; region == MAP_FAILED && hint + length <= end; hint += step) { 73 + + region = mmap((void*)hint, length, prot, flags, fd, offset); 74 + + if (region != MAP_FAILED) { 75 + + if ((uintptr_t(region) + (length - 1)) & 0xffff800000000000) { 76 + + if (munmap(region, length)) { 77 + + MOZ_ASSERT(errno == ENOMEM); 78 + + } 79 + + region = MAP_FAILED; 80 + + } 81 + + } 82 + + } 83 + + return region == MAP_FAILED ? NULL : region; 84 + +#else 85 + + return mmap(NULL, length, prot, flags, fd, offset); 86 + +#endif 87 + +} 88 + + 89 + void * 90 + MapAlignedPages(size_t size, size_t alignment) 91 + { 92 + @@ -322,12 +391,12 @@ 93 + 94 + /* Special case: If we want page alignment, no further work is needed. */ 95 + if (alignment == PageSize) { 96 + - return mmap(NULL, size, prot, flags, -1, 0); 97 + + return MapMemory(size, prot, flags, -1, 0); 98 + } 99 + 100 + /* Overallocate and unmap the region's edges. */ 101 + size_t reqSize = Min(size + 2 * alignment, 2 * size); 102 + - void *region = mmap(NULL, reqSize, prot, flags, -1, 0); 103 + + void *region = MapMemory(reqSize, prot, flags, -1, 0); 104 + if (region == MAP_FAILED) 105 + return NULL; 106 +
+4 -12
pkgs/development/libraries/ffmpeg-full/default.nix
··· 4 4 */ 5 5 , gplLicensing ? true # GPL: fdkaac,openssl,frei0r,cdio,samba,utvideo,vidstab,x265,x265,xavs,avid,zvbi,x11grab 6 6 , version3Licensing ? true # (L)GPL3: opencore-amrnb,opencore-amrwb,samba,vo-aacenc,vo-amrwbenc 7 - , nonfreeLicensing ? false # NONFREE: openssl,fdkaac,faac,aacplus,blackmagic-design-desktop-video 7 + , nonfreeLicensing ? false # NONFREE: openssl,fdkaac,blackmagic-design-desktop-video 8 8 /* 9 9 * Build options 10 10 */ ··· 12 12 , runtimeCpuDetectBuild ? true # Detect CPU capabilities at runtime (disable to compile natively) 13 13 , grayBuild ? true # Full grayscale support 14 14 , swscaleAlphaBuild ? true # Alpha channel support in swscale 15 - , incompatibleLibavAbiBuild ? false # Incompatible Libav fork ABI 16 15 , hardcodedTablesBuild ? true # Hardcode decode tables instead of runtime generation 17 16 , safeBitstreamReaderBuild ? true # Buffer boundary checking in bitreaders 18 17 , memalignHackBuild ? false # Emulate memalign ··· 49 48 /* 50 49 * External libraries options 51 50 */ 52 - #, aacplusExtlib ? false, aacplus ? null # AAC+ encoder 53 51 , alsaLib ? null # Alsa in/output support 54 52 #, avisynth ? null # Support for reading AviSynth scripts 55 53 , bzip2 ? null 56 54 , celt ? null # CELT decoder 57 55 #, crystalhd ? null # Broadcom CrystalHD hardware acceleration 58 56 #, decklinkExtlib ? false, blackmagic-design-desktop-video ? null # Blackmagic Design DeckLink I/O support 59 - , faacExtlib ? false, faac ? null # AAC encoder 60 57 , fdkaacExtlib ? false, fdk_aac ? null # Fraunhofer FDK AAC de/encoder 61 58 #, flite ? null # Flite (voice synthesis) support 62 59 , fontconfig ? null # Needed for drawtext filter ··· 220 217 /* 221 218 * External libraries 222 219 */ 223 - #assert aacplusExtlib -> nonfreeLicensing; 224 220 #assert decklinkExtlib -> blackmagic-design-desktop-video != null 225 221 # && !isCygwin && multithreadBuild # POSIX threads required 226 222 # && nonfreeLicensing; 227 - assert faacExtlib -> faac != null && nonfreeLicensing; 228 223 assert fdkaacExtlib -> fdk_aac != null && nonfreeLicensing; 229 224 assert gnutls != null -> !opensslExtlib; 230 225 assert libxcbshmExtlib -> libxcb != null; ··· 237 232 238 233 stdenv.mkDerivation rec { 239 234 name = "ffmpeg-full-${version}"; 240 - version = "3.1.3"; 235 + version = "3.2.2"; 241 236 242 237 src = fetchurl { 243 238 url = "https://www.ffmpeg.org/releases/ffmpeg-${version}.tar.xz"; 244 - sha256 = "08l8290gipm632dhrqndnphdpkc5ncqc1j3hxdx46r1a3q3mqmzq"; 239 + sha256 = "1z7d5y5crhsl5fm74236rdwbkd4jj5frx1l4iizjfym1w4gvs09z"; 245 240 }; 246 241 247 242 patchPhase = ''patchShebangs . ··· 267 262 (enableFeature runtimeCpuDetectBuild "runtime-cpudetect") 268 263 (enableFeature grayBuild "gray") 269 264 (enableFeature swscaleAlphaBuild "swscale-alpha") 270 - (enableFeature incompatibleLibavAbiBuild "incompatible-libav-abi") 271 265 (enableFeature hardcodedTablesBuild "hardcoded-tables") 272 266 (enableFeature safeBitstreamReaderBuild "safe-bitstream-reader") 273 267 (enableFeature memalignHackBuild "memalign-hack") ··· 314 308 /* 315 309 * External libraries 316 310 */ 317 - #(enableFeature aacplus "libaacplus") 318 311 #(enableFeature avisynth "avisynth") 319 312 (enableFeature (bzip2 != null) "bzlib") 320 313 (enableFeature (celt != null) "libcelt") 321 314 #(enableFeature crystalhd "crystalhd") 322 315 #(enableFeature decklinkExtlib "decklink") 323 - (enableFeature faacExtlib "libfaac") 324 316 (enableFeature (fdkaacExtlib && gplLicensing) "libfdk-aac") 325 317 #(enableFeature (flite != null) "libflite") 326 318 "--disable-libflite" # Force disable until a solution is found ··· 412 404 samba SDL soxr speex vid-stab wavpack x264 x265 xavs xvidcore zeromq4 zlib 413 405 ] ++ optional openglExtlib mesa 414 406 ++ optionals x11grabExtlib [ libXext libXfixes ] 415 - ++ optionals nonfreeLicensing [ faac fdk_aac openssl ] 407 + ++ optionals nonfreeLicensing [ fdk_aac openssl ] 416 408 ++ optional ((isLinux || isFreeBSD) && libva != null) libva 417 409 ++ optionals isLinux [ alsaLib libraw1394 libv4l ] 418 410 ++ optionals nvenc [ nvidia-video-sdk ]
-10
pkgs/development/libraries/gnutls/3.3.nix
··· 1 - { callPackage, fetchurl, ... } @ args: 2 - 3 - callPackage ./generic.nix (args // rec { 4 - version = "3.3.26"; 5 - 6 - src = fetchurl { 7 - url = "ftp://ftp.gnutls.org/gcrypt/gnutls/v3.3/gnutls-${version}.tar.xz"; 8 - sha256 = "1n90qyz54hhnmf4fmap6zdyv7nihz6mrbqgxhd46h7aqdcmqhzba"; 9 - }; 10 - })
+2 -1
pkgs/development/libraries/libdrm/default.nix
··· 19 19 preConfigure = stdenv.lib.optionalString stdenv.isDarwin 20 20 "echo : \\\${ac_cv_func_clock_gettime=\'yes\'} > config.cache"; 21 21 22 - configureFlags = [ "--enable-freedreno" "--disable-valgrind" ] 22 + configureFlags = [ "--disable-valgrind" ] 23 + ++ stdenv.lib.optionals (stdenv.isArm || stdenv.isAarch64) [ "--enable-tegra-experimental-api" "--enable-etnaviv-experimental-api" ] 23 24 ++ stdenv.lib.optional stdenv.isDarwin "-C"; 24 25 25 26 crossAttrs.configureFlags = configureFlags ++ [ "--disable-intel" ];
-14
pkgs/development/libraries/libmsgpack/0.5-CMake.patch
··· 1 - diff -r 791a4edd7e1d CMakeLists.txt 2 - --- a/CMakeLists.txt Sun Oct 05 13:14:14 2014 +0100 3 - +++ b/CMakeLists.txt Sun Oct 05 13:20:12 2014 +0100 4 - @@ -157,8 +157,9 @@ 5 - 6 - INSTALL (TARGETS msgpack msgpack-static DESTINATION lib) 7 - INSTALL (DIRECTORY src/msgpack DESTINATION include) 8 - +INSTALL (FILES ${CMAKE_CURRENT_BINARY_DIR}/src/msgpack/version.h DESTINATION include/msgpack) 9 - INSTALL (FILES src/msgpack.h src/msgpack.hpp DESTINATION include) 10 - -INSTALL (FILES msgpack.pc DESTINATION lib/pkgconfig) 11 - +INSTALL (FILES ${CMAKE_CURRENT_BINARY_DIR}/msgpack.pc DESTINATION lib/pkgconfig) 12 - 13 - # Doxygen 14 - FIND_PACKAGE (Doxygen)
-14
pkgs/development/libraries/libmsgpack/0.5.nix
··· 1 - { callPackage, fetchFromGitHub, ... } @ args: 2 - 3 - callPackage ./generic.nix (args // rec { 4 - version = "0.5.9"; 5 - 6 - src = fetchFromGitHub { 7 - owner = "msgpack"; 8 - repo = "msgpack-c"; 9 - rev = "cpp-${version}"; 10 - sha256 = "19cmlxfr0sc2b08a1mq9plk9fj5l1i20f69j4pvbhlnah3xqfdjs"; 11 - }; 12 - 13 - patches = [ ./0.5-CMake.patch ]; 14 - })
-22
pkgs/development/libraries/libressl/2.3.nix
··· 1 - { stdenv, fetchurl }: 2 - 3 - stdenv.mkDerivation rec { 4 - name = "libressl-${version}"; 5 - version = "2.3.9"; 6 - 7 - src = fetchurl { 8 - url = "mirror://openbsd/LibreSSL/${name}.tar.gz"; 9 - sha256 = "1z4nh45zdh1gllhgbvlgd2vk4srhbaswyn82l3dzcfmi9rk17zx6"; 10 - }; 11 - 12 - enableParallelBuilding = true; 13 - 14 - outputs = [ "bin" "dev" "out" "man" ]; 15 - 16 - meta = with stdenv.lib; { 17 - description = "Free TLS/SSL implementation"; 18 - homepage = "http://www.libressl.org"; 19 - platforms = platforms.all; 20 - maintainers = with maintainers; [ thoughtpolice wkennington fpletz globin ]; 21 - }; 22 - }
-2
pkgs/development/libraries/libvpx/default.nix
··· 44 44 inherit (stdenv.lib) enableFeature optional optionals; 45 45 in 46 46 47 - assert isi686 || isx86_64 || isArm || isMips; # Requires ARM with floating point support 48 - 49 47 assert vp8DecoderSupport || vp8EncoderSupport || vp9DecoderSupport || vp9EncoderSupport; 50 48 assert internalStatsSupport && (vp9DecoderSupport || vp9EncoderSupport) -> postprocSupport; 51 49 /* If spatialResamplingSupport not enabled, build will fail with undeclared variable errors.
+14 -13
pkgs/development/libraries/mesa/default.nix
··· 67 67 "--with-dri-driverdir=$(drivers)/lib/dri" 68 68 "--with-dri-searchpath=${driverLink}/lib/dri" 69 69 "--with-egl-platforms=x11,wayland,drm" 70 - ] 71 - ++ optionals (stdenv.system != "armv7l-linux") [ 72 - "--with-gallium-drivers=svga,i915,ilo,r300,r600,radeonsi,nouveau,freedreno,swrast" 70 + ] ++ (if stdenv.isArm || stdenv.isAarch64 then [ 71 + "--with-gallium-drivers=nouveau,freedreno,vc4,swrast" 72 + "--with-dri-drivers=nouveau,swrast" 73 + ] else [ 74 + "--with-gallium-drivers=svga,i915,ilo,r300,r600,radeonsi,nouveau,swrast" 73 75 "--with-dri-drivers=i915,i965,nouveau,radeon,r200,swrast" 74 76 "--with-vulkan-drivers=intel" 75 - ] 76 - ++ [ 77 + ]) ++ [ 77 78 (enableFeature enableTextureFloats "texture-float") 78 79 (enableFeature grsecEnabled "glx-rts") 79 80 (enableFeature stdenv.isLinux "dri3") ··· 134 135 $out/lib/libxatracker* \ 135 136 $out/lib/libvulkan_* 136 137 137 - # move share/vulkan/icd.d/ 138 - mv $out/share/ $drivers/ 139 - # Update search path used by Vulkan (it's pointing to $out but 140 - # drivers are in $drivers) 141 - for js in $drivers/share/vulkan/icd.d/*.json; do 142 - substituteInPlace "$js" --replace "$out" "$drivers" 143 - done 144 - 145 138 mv $out/lib/dri/* $drivers/lib/dri # */ 146 139 rmdir "$out/lib/dri" 147 140 ··· 154 147 155 148 # set the default search path for DRI drivers; used e.g. by X server 156 149 substituteInPlace "$dev/lib/pkgconfig/dri.pc" --replace '$(drivers)' "${driverLink}" 150 + '' + optionalString (!(stdenv.isArm || stdenv.isAarch64)) '' 151 + # move share/vulkan/icd.d/ 152 + mv $out/share/ $drivers/ 153 + # Update search path used by Vulkan (it's pointing to $out but 154 + # drivers are in $drivers) 155 + for js in $drivers/share/vulkan/icd.d/*.json; do 156 + substituteInPlace "$js" --replace "$out" "$drivers" 157 + done 157 158 ''; 158 159 159 160 # TODO:
+9 -3
pkgs/development/libraries/mlt/qt-5.nix
··· 1 1 { stdenv, fetchurl, SDL, ffmpeg, frei0r, libjack2, libdv, libsamplerate 2 2 , libvorbis, libxml2, makeWrapper, movit, pkgconfig, sox, qtbase, qtsvg 3 + , fftw, vid-stab, opencv3, ladspa-sdk 3 4 }: 4 5 5 6 stdenv.mkDerivation rec { 6 7 name = "mlt-${version}"; 7 - version = "6.2.0"; 8 + version = "6.4.1"; 8 9 9 10 src = fetchurl { 10 11 url = "https://github.com/mltframework/mlt/archive/v${version}.tar.gz"; 11 - sha256 = "1zwzfgxrcbwkxnkiwv0a1rzxdnnaly90yyarl9wdw84nx11ffbnx"; 12 + sha256 = "10m3ry0b2pvqx3bk34qh5dq337nn8pkc2gzfyhsj4nv9abskln47"; 12 13 }; 13 14 14 15 buildInputs = [ 15 16 SDL ffmpeg frei0r libjack2 libdv libsamplerate libvorbis libxml2 16 - makeWrapper movit pkgconfig qtbase qtsvg sox 17 + makeWrapper movit pkgconfig qtbase qtsvg sox fftw vid-stab opencv3 18 + ladspa-sdk 17 19 ]; 18 20 19 21 # Mostly taken from: ··· 30 32 postInstall = '' 31 33 wrapProgram $out/bin/melt --prefix FREI0R_PATH : ${frei0r}/lib/frei0r-1 32 34 ''; 35 + 36 + passthru = { 37 + inherit ffmpeg; 38 + }; 33 39 34 40 meta = with stdenv.lib; { 35 41 description = "Open source multimedia framework, designed for television broadcasting";
+3 -8
pkgs/development/libraries/openssl/default.nix
··· 25 25 (versionOlder version "1.0.2" && (stdenv.isDarwin || (stdenv ? cross && stdenv.cross.libc == "libSystem"))) 26 26 ./darwin-arch.patch; 27 27 28 - outputs = [ "bin" "dev" "out" "man" ]; 29 - setOutputFlags = false; 28 + outputs = [ "bin" "dev" "out" "man" ]; 29 + setOutputFlags = false; 30 30 31 31 nativeBuildInputs = [ perl ]; 32 32 buildInputs = stdenv.lib.optional withCryptodev cryptodevHeaders; ··· 50 50 51 51 postConfigure = if makeDepend then "make depend" else null; 52 52 53 - makeFlags = [ "MANDIR=$(man)/share/man" ]; 53 + makeFlags = [ "MANDIR=$(man)/share/man" ]; 54 54 55 55 # Parallel building is broken in OpenSSL. 56 56 enableParallelBuilding = false; ··· 108 108 }; 109 109 110 110 in { 111 - 112 - openssl_1_0_1-vulnerable = common { 113 - version = "1.0.1u"; 114 - sha256 = "0fb7y9pwbd76pgzd7xzqfrzibmc0vf03sl07f34z5dhm2b5b84j3"; 115 - }; 116 111 117 112 openssl_1_0_2 = common { 118 113 version = "1.0.2k";
+2 -2
pkgs/development/libraries/sfml/default.nix
··· 3 3 }: 4 4 5 5 let 6 - version = "2.3"; 6 + version = "2.4.1"; 7 7 in 8 8 9 9 stdenv.mkDerivation rec { 10 10 name = "sfml-${version}"; 11 11 src = fetchurl { 12 12 url = "https://github.com/LaurentGomila/SFML/archive/${version}.tar.gz"; 13 - sha256 = "12588hfs0pfsv20x3zhq0gdmxv9m7g27i5lfz88303kpglp9yzn2"; 13 + sha256 = "13irazmqk9vcgkigsjcxns7xjmnz1gifw0b656z1rpz208diklgr"; 14 14 }; 15 15 buildInputs = [ cmake libX11 freetype libjpeg openal flac libvorbis glew 16 16 libXrandr libXrender udev xcbutilimage
+1 -1
pkgs/development/libraries/speexdsp/default.nix
··· 18 18 19 19 configureFlags = [ 20 20 "--with-fft=gpl-fftw3" 21 - ]; 21 + ] ++ stdenv.lib.optional stdenv.isAarch64 "--disable-neon"; 22 22 23 23 meta = with stdenv.lib; { 24 24 hompage = http://www.speex.org/;
+2 -1
pkgs/development/mobile/titaniumenv/build-app.nix
··· 99 99 security default-keychain -s $keychainName 100 100 security unlock-keychain -p "" $keychainName 101 101 security import ${iosCertificate} -k $keychainName -P "${iosCertificatePassword}" -A 102 + security set-key-partition-list -S apple-tool:,apple: -s -k "" $keychainName 102 103 provisioningId=$(grep UUID -A1 -a ${iosMobileProvisioningProfile} | grep -o "[-A-Za-z0-9]\{36\}") 103 104 104 105 # Ensure that the requested provisioning profile can be found ··· 130 131 fi 131 132 132 133 # Do the actual build 133 - titanium build --config-file $TMPDIR/config.json --force --no-colors --platform ios --target dist-adhoc --pp-uuid $provisioningId --distribution-name "${iosCertificateName}" --keychain $HOME/Library/Keychains/$keychainName --device-family universal --ios-version ${iosVersion} --output-dir $out 134 + titanium build --config-file $TMPDIR/config.json --force --no-colors --platform ios --target dist-adhoc --pp-uuid $provisioningId --distribution-name "${iosCertificateName}" --keychain $HOME/Library/Keychains/$keychainName-db --device-family universal --ios-version ${iosVersion} --output-dir $out 134 135 135 136 # Remove our generated keychain 136 137 ${deleteKeychain}
+4 -1
pkgs/development/mobile/xcodeenv/build-app.nix
··· 62 62 # Import the certificate into the keychain 63 63 security import ${certificateFile} -k $keychainName -P "${certificatePassword}" -A 64 64 65 + # Grant the codesign utility permissions to read from the keychain 66 + security set-key-partition-list -S apple-tool:,apple: -s -k "" $keychainName 67 + 65 68 # Determine provisioning ID 66 69 PROVISIONING_PROFILE=$(grep UUID -A1 -a ${provisioningProfile} | grep -o "[-A-Za-z0-9]\{36\}") 67 70 ··· 77 80 ''} 78 81 79 82 # Do the building 80 - xcodebuild -target ${_target} -configuration ${_configuration} ${stdenv.lib.optionalString (scheme != null) "-scheme ${scheme}"} -sdk ${_sdk} TARGETED_DEVICE_FAMILY="1, 2" ONLY_ACTIVE_ARCH=NO CONFIGURATION_TEMP_DIR=$TMPDIR CONFIGURATION_BUILD_DIR=$out ${if generateXCArchive then "archive" else ""} ${xcodeFlags} ${if release then ''"CODE_SIGN_IDENTITY=${codeSignIdentity}" PROVISIONING_PROFILE=$PROVISIONING_PROFILE OTHER_CODE_SIGN_FLAGS="--keychain $HOME/Library/Keychains/$keychainName"'' else ""} 83 + xcodebuild -target ${_target} -configuration ${_configuration} ${stdenv.lib.optionalString (scheme != null) "-scheme ${scheme}"} -sdk ${_sdk} TARGETED_DEVICE_FAMILY="1, 2" ONLY_ACTIVE_ARCH=NO CONFIGURATION_TEMP_DIR=$TMPDIR CONFIGURATION_BUILD_DIR=$out ${if generateXCArchive then "archive" else ""} ${xcodeFlags} ${if release then ''"CODE_SIGN_IDENTITY=${codeSignIdentity}" PROVISIONING_PROFILE=$PROVISIONING_PROFILE OTHER_CODE_SIGN_FLAGS="--keychain $HOME/Library/Keychains/$keychainName-db"'' else ""} 81 84 82 85 ${stdenv.lib.optionalString release '' 83 86 ${stdenv.lib.optionalString generateIPA ''
+27
pkgs/development/ocaml-modules/dolmen/default.nix
··· 1 + { stdenv, fetchFromGitHub, ocaml, findlib, ocamlbuild, menhir }: 2 + 3 + stdenv.mkDerivation rec { 4 + name = "ocaml${ocaml.version}-dolmen-${version}"; 5 + version = "0.2"; 6 + src = fetchFromGitHub { 7 + owner = "Gbury"; 8 + repo = "dolmen"; 9 + rev = "v${version}"; 10 + sha256 = "1b9mf8p6mic0n76acx8x82hhgm2n40sdv0jri95im65l52223saf"; 11 + }; 12 + 13 + buildInputs = [ ocaml findlib ocamlbuild ]; 14 + propagatedBuildInputs = [ menhir ]; 15 + 16 + makeFlags = "-C src"; 17 + 18 + createFindlibDestdir = true; 19 + 20 + meta = { 21 + description = "An OCaml library providing clean and flexible parsers for input languages"; 22 + license = stdenv.lib.licenses.bsd2; 23 + maintainers = [ stdenv.lib.maintainers.vbgl ]; 24 + inherit (src.meta) homepage; 25 + inherit (ocaml.meta) platforms; 26 + }; 27 + }
+50
pkgs/development/python-modules/ansible/2.1.nix
··· 1 + { lib 2 + , fetchurl 3 + , buildPythonPackage 4 + , pycrypto 5 + , paramiko 6 + , jinja2 7 + , pyyaml 8 + , httplib2 9 + , boto 10 + , six 11 + , netaddr 12 + , dns 13 + , pywinrm 14 + }: 15 + 16 + buildPythonPackage rec { 17 + pname = "ansible"; 18 + version = "2.1.4.0"; 19 + name = "${pname}-${version}"; 20 + 21 + 22 + src = fetchurl { 23 + url = "http://releases.ansible.com/ansible/${name}.tar.gz"; 24 + sha256 = "05nc68900qrzqp88970j2lmyvclgrjki66xavcpzyzamaqrh7wg9"; 25 + }; 26 + 27 + prePatch = '' 28 + sed -i "s,/usr/,$out," lib/ansible/constants.py 29 + ''; 30 + 31 + doCheck = false; 32 + dontStrip = true; 33 + dontPatchELF = true; 34 + dontPatchShebangs = false; 35 + windowsSupport = true; 36 + 37 + propagatedBuildInputs = [ pycrypto paramiko jinja2 pyyaml httplib2 38 + boto six netaddr dns ] ++ lib.optional windowsSupport pywinrm; 39 + 40 + meta = { 41 + homepage = "http://www.ansible.com"; 42 + description = "A simple automation tool"; 43 + license = with lib.licenses; [ gpl3] ; 44 + maintainers = with lib.maintainers; [ 45 + jgeerds 46 + joamaki 47 + ]; 48 + platforms = with lib.platforms; linux ++ darwin; 49 + }; 50 + }
+50
pkgs/development/python-modules/ansible/2.2.nix
··· 1 + { lib 2 + , fetchurl 3 + , buildPythonPackage 4 + , pycrypto 5 + , paramiko 6 + , jinja2 7 + , pyyaml 8 + , httplib2 9 + , boto 10 + , six 11 + , netaddr 12 + , dns 13 + , pywinrm 14 + }: 15 + 16 + buildPythonPackage rec { 17 + pname = "ansible"; 18 + version = "2.2.1.0"; 19 + name = "${pname}-${version}"; 20 + 21 + 22 + src = fetchurl { 23 + url = "http://releases.ansible.com/ansible/${name}.tar.gz"; 24 + sha256 = "0gz9i30pdmkchi936ijy873k8di6fmf3v5rv551hxyf0hjkjx8b3"; 25 + }; 26 + 27 + prePatch = '' 28 + sed -i "s,/usr/,$out," lib/ansible/constants.py 29 + ''; 30 + 31 + doCheck = false; 32 + dontStrip = true; 33 + dontPatchELF = true; 34 + dontPatchShebangs = false; 35 + windowsSupport = true; 36 + 37 + propagatedBuildInputs = [ pycrypto paramiko jinja2 pyyaml httplib2 38 + boto six netaddr dns ] ++ lib.optional windowsSupport pywinrm; 39 + 40 + meta = { 41 + homepage = "http://www.ansible.com"; 42 + description = "A simple automation tool"; 43 + license = with lib.licenses; [ gpl3] ; 44 + maintainers = with lib.maintainers; [ 45 + jgeerds 46 + joamaki 47 + ]; 48 + platforms = with lib.platforms; linux ++ darwin; 49 + }; 50 + }
+4 -4
pkgs/development/tools/rust/racer/default.nix
··· 4 4 5 5 buildRustPackage rec { 6 6 name = "racer-${version}"; 7 - version = "1.2.10"; 7 + version = "2.0.5"; 8 8 src = fetchFromGitHub { 9 9 owner = "phildawes"; 10 10 repo = "racer"; 11 - rev = "e5ffe9efc1d10d4a7d66944b4c0939b7c575530e"; 12 - sha256 = "1cvgd6gcwb82p387h4wl8wz07z64is8jrihmf2z84vxmlrasmprm"; 11 + rev = "93eac5cd633c937a05d4138559afe6fb054c7c28"; 12 + sha256 = "0smp5dv0f5bymficrg0dz8h9x4lhklrz6f31fbcy0vhg8l70di2n"; 13 13 }; 14 14 15 - depsSha256 = "1d44q7hfxijn40q7y6xawgd3c91i90fmd1dyx7i2v9as29js5694"; 15 + depsSha256 = "1qq2fpjg1wfb7z2s8p4i2aw9swcpqsp9m5jmhbyvwnd281ag4z6a"; 16 16 17 17 buildInputs = [ makeWrapper ]; 18 18
+4 -4
pkgs/development/tools/rust/rustfmt/default.nix
··· 4 4 5 5 buildRustPackage rec { 6 6 name = "rustfmt-${version}"; 7 - version = "0.6.3"; 7 + version = "0.7.1"; 8 8 9 9 src = fetchFromGitHub { 10 10 owner = "rust-lang-nursery"; 11 11 repo = "rustfmt"; 12 - rev = "61ab06a92eae355ed6447d85d3c416fb65e96bdb"; 13 - sha256 = "0fa16ycbvhyxs1b278q8jizrx9z0gis0ysjwk8fjws0282xsyvbk"; 12 + rev = "907134c2d10c0f11608dc4820b023f8040ad655a"; 13 + sha256 = "1sn590x6x93wjzkb78akqjim734hxynck3gmp8fx7gcrk5cch9mc"; 14 14 }; 15 15 16 - depsSha256 = "1qg04nzba30fqswjf97wf0slai6lhrsy0bfv648sqnrf50virx5h"; 16 + depsSha256 = "1djpzgchl93radi52m89sjk2nbl9f4y15pwn4x78lqas0jlc6nlr"; 17 17 18 18 meta = with stdenv.lib; { 19 19 description = "A tool for formatting Rust code according to style guidelines";
+29 -18
pkgs/development/tools/wp-cli/default.nix
··· 1 - { stdenv, lib, writeText, writeScript, fetchurl, php }: 1 + { stdenv, lib, fetchurl, php }: 2 2 3 3 let 4 4 version = "1.0.0"; 5 - name = "wp-cli-${version}"; 6 5 7 - phpIni = writeText "wp-cli-php.ini" '' 8 - [Phar] 9 - phar.readonly = Off 10 - ''; 6 + bin = "bin/wp"; 7 + ini = "etc/php/wp-cli.ini"; 8 + phar = "share/wp-cli/wp-cli.phar"; 11 9 12 - wpBin = writeScript "wp" '' 13 - #! ${stdenv.shell} -e 14 - exec ${php}/bin/php \ 15 - -c ${phpIni} \ 16 - -f ${src} "$@" 17 - ''; 10 + completion = fetchurl { 11 + url = "https://raw.githubusercontent.com/wp-cli/wp-cli/v${version}/utils/wp-completion.bash"; 12 + sha256 = "15d330x6d3fizrm6ckzmdknqg6wjlx5fr87bmkbd5s6a1ihs0g24"; 13 + }; 14 + 15 + in stdenv.mkDerivation rec { 16 + name = "wp-cli-${version}"; 18 17 19 18 src = fetchurl { 20 - url = "https://github.com/wp-cli/wp-cli/releases/download/v${version}/${name}.phar"; 19 + url = "https://github.com/wp-cli/wp-cli/releases/download/v${version}/${name}.phar"; 21 20 sha256 = "06a80fz9na9arjdpmnislwr0121kkg11kxfqmac0axa9vkv9fjcp"; 22 21 }; 23 22 24 - in stdenv.mkDerivation rec { 23 + buildCommand = '' 24 + mkdir -p $out/bin $out/etc/php 25 + 26 + cat <<_EOF > $out/${bin} 27 + #! ${stdenv.shell} -eu 28 + exec ${lib.getBin php}/bin/php \\ 29 + -c $out/${ini} \\ 30 + -f $out/${phar} "\$@" 31 + _EOF 32 + chmod 755 $out/${bin} 25 33 26 - inherit name src; 34 + cat <<_EOF > $out/${ini} 35 + [Phar] 36 + phar.readonly = Off 37 + _EOF 38 + chmod 644 $out/${ini} 27 39 28 - buildCommand = '' 29 - mkdir -p $out/bin 30 - ln -s ${wpBin} $out/bin/wp 40 + install -Dm644 ${src} $out/${phar} 41 + install -Dm644 ${completion} $out/share/bash-completion/completions/wp 31 42 ''; 32 43 33 44 meta = with stdenv.lib; {
+2 -2
pkgs/games/chocolate-doom/default.nix
··· 1 1 { stdenv, autoreconfHook, pkgconfig, SDL, SDL_mixer, SDL_net, fetchurl }: 2 2 3 3 stdenv.mkDerivation rec { 4 - name = "chocolate-doom-2.2.1"; 4 + name = "chocolate-doom-2.3.0"; 5 5 src = fetchurl { 6 6 url = "https://github.com/chocolate-doom/chocolate-doom/archive/${name}.tar.gz"; 7 - sha256 = "140xnz0vc14ypy30l6yxbb9s972g2ffwd4lbic54zp6ayd9414ma"; 7 + sha256 = "0i57smxmbhxj0wgvxq845ba9zsn5nx5wmzkl71rdchyd4q5jmida"; 8 8 }; 9 9 buildInputs = [ autoreconfHook pkgconfig SDL SDL_mixer SDL_net ]; 10 10 patchPhase = ''
+12 -24
pkgs/misc/emulators/gxemul/default.nix
··· 1 - { stdenv, composableDerivation, fetchurl }: 1 + { stdenv, fetchurl }: 2 2 3 - let edf = composableDerivation.edf; 4 - version = "0.6.0.1"; 5 - name = "gxemul-${version}"; 6 - in 7 - 8 - composableDerivation.composableDerivation {} { 9 - inherit name; 3 + stdenv.mkDerivation rec { 4 + name = "gxemul-${version}"; 5 + version = "0.6.0.1"; 10 6 11 7 src = fetchurl { 12 8 url = "http://gxemul.sourceforge.net/src/${name}.tar.gz"; ··· 15 11 16 12 configurePhase = "./configure"; 17 13 18 - installPhase = "mkdir -p \$out/bin; cp gxemul \$out/bin;"; 19 - 20 - mergeAttrBy = { installPhase = a : b : "${a}\n${b}"; }; 21 - 22 - flags = { 23 - doc = { installPhase = "mkdir -p \$out/share/${name}; cp -r doc \$out/share/${name};"; implies = "man"; }; 24 - demos = { installPhase = "mkdir -p \$out/share/${name}; cp -r demos \$out/share/${name};"; }; 25 - man = { installPhase = "cp -r ./man \$out/;";}; 26 - }; 27 - 28 - cfg = { 29 - docSupport = true; 30 - demosSupport = true; 31 - manSupport = true; 32 - }; 14 + installPhase = '' 15 + mkdir -p $out/bin; 16 + mkdir -p $out/share/${name}; 17 + cp gxemul $out/bin; 18 + cp -r doc $out/share/${name}; 19 + cp -r demos $out/share/${name}; 20 + cp -r ./man $out/; 21 + ''; 33 22 34 23 meta = { 35 24 license = stdenv.lib.licenses.bsd3; ··· 45 34 ''; 46 35 homepage = http://gxemul.sourceforge.net/; 47 36 }; 48 - 49 37 }
+2 -2
pkgs/os-specific/linux/android-udev-rules/default.nix
··· 6 6 7 7 stdenv.mkDerivation rec { 8 8 name = "android-udev-rules-${version}"; 9 - version = "20170109"; 9 + version = "20170125"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "M0Rf30"; 13 13 repo = "android-udev-rules"; 14 14 rev = version; 15 - sha256 = "1fxr6iyb70swmmp46xvx8iz9h6xj7x6q9yfdsl958zd63j8sjzjr"; 15 + sha256 = "16m7w6f9rlsb2l8hwh8rf9i6x7zm2awdagg9fqlla7arhx8rnh0q"; 16 16 }; 17 17 18 18 installPhase = ''
+2 -2
pkgs/os-specific/linux/kernel/linux-4.4.nix
··· 1 1 { stdenv, fetchurl, perl, buildLinux, ... } @ args: 2 2 3 3 import ./generic.nix (args // rec { 4 - version = "4.4.44"; 4 + version = "4.4.45"; 5 5 extraMeta.branch = "4.4"; 6 6 7 7 src = fetchurl { 8 8 url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz"; 9 - sha256 = "0j779p83w4i9vj7l23rx1ihymplgy44pjh53lf55napj0ckwzggs"; 9 + sha256 = "0h8p08mgvcvi6g1hl160lc3jaf3jk5d4ilgnkl8dv8s6fwj5kyr2"; 10 10 }; 11 11 12 12 kernelPatches = args.kernelPatches;
+2 -2
pkgs/os-specific/linux/kernel/linux-4.9.nix
··· 1 1 { stdenv, fetchurl, perl, buildLinux, ... } @ args: 2 2 3 3 import ./generic.nix (args // rec { 4 - version = "4.9.5"; 4 + version = "4.9.6"; 5 5 extraMeta.branch = "4.9"; 6 6 7 7 src = fetchurl { 8 8 url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz"; 9 - sha256 = "fcf5c43efcc9540815dae8f4d4f73c04dca9a6906c762cbee1242fdd908cf5a7"; 9 + sha256 = "16yfrydxcdlbm8vmfqirc0gshsbka6mjgfwc2wqs422v19vsz4zl"; 10 10 }; 11 11 12 12 kernelPatches = args.kernelPatches;
+23
pkgs/os-specific/linux/kmscube/default.nix
··· 1 + { stdenv, fetchFromGitHub, autoreconfHook, libdrm, libX11, mesa_noglu, pkgconfig }: 2 + 3 + stdenv.mkDerivation rec { 4 + name = "kmscube-2016-09-19"; 5 + 6 + src = fetchFromGitHub { 7 + owner = "robclark"; 8 + repo = "kmscube"; 9 + rev = "8c6a20901f95e1b465bbca127f9d47fcfb8762e6"; 10 + sha256 = "045pf4q3g5b54cdbxppn1dxpcn81h630vmhrixz1d5bcl822nhwj"; 11 + }; 12 + 13 + nativeBuildInputs = [ autoreconfHook pkgconfig ]; 14 + buildInputs = [ libdrm libX11 mesa_noglu ]; 15 + 16 + meta = with stdenv.lib; { 17 + description = "Example OpenGL app using KMS/GBM"; 18 + homepage = "https://github.com/robclark/kmscube"; 19 + license = licenses.mit; 20 + maintainers = with maintainers; [ dezgeg ]; 21 + platforms = platforms.linux; 22 + }; 23 + }
+2 -2
pkgs/os-specific/linux/libnl/default.nix
··· 5 5 name = "libnl-${version}"; 6 6 7 7 src = fetchFromGitHub { 8 - sha256 = "1078sbfgcb6ijal9af6lv26sy233wq14afyrc4bkdbnfl0zgsbwi"; 9 - rev = "libnl3_2_23"; 8 + sha256 = "0y8fcb1bfbdvxgckq5p6l4jzx0kvv3g11svy6d5v3i6zy9kkq8wh"; 9 + rev = "libnl3_2_29"; 10 10 repo = "libnl"; 11 11 owner = "thom311"; 12 12 };
-1
pkgs/os-specific/linux/musl/default.nix
··· 22 22 configureFlags = [ 23 23 "--enable-shared" 24 24 "--enable-static" 25 - "--disable-gcc-wrapper" 26 25 ]; 27 26 28 27 patches = [
+6 -5
pkgs/servers/felix/default.nix
··· 1 1 {stdenv, fetchurl}: 2 2 3 - stdenv.mkDerivation { 4 - name = "apache-felix-2.0.5"; 3 + stdenv.mkDerivation rec { 4 + name = "apache-felix-${version}"; 5 + version = "5.6.1"; 5 6 src = fetchurl { 6 - url = http://apache.xl-mirror.nl/felix/org.apache.felix.main.distribution-2.0.5.tar.gz; 7 - sha256 = "14nva0q1b45kmmalcls5yx97syd4vn3vcp8gywck1098qhidi66g"; 7 + url = "mirror://apache/felix/org.apache.felix.main.distribution-${version}.tar.gz"; 8 + sha256 = "0kis26iajzdid162j4i7g558q09x4hn9z7pqqys6ipb0fj84hz1x"; 8 9 }; 9 10 buildCommand = 10 11 '' ··· 15 16 ''; 16 17 meta = with stdenv.lib; { 17 18 description = "An OSGi gateway"; 18 - homepage = http://felix.apache.org; 19 + homepage = https://felix.apache.org; 19 20 license = licenses.asl20; 20 21 maintainers = [ maintainers.sander ]; 21 22 };
-80
pkgs/servers/http/apache-httpd/2.2.nix
··· 1 - { stdenv, fetchurl, pkgconfig, openssl, perl, zlib 2 - , sslSupport, proxySupport ? true 3 - , apr, aprutil, pcre 4 - , ldapSupport ? true, openldap 5 - , # Multi-processing module to use. This is built into the server and 6 - # cannot be selected at runtime. 7 - mpm ? "prefork" 8 - }: 9 - 10 - assert sslSupport -> openssl != null; 11 - assert ldapSupport -> aprutil.ldapSupport && openldap != null; 12 - assert mpm == "prefork" || mpm == "worker" || mpm == "event"; 13 - 14 - stdenv.mkDerivation rec { 15 - version = "2.2.31"; 16 - name = "apache-httpd-${version}"; 17 - 18 - src = fetchurl { 19 - url = "mirror://apache/httpd/httpd-${version}.tar.bz2"; 20 - sha256 = "1b165zi7jrrlz5wmyy3b34lcs3dl4g0dymfb0qxwdnimylcrsbzk"; 21 - }; 22 - 23 - # FIXME: -dev depends on -doc 24 - outputs = [ "out" "dev" "doc" ]; 25 - setOutputFlags = false; # it would move $out/modules, etc. 26 - 27 - propagatedBuildInputs = [ apr ]; # otherwise mod_* fail to find includes often 28 - buildInputs = [ pkgconfig perl aprutil pcre zlib ] ++ 29 - stdenv.lib.optional sslSupport openssl; 30 - 31 - # Required for ‘pthread_cancel’. 32 - NIX_LDFLAGS = (if stdenv.isDarwin then "" else "-lgcc_s"); 33 - 34 - patchPhase = '' 35 - sed -i config.layout -e "s|installbuilddir:.*|installbuilddir: $dev/share/build|" 36 - ''; 37 - 38 - preConfigure = '' 39 - configureFlags="$configureFlags --includedir=$dev/include" 40 - ''; 41 - configureFlags = '' 42 - --with-z=${zlib.dev} 43 - --with-pcre=${pcre.dev} 44 - --enable-mods-shared=all 45 - --enable-authn-alias 46 - ${if proxySupport then "--enable-proxy" else ""} 47 - ${if sslSupport then "--enable-ssl --with-ssl=${openssl.dev}" else ""} 48 - ${if ldapSupport then "--enable-ldap --enable-authnz-ldap" else ""} 49 - --with-mpm=${mpm} 50 - --enable-cache 51 - --enable-disk-cache 52 - --enable-file-cache 53 - --enable-mem-cache 54 - --docdir=$(doc)/share/doc 55 - ''; 56 - 57 - enableParallelBuilding = true; 58 - 59 - stripDebugList = "lib modules bin"; 60 - 61 - postInstall = '' 62 - mkdir -p $doc/share/doc/httpd 63 - mv $out/manual $doc/share/doc/httpd 64 - mkdir -p $dev/bin 65 - mv $out/bin/apxs $dev/bin/apxs 66 - ''; 67 - 68 - passthru = { 69 - inherit apr aprutil sslSupport proxySupport; 70 - }; 71 - 72 - meta = { 73 - description = "Apache HTTPD, the world's most popular web server"; 74 - branch = "2.2"; 75 - homepage = http://httpd.apache.org/; 76 - license = stdenv.lib.licenses.asl20; 77 - platforms = stdenv.lib.platforms.linux ++ stdenv.lib.platforms.darwin; 78 - maintainers = with stdenv.lib.maintainers; [ eelco lovek323 ]; 79 - }; 80 - }
+7 -3
pkgs/servers/http/apache-modules/mod_dnssd/default.nix
··· 1 - { stdenv, fetchurl, pkgconfig, apacheHttpd_2_2, apr, avahi }: 1 + { stdenv, fetchurl, fetchpatch, pkgconfig, apacheHttpd, apr, avahi }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 name = "mod_dnssd-0.6"; ··· 10 10 11 11 configureFlags = [ "--disable-lynx" ]; 12 12 13 - buildInputs = [ pkgconfig apacheHttpd_2_2 avahi apr ]; 13 + buildInputs = [ pkgconfig apacheHttpd avahi apr ]; 14 + 15 + patches = [ (fetchpatch { 16 + url = "http://bazaar.launchpad.net/~ubuntu-branches/ubuntu/vivid/mod-dnssd/vivid/download/package-import%40ubuntu.com-20130530193334-kqebiy78q534or5k/portforapache2.4.pat-20130530222510-7tlw5btqchd04edb-3/port-for-apache2.4.patch"; 17 + sha256 = "1hgcxwy1q8fsxfqyg95w8m45zbvxzskf1jxd87ljj57l7x1wwp4r"; 18 + }) ]; 14 19 15 20 installPhase = '' 16 21 mkdir -p $out/modules ··· 25 30 maintainers = with maintainers; [ lethalman ]; 26 31 }; 27 32 } 28 -
+88
pkgs/servers/web-apps/frab/Gemfile
··· 1 + source 'https://rubygems.org' 2 + 3 + if ENV['CUSTOM_RUBY_VERSION'] 4 + ruby ENV['CUSTOM_RUBY_VERSION'] # i.e.: '2.3' 5 + end 6 + 7 + gem 'rails', '~> 4.2' 8 + 9 + # Use SCSS for stylesheets 10 + gem 'sass-rails', '~> 5.0' 11 + # Use Uglifier as compressor for JavaScript assets 12 + gem 'uglifier', '>= 1.3.0' 13 + # Use CoffeeScript for .coffee assets and views 14 + gem 'coffee-rails', '~> 4.1.0' 15 + 16 + gem 'mysql2', group: :mysql 17 + gem 'pg', group: :postgresql 18 + gem 'sqlite3', group: :sqlite3 19 + 20 + # Use Puma as the app server 21 + gem 'puma' 22 + 23 + # Capistrano for deployment 24 + group :capistrano do 25 + gem 'airbrussh' 26 + gem 'capistrano', '~> 3.4.0', require: false 27 + gem 'capistrano-rails', require: false 28 + gem 'capistrano-bundler', require: false 29 + gem 'capistrano-rvm', require: false 30 + gem 'capistrano3-puma', require: false 31 + end 32 + 33 + # Use jquery as the JavaScript library 34 + gem 'jquery-rails' 35 + gem 'jquery-migrate-rails' 36 + gem 'jquery-ui-rails' 37 + 38 + # Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder 39 + gem 'jbuilder', '~> 2.0' 40 + 41 + gem 'activeresource' 42 + gem 'acts_as_commentable' 43 + gem 'bcrypt' 44 + gem 'cancancan' 45 + gem 'cocoon' 46 + gem 'dotenv-rails' 47 + gem 'haml' 48 + gem 'localized_language_select', github: 'frab/localized_language_select', branch: 'master' 49 + gem 'nokogiri' 50 + gem 'paperclip', '~> 4.1' 51 + gem 'paper_trail' 52 + gem 'prawn', '< 1.0' 53 + gem 'prawn_rails' 54 + gem 'ransack' 55 + gem 'ri_cal' 56 + gem 'roust' 57 + gem 'rqrcode' 58 + #gem 'roust', :git => 'git@github.com:bulletproofnetworks/roust.git' 59 + gem 'simple_form' 60 + gem 'sucker_punch' 61 + gem 'transitions', require: ['transitions', 'active_record/transitions'] 62 + gem 'will_paginate' 63 + 64 + group :production do 65 + gem 'exception_notification' 66 + end 67 + 68 + group :development, :test do 69 + gem 'bullet' 70 + gem 'pry-rails' 71 + gem 'pry-byebug' 72 + gem 'letter_opener' 73 + gem 'faker' 74 + end 75 + 76 + group :test do 77 + gem 'database_cleaner' 78 + gem 'factory_girl_rails', '~> 4.0' 79 + gem 'shoulda' 80 + end 81 + 82 + group :doc do 83 + gem 'redcarpet' # documentation 84 + gem 'github-markdown' # documentation 85 + gem 'yard' # documentation 86 + # gem 'rails-erd' # graph 87 + # gem 'ruby-graphviz', require: 'graphviz' # Optional: only required for graphing 88 + end
+329
pkgs/servers/web-apps/frab/Gemfile.lock
··· 1 + GIT 2 + remote: git://github.com/frab/localized_language_select.git 3 + revision: 85df6b97789de6e29c630808b630e56a1b76f80c 4 + branch: master 5 + specs: 6 + localized_language_select (0.3.0) 7 + rails (>= 4.1.0) 8 + 9 + GEM 10 + remote: https://rubygems.org/ 11 + specs: 12 + actionmailer (4.2.7.1) 13 + actionpack (= 4.2.7.1) 14 + actionview (= 4.2.7.1) 15 + activejob (= 4.2.7.1) 16 + mail (~> 2.5, >= 2.5.4) 17 + rails-dom-testing (~> 1.0, >= 1.0.5) 18 + actionpack (4.2.7.1) 19 + actionview (= 4.2.7.1) 20 + activesupport (= 4.2.7.1) 21 + rack (~> 1.6) 22 + rack-test (~> 0.6.2) 23 + rails-dom-testing (~> 1.0, >= 1.0.5) 24 + rails-html-sanitizer (~> 1.0, >= 1.0.2) 25 + actionview (4.2.7.1) 26 + activesupport (= 4.2.7.1) 27 + builder (~> 3.1) 28 + erubis (~> 2.7.0) 29 + rails-dom-testing (~> 1.0, >= 1.0.5) 30 + rails-html-sanitizer (~> 1.0, >= 1.0.2) 31 + activejob (4.2.7.1) 32 + activesupport (= 4.2.7.1) 33 + globalid (>= 0.3.0) 34 + activemodel (4.2.7.1) 35 + activesupport (= 4.2.7.1) 36 + builder (~> 3.1) 37 + activerecord (4.2.7.1) 38 + activemodel (= 4.2.7.1) 39 + activesupport (= 4.2.7.1) 40 + arel (~> 6.0) 41 + activeresource (4.1.0) 42 + activemodel (~> 4.0) 43 + activesupport (~> 4.0) 44 + rails-observers (~> 0.1.2) 45 + activesupport (4.2.7.1) 46 + i18n (~> 0.7) 47 + json (~> 1.7, >= 1.7.7) 48 + minitest (~> 5.1) 49 + thread_safe (~> 0.3, >= 0.3.4) 50 + tzinfo (~> 1.1) 51 + acts_as_commentable (4.0.2) 52 + addressable (2.4.0) 53 + airbrussh (1.1.1) 54 + sshkit (>= 1.6.1, != 1.7.0) 55 + arel (6.0.3) 56 + bcrypt (3.1.11) 57 + builder (3.2.2) 58 + bullet (5.4.0) 59 + activesupport (>= 3.0.0) 60 + uniform_notifier (~> 1.10.0) 61 + byebug (9.0.5) 62 + cancancan (1.15.0) 63 + capistrano (3.4.1) 64 + i18n 65 + rake (>= 10.0.0) 66 + sshkit (~> 1.3) 67 + capistrano-bundler (1.1.4) 68 + capistrano (~> 3.1) 69 + sshkit (~> 1.2) 70 + capistrano-rails (1.1.8) 71 + capistrano (~> 3.1) 72 + capistrano-bundler (~> 1.1) 73 + capistrano-rvm (0.1.2) 74 + capistrano (~> 3.0) 75 + sshkit (~> 1.2) 76 + capistrano3-puma (1.2.1) 77 + capistrano (~> 3.0) 78 + puma (>= 2.6) 79 + chunky_png (1.3.7) 80 + climate_control (0.0.3) 81 + activesupport (>= 3.0) 82 + cocaine (0.5.8) 83 + climate_control (>= 0.0.3, < 1.0) 84 + cocoon (1.2.9) 85 + coderay (1.1.1) 86 + coffee-rails (4.1.1) 87 + coffee-script (>= 2.2.0) 88 + railties (>= 4.0.0, < 5.1.x) 89 + coffee-script (2.4.1) 90 + coffee-script-source 91 + execjs 92 + coffee-script-source (1.10.0) 93 + concurrent-ruby (1.0.2) 94 + database_cleaner (1.5.3) 95 + dotenv (2.1.1) 96 + dotenv-rails (2.1.1) 97 + dotenv (= 2.1.1) 98 + railties (>= 4.0, < 5.1) 99 + erubis (2.7.0) 100 + exception_notification (4.2.1) 101 + actionmailer (>= 4.0, < 6) 102 + activesupport (>= 4.0, < 6) 103 + execjs (2.7.0) 104 + factory_girl (4.7.0) 105 + activesupport (>= 3.0.0) 106 + factory_girl_rails (4.7.0) 107 + factory_girl (~> 4.7.0) 108 + railties (>= 3.0.0) 109 + faker (1.6.6) 110 + i18n (~> 0.5) 111 + github-markdown (0.6.9) 112 + globalid (0.3.7) 113 + activesupport (>= 4.1.0) 114 + haml (4.0.7) 115 + tilt 116 + httparty (0.14.0) 117 + multi_xml (>= 0.5.2) 118 + i18n (0.7.0) 119 + jbuilder (2.6.0) 120 + activesupport (>= 3.0.0, < 5.1) 121 + multi_json (~> 1.2) 122 + jquery-migrate-rails (1.2.1) 123 + jquery-rails (4.2.1) 124 + rails-dom-testing (>= 1, < 3) 125 + railties (>= 4.2.0) 126 + thor (>= 0.14, < 2.0) 127 + jquery-ui-rails (5.0.5) 128 + railties (>= 3.2.16) 129 + json (1.8.3) 130 + launchy (2.4.3) 131 + addressable (~> 2.3) 132 + letter_opener (1.4.1) 133 + launchy (~> 2.2) 134 + loofah (2.0.3) 135 + nokogiri (>= 1.5.9) 136 + mail (2.6.4) 137 + mime-types (>= 1.16, < 4) 138 + method_source (0.8.2) 139 + mime-types (3.1) 140 + mime-types-data (~> 3.2015) 141 + mime-types-data (3.2016.0521) 142 + mimemagic (0.3.0) 143 + mini_portile2 (2.1.0) 144 + minitest (5.9.1) 145 + multi_json (1.12.1) 146 + multi_xml (0.5.5) 147 + mysql2 (0.4.4) 148 + net-scp (1.2.1) 149 + net-ssh (>= 2.6.5) 150 + net-ssh (3.2.0) 151 + nokogiri (1.6.7.2) 152 + mini_portile2 (~> 2.0.0.rc2) 153 + pkg-config (~> 1.1.7) 154 + paper_trail (5.2.2) 155 + activerecord (>= 3.0, < 6.0) 156 + request_store (~> 1.1) 157 + paperclip (4.3.7) 158 + activemodel (>= 3.2.0) 159 + activesupport (>= 3.2.0) 160 + cocaine (~> 0.5.5) 161 + mime-types 162 + mimemagic (= 0.3.0) 163 + pdf-core (0.1.6) 164 + pg (0.19.0) 165 + pkg-config (1.1.7) 166 + polyamorous (1.3.1) 167 + activerecord (>= 3.0) 168 + prawn (0.15.0) 169 + pdf-core (~> 0.1.3) 170 + ttfunk (~> 1.1.0) 171 + prawn_rails (0.0.11) 172 + prawn (>= 0.11.1) 173 + railties (>= 3.0.0) 174 + pry (0.10.4) 175 + coderay (~> 1.1.0) 176 + method_source (~> 0.8.1) 177 + slop (~> 3.4) 178 + pry-byebug (3.4.0) 179 + byebug (~> 9.0) 180 + pry (~> 0.10) 181 + pry-rails (0.3.4) 182 + pry (>= 0.9.10) 183 + puma (3.6.0) 184 + rack (1.6.4) 185 + rack-test (0.6.3) 186 + rack (>= 1.0) 187 + rails (4.2.7.1) 188 + actionmailer (= 4.2.7.1) 189 + actionpack (= 4.2.7.1) 190 + actionview (= 4.2.7.1) 191 + activejob (= 4.2.7.1) 192 + activemodel (= 4.2.7.1) 193 + activerecord (= 4.2.7.1) 194 + activesupport (= 4.2.7.1) 195 + bundler (>= 1.3.0, < 2.0) 196 + railties (= 4.2.7.1) 197 + sprockets-rails 198 + rails-deprecated_sanitizer (1.0.3) 199 + activesupport (>= 4.2.0.alpha) 200 + rails-dom-testing (1.0.7) 201 + activesupport (>= 4.2.0.beta, < 5.0) 202 + nokogiri (~> 1.6.0) 203 + rails-deprecated_sanitizer (>= 1.0.1) 204 + rails-html-sanitizer (1.0.3) 205 + loofah (~> 2.0) 206 + rails-observers (0.1.2) 207 + activemodel (~> 4.0) 208 + railties (4.2.7.1) 209 + actionpack (= 4.2.7.1) 210 + activesupport (= 4.2.7.1) 211 + rake (>= 0.8.7) 212 + thor (>= 0.18.1, < 2.0) 213 + rake (11.3.0) 214 + ransack (1.8.2) 215 + actionpack (>= 3.0) 216 + activerecord (>= 3.0) 217 + activesupport (>= 3.0) 218 + i18n 219 + polyamorous (~> 1.3) 220 + redcarpet (3.3.4) 221 + request_store (1.3.1) 222 + ri_cal (0.8.8) 223 + roust (1.8.9) 224 + activesupport (>= 4.0.10) 225 + httparty (>= 0.13.1) 226 + mail (>= 2.5.4) 227 + rqrcode (0.10.1) 228 + chunky_png (~> 1.0) 229 + sass (3.4.22) 230 + sass-rails (5.0.6) 231 + railties (>= 4.0.0, < 6) 232 + sass (~> 3.1) 233 + sprockets (>= 2.8, < 4.0) 234 + sprockets-rails (>= 2.0, < 4.0) 235 + tilt (>= 1.1, < 3) 236 + shoulda (3.5.0) 237 + shoulda-context (~> 1.0, >= 1.0.1) 238 + shoulda-matchers (>= 1.4.1, < 3.0) 239 + shoulda-context (1.2.1) 240 + shoulda-matchers (2.8.0) 241 + activesupport (>= 3.0.0) 242 + simple_form (3.3.1) 243 + actionpack (> 4, < 5.1) 244 + activemodel (> 4, < 5.1) 245 + slop (3.6.0) 246 + sprockets (3.7.0) 247 + concurrent-ruby (~> 1.0) 248 + rack (> 1, < 3) 249 + sprockets-rails (3.2.0) 250 + actionpack (>= 4.0) 251 + activesupport (>= 4.0) 252 + sprockets (>= 3.0.0) 253 + sqlite3 (1.3.11) 254 + sshkit (1.11.3) 255 + net-scp (>= 1.1.2) 256 + net-ssh (>= 2.8.0) 257 + sucker_punch (2.0.2) 258 + concurrent-ruby (~> 1.0.0) 259 + thor (0.19.1) 260 + thread_safe (0.3.5) 261 + tilt (2.0.5) 262 + transitions (1.2.0) 263 + ttfunk (1.1.1) 264 + tzinfo (1.2.2) 265 + thread_safe (~> 0.1) 266 + uglifier (3.0.2) 267 + execjs (>= 0.3.0, < 3) 268 + uniform_notifier (1.10.0) 269 + will_paginate (3.1.3) 270 + yard (0.9.5) 271 + 272 + PLATFORMS 273 + ruby 274 + 275 + DEPENDENCIES 276 + activeresource 277 + acts_as_commentable 278 + airbrussh 279 + bcrypt 280 + bullet 281 + cancancan 282 + capistrano (~> 3.4.0) 283 + capistrano-bundler 284 + capistrano-rails 285 + capistrano-rvm 286 + capistrano3-puma 287 + cocoon 288 + coffee-rails (~> 4.1.0) 289 + database_cleaner 290 + dotenv-rails 291 + exception_notification 292 + factory_girl_rails (~> 4.0) 293 + faker 294 + github-markdown 295 + haml 296 + jbuilder (~> 2.0) 297 + jquery-migrate-rails 298 + jquery-rails 299 + jquery-ui-rails 300 + letter_opener 301 + localized_language_select! 302 + mysql2 303 + nokogiri 304 + paper_trail 305 + paperclip (~> 4.1) 306 + pg 307 + prawn (< 1.0) 308 + prawn_rails 309 + pry-byebug 310 + pry-rails 311 + puma 312 + rails (~> 4.2) 313 + ransack 314 + redcarpet 315 + ri_cal 316 + roust 317 + rqrcode 318 + sass-rails (~> 5.0) 319 + shoulda 320 + simple_form 321 + sqlite3 322 + sucker_punch 323 + transitions 324 + uglifier (>= 1.3.0) 325 + will_paginate 326 + yard 327 + 328 + BUNDLED WITH 329 + 1.13.1
+46
pkgs/servers/web-apps/frab/default.nix
··· 1 + { stdenv, bundlerEnv, fetchFromGitHub, ruby, nodejs }: 2 + 3 + let 4 + env = bundlerEnv { 5 + name = "frab"; 6 + inherit ruby; 7 + gemfile = ./Gemfile; 8 + lockfile = ./Gemfile.lock; 9 + gemset = ./gemset.nix; 10 + }; 11 + 12 + in 13 + 14 + stdenv.mkDerivation rec { 15 + name = "frab-2016-12-28"; 16 + 17 + src = fetchFromGitHub { 18 + owner = "frab"; 19 + repo = "frab"; 20 + rev = "e4bbcfd1a9db7f89f53a8702c236d9628bafb72c"; 21 + sha256 = "04pzmif8jxjww3fdf2zbg3k7cm49vxc9hhf4xhmvdmvywgin6fqp"; 22 + }; 23 + 24 + buildInputs = [ env nodejs ]; 25 + 26 + buildPhase = '' 27 + cp config/database.yml.template config/database.yml 28 + cp .env.development .env.production 29 + bundler exec rake assets:precompile RAILS_ENV=production 30 + rm .env.production 31 + ''; 32 + 33 + installPhase = '' 34 + mkdir -p $out/share 35 + cp -r . $out/share/frab 36 + 37 + ln -sf /run/frab/database.yml $out/share/frab/config/database.yml 38 + rm -rf $out/share/frab/tmp $out/share/frab/public/system 39 + ln -sf /run/frab/system $out/share/frab/public/system 40 + ln -sf /tmp $out/share/frab/tmp 41 + ''; 42 + 43 + passthru = { 44 + inherit env ruby; 45 + }; 46 + }
+932
pkgs/servers/web-apps/frab/gemset.nix
··· 1 + { 2 + actionmailer = { 3 + source = { 4 + remotes = ["https://rubygems.org"]; 5 + sha256 = "0lw1pss1mrjm7x7qcg9pvxv55rz3d994yf3mwmlfg1y12fxq00n3"; 6 + type = "gem"; 7 + }; 8 + version = "4.2.7.1"; 9 + }; 10 + actionpack = { 11 + source = { 12 + remotes = ["https://rubygems.org"]; 13 + sha256 = "1ray5bvlmkimjax011zsw0mz9llfkqrfm7q1avjlp4i0kpcz8zlh"; 14 + type = "gem"; 15 + }; 16 + version = "4.2.7.1"; 17 + }; 18 + actionview = { 19 + source = { 20 + remotes = ["https://rubygems.org"]; 21 + sha256 = "11m2x5nlbqrw79fh6h7m444lrka7wwy32b0dvgqg7ilbzih43k0c"; 22 + type = "gem"; 23 + }; 24 + version = "4.2.7.1"; 25 + }; 26 + activejob = { 27 + source = { 28 + remotes = ["https://rubygems.org"]; 29 + sha256 = "0ish5wd8nvmj7f6x1i22aw5ycizy5n1z1c7f3kyxmqwhw7lb0gaz"; 30 + type = "gem"; 31 + }; 32 + version = "4.2.7.1"; 33 + }; 34 + activemodel = { 35 + source = { 36 + remotes = ["https://rubygems.org"]; 37 + sha256 = "0acz0mbmahsc9mn41275fpfnrqwig5k09m3xhz3455kv90fn79v5"; 38 + type = "gem"; 39 + }; 40 + version = "4.2.7.1"; 41 + }; 42 + activerecord = { 43 + source = { 44 + remotes = ["https://rubygems.org"]; 45 + sha256 = "1lk8l6i9p7qfl0pg261v5yph0w0sc0vysrdzc6bm5i5rxgi68flj"; 46 + type = "gem"; 47 + }; 48 + version = "4.2.7.1"; 49 + }; 50 + activeresource = { 51 + source = { 52 + remotes = ["https://rubygems.org"]; 53 + sha256 = "0nr5is20cx18s7vg8bdrdc996s2abl3h7fsi1q6mqsrzw7nrv2fa"; 54 + type = "gem"; 55 + }; 56 + version = "4.1.0"; 57 + }; 58 + activesupport = { 59 + source = { 60 + remotes = ["https://rubygems.org"]; 61 + sha256 = "1gds12k7nxrcc09b727a458ndidy1nfcllj9x22jcaj7pppvq6r4"; 62 + type = "gem"; 63 + }; 64 + version = "4.2.7.1"; 65 + }; 66 + acts_as_commentable = { 67 + source = { 68 + remotes = ["https://rubygems.org"]; 69 + sha256 = "1p4bwyqmm4ybcscn292aixschdzvns2dpl8a7w4zm0rqy2619cc9"; 70 + type = "gem"; 71 + }; 72 + version = "4.0.2"; 73 + }; 74 + addressable = { 75 + source = { 76 + remotes = ["https://rubygems.org"]; 77 + sha256 = "0mpn7sbjl477h56gmxsjqb89r5s3w7vx5af994ssgc3iamvgzgvs"; 78 + type = "gem"; 79 + }; 80 + version = "2.4.0"; 81 + }; 82 + airbrussh = { 83 + source = { 84 + remotes = ["https://rubygems.org"]; 85 + sha256 = "0pv22d2kjdbsg9q45jca3f5gsylr2r1wfpn58g58xj4s4q4r95nx"; 86 + type = "gem"; 87 + }; 88 + version = "1.1.1"; 89 + }; 90 + arel = { 91 + source = { 92 + remotes = ["https://rubygems.org"]; 93 + sha256 = "1a270mlajhrmpqbhxcqjqypnvgrq4pgixpv3w9gwp1wrrapnwrzk"; 94 + type = "gem"; 95 + }; 96 + version = "6.0.3"; 97 + }; 98 + bcrypt = { 99 + source = { 100 + remotes = ["https://rubygems.org"]; 101 + sha256 = "1d254sdhdj6mzak3fb5x3jam8b94pvl1srladvs53j05a89j5z50"; 102 + type = "gem"; 103 + }; 104 + version = "3.1.11"; 105 + }; 106 + builder = { 107 + source = { 108 + remotes = ["https://rubygems.org"]; 109 + sha256 = "14fii7ab8qszrvsvhz6z2z3i4dw0h41a62fjr2h1j8m41vbrmyv2"; 110 + type = "gem"; 111 + }; 112 + version = "3.2.2"; 113 + }; 114 + bullet = { 115 + source = { 116 + remotes = ["https://rubygems.org"]; 117 + sha256 = "06pba7bdjnazbl0yhhvlina08nkawnm76zihkaam4k7fm0yrq1k0"; 118 + type = "gem"; 119 + }; 120 + version = "5.4.0"; 121 + }; 122 + byebug = { 123 + source = { 124 + remotes = ["https://rubygems.org"]; 125 + sha256 = "18sdnscwwm76i2kbcib2ckwfwpq8b1dbfr97gdcx3j1x547yqv9x"; 126 + type = "gem"; 127 + }; 128 + version = "9.0.5"; 129 + }; 130 + cancancan = { 131 + source = { 132 + remotes = ["https://rubygems.org"]; 133 + sha256 = "05kb459laaw339n7mas37v4k83nwz228bfpaghgybza347341x85"; 134 + type = "gem"; 135 + }; 136 + version = "1.15.0"; 137 + }; 138 + capistrano = { 139 + source = { 140 + remotes = ["https://rubygems.org"]; 141 + sha256 = "0f73w6gpml0ickmwky1cn6d8392q075zy10a323f3vmyvxyhr0jb"; 142 + type = "gem"; 143 + }; 144 + version = "3.4.1"; 145 + }; 146 + capistrano-bundler = { 147 + source = { 148 + remotes = ["https://rubygems.org"]; 149 + sha256 = "1f4iikm7pn0li2lj6p53wl0d6y7svn0h76z9c6c582mmwxa9c72p"; 150 + type = "gem"; 151 + }; 152 + version = "1.1.4"; 153 + }; 154 + capistrano-rails = { 155 + source = { 156 + remotes = ["https://rubygems.org"]; 157 + sha256 = "03lzihrq72rwcqq7jiqak79wy0xbdnymn5gxj0bfgfjlg5kpgssw"; 158 + type = "gem"; 159 + }; 160 + version = "1.1.8"; 161 + }; 162 + capistrano-rvm = { 163 + source = { 164 + remotes = ["https://rubygems.org"]; 165 + sha256 = "15sy8zcal041yy5kb7fcdqnxvndgdhg3w1kvb5dk7hfjk3ypznsa"; 166 + type = "gem"; 167 + }; 168 + version = "0.1.2"; 169 + }; 170 + capistrano3-puma = { 171 + source = { 172 + remotes = ["https://rubygems.org"]; 173 + sha256 = "0ynz1arnr07kcl0vsaa1znhp2ywhhs4fwndnkw8sasr9bydksln8"; 174 + type = "gem"; 175 + }; 176 + version = "1.2.1"; 177 + }; 178 + chunky_png = { 179 + source = { 180 + remotes = ["https://rubygems.org"]; 181 + sha256 = "1p1zy4gyfp7rapr2yxcljkw6qh0chkwf356i387b3fg85cwdj4xh"; 182 + type = "gem"; 183 + }; 184 + version = "1.3.7"; 185 + }; 186 + climate_control = { 187 + source = { 188 + remotes = ["https://rubygems.org"]; 189 + sha256 = "0krknwk6b8lwv1j9kjbxib6kf5zh4pxkf3y2vcyycx5d6nci1s55"; 190 + type = "gem"; 191 + }; 192 + version = "0.0.3"; 193 + }; 194 + cocaine = { 195 + source = { 196 + remotes = ["https://rubygems.org"]; 197 + sha256 = "01kk5xd7lspbkdvn6nyj0y51zhvia3z6r4nalbdcqw5fbsywwi7d"; 198 + type = "gem"; 199 + }; 200 + version = "0.5.8"; 201 + }; 202 + cocoon = { 203 + source = { 204 + remotes = ["https://rubygems.org"]; 205 + sha256 = "1gzznkrs6qy31v85cvdqyn5wd3vwlciwibf9clmd6gi4dns21pmv"; 206 + type = "gem"; 207 + }; 208 + version = "1.2.9"; 209 + }; 210 + coderay = { 211 + source = { 212 + remotes = ["https://rubygems.org"]; 213 + sha256 = "1x6z923iwr1hi04k6kz5a6llrixflz8h5sskl9mhaaxy9jx2x93r"; 214 + type = "gem"; 215 + }; 216 + version = "1.1.1"; 217 + }; 218 + coffee-rails = { 219 + source = { 220 + remotes = ["https://rubygems.org"]; 221 + sha256 = "1mv1kaw3z4ry6cm51w8pfrbby40gqwxanrqyqr0nvs8j1bscc1gw"; 222 + type = "gem"; 223 + }; 224 + version = "4.1.1"; 225 + }; 226 + coffee-script = { 227 + source = { 228 + remotes = ["https://rubygems.org"]; 229 + sha256 = "0rc7scyk7mnpfxqv5yy4y5q1hx3i7q3ahplcp4bq2g5r24g2izl2"; 230 + type = "gem"; 231 + }; 232 + version = "2.4.1"; 233 + }; 234 + coffee-script-source = { 235 + source = { 236 + remotes = ["https://rubygems.org"]; 237 + sha256 = "1k4fg39rrkl3bpgchfj94fbl9s4ysaz16w8dkqncf2vyf79l3qz0"; 238 + type = "gem"; 239 + }; 240 + version = "1.10.0"; 241 + }; 242 + concurrent-ruby = { 243 + source = { 244 + remotes = ["https://rubygems.org"]; 245 + sha256 = "1kb4sav7yli12pjr8lscv8z49g52a5xzpfg3z9h8clzw6z74qjsw"; 246 + type = "gem"; 247 + }; 248 + version = "1.0.2"; 249 + }; 250 + database_cleaner = { 251 + source = { 252 + remotes = ["https://rubygems.org"]; 253 + sha256 = "0fx6zmqznklmkbjl6f713jyl11d4g9q220rcl86m2jp82r8kfwjj"; 254 + type = "gem"; 255 + }; 256 + version = "1.5.3"; 257 + }; 258 + dotenv = { 259 + source = { 260 + remotes = ["https://rubygems.org"]; 261 + sha256 = "1p6zz0xzb15vq8jphpw2fh6m4dianw7s76ci8vj9x3zxayrn4lfm"; 262 + type = "gem"; 263 + }; 264 + version = "2.1.1"; 265 + }; 266 + dotenv-rails = { 267 + source = { 268 + remotes = ["https://rubygems.org"]; 269 + sha256 = "17s6c0yqaz01xd5wywjscbvv0pa3grak2lhwby91j84qm6h95vxz"; 270 + type = "gem"; 271 + }; 272 + version = "2.1.1"; 273 + }; 274 + erubis = { 275 + source = { 276 + remotes = ["https://rubygems.org"]; 277 + sha256 = "1fj827xqjs91yqsydf0zmfyw9p4l2jz5yikg3mppz6d7fi8kyrb3"; 278 + type = "gem"; 279 + }; 280 + version = "2.7.0"; 281 + }; 282 + exception_notification = { 283 + source = { 284 + remotes = ["https://rubygems.org"]; 285 + sha256 = "1vclsr0rjfy1khvqyj67lgpa0v14nb542vvjkyaswn367nnmijhw"; 286 + type = "gem"; 287 + }; 288 + version = "4.2.1"; 289 + }; 290 + execjs = { 291 + source = { 292 + remotes = ["https://rubygems.org"]; 293 + sha256 = "1yz55sf2nd3l666ms6xr18sm2aggcvmb8qr3v53lr4rir32y1yp1"; 294 + type = "gem"; 295 + }; 296 + version = "2.7.0"; 297 + }; 298 + factory_girl = { 299 + source = { 300 + remotes = ["https://rubygems.org"]; 301 + sha256 = "1xzl4z9z390fsnyxp10c9if2n46zan3n6zwwpfnwc33crv4s410i"; 302 + type = "gem"; 303 + }; 304 + version = "4.7.0"; 305 + }; 306 + factory_girl_rails = { 307 + source = { 308 + remotes = ["https://rubygems.org"]; 309 + sha256 = "0hzpirb33xdqaz44i1mbcfv0icjrghhgaz747llcfsflljd4pa4r"; 310 + type = "gem"; 311 + }; 312 + version = "4.7.0"; 313 + }; 314 + faker = { 315 + source = { 316 + remotes = ["https://rubygems.org"]; 317 + sha256 = "09amnh5d0m3q2gpb0vr9spbfa8l2nc0kl3s79y6sx7a16hrl4vvc"; 318 + type = "gem"; 319 + }; 320 + version = "1.6.6"; 321 + }; 322 + github-markdown = { 323 + source = { 324 + remotes = ["https://rubygems.org"]; 325 + sha256 = "0nax4fyyhz9xmi7q6mmc6d1h8hc0cxda9d7q5z0pba88mj00s9fj"; 326 + type = "gem"; 327 + }; 328 + version = "0.6.9"; 329 + }; 330 + globalid = { 331 + source = { 332 + remotes = ["https://rubygems.org"]; 333 + sha256 = "11plkgyl3w9k4y2scc1igvpgwyz4fnmsr63h2q4j8wkb48nlnhak"; 334 + type = "gem"; 335 + }; 336 + version = "0.3.7"; 337 + }; 338 + haml = { 339 + source = { 340 + remotes = ["https://rubygems.org"]; 341 + sha256 = "0mrzjgkygvfii66bbylj2j93na8i89998yi01fin3whwqbvx0m1p"; 342 + type = "gem"; 343 + }; 344 + version = "4.0.7"; 345 + }; 346 + httparty = { 347 + source = { 348 + remotes = ["https://rubygems.org"]; 349 + sha256 = "1msa213hclsv14ijh49i1wggf9avhnj2j4xr58m9jx6fixlbggw6"; 350 + type = "gem"; 351 + }; 352 + version = "0.14.0"; 353 + }; 354 + i18n = { 355 + source = { 356 + remotes = ["https://rubygems.org"]; 357 + sha256 = "1i5z1ykl8zhszsxcs8mzl8d0dxgs3ylz8qlzrw74jb0gplkx6758"; 358 + type = "gem"; 359 + }; 360 + version = "0.7.0"; 361 + }; 362 + jbuilder = { 363 + source = { 364 + remotes = ["https://rubygems.org"]; 365 + sha256 = "1jbh1296imd0arc9nl1m71yfd7kg505p8srr1ijpsqv4hhbz5qci"; 366 + type = "gem"; 367 + }; 368 + version = "2.6.0"; 369 + }; 370 + jquery-migrate-rails = { 371 + source = { 372 + remotes = ["https://rubygems.org"]; 373 + sha256 = "0pcfs339wki4ax4imb4qi2xb04bbj6j4xvn8x3yn6yf95frrvch6"; 374 + type = "gem"; 375 + }; 376 + version = "1.2.1"; 377 + }; 378 + jquery-rails = { 379 + source = { 380 + remotes = ["https://rubygems.org"]; 381 + sha256 = "0prqyixv7j2qlq67qdr3miwcyvi27b9a82j51gbpb6vcl0ig2rik"; 382 + type = "gem"; 383 + }; 384 + version = "4.2.1"; 385 + }; 386 + jquery-ui-rails = { 387 + source = { 388 + remotes = ["https://rubygems.org"]; 389 + sha256 = "1gfygrv4bjpjd2c377lw7xzk1b77rxjyy3w6wl4bq1gkqvyrkx77"; 390 + type = "gem"; 391 + }; 392 + version = "5.0.5"; 393 + }; 394 + json = { 395 + source = { 396 + remotes = ["https://rubygems.org"]; 397 + sha256 = "1nsby6ry8l9xg3yw4adlhk2pnc7i0h0rznvcss4vk3v74qg0k8lc"; 398 + type = "gem"; 399 + }; 400 + version = "1.8.3"; 401 + }; 402 + launchy = { 403 + source = { 404 + remotes = ["https://rubygems.org"]; 405 + sha256 = "190lfbiy1vwxhbgn4nl4dcbzxvm049jwc158r2x7kq3g5khjrxa2"; 406 + type = "gem"; 407 + }; 408 + version = "2.4.3"; 409 + }; 410 + letter_opener = { 411 + source = { 412 + remotes = ["https://rubygems.org"]; 413 + sha256 = "1pcrdbxvp2x5six8fqn8gf09bn9rd3jga76ds205yph5m8fsda21"; 414 + type = "gem"; 415 + }; 416 + version = "1.4.1"; 417 + }; 418 + localized_language_select = { 419 + source = { 420 + fetchSubmodules = false; 421 + rev = "85df6b97789de6e29c630808b630e56a1b76f80c"; 422 + sha256 = "1b2pd8120nrl3s3idpgdzhrjkn9g5sxnkx4j671fjiyhadlr0q5j"; 423 + type = "git"; 424 + url = "git://github.com/frab/localized_language_select.git"; 425 + }; 426 + version = "0.3.0"; 427 + }; 428 + loofah = { 429 + source = { 430 + remotes = ["https://rubygems.org"]; 431 + sha256 = "109ps521p0sr3kgc460d58b4pr1z4mqggan2jbsf0aajy9s6xis8"; 432 + type = "gem"; 433 + }; 434 + version = "2.0.3"; 435 + }; 436 + mail = { 437 + source = { 438 + remotes = ["https://rubygems.org"]; 439 + sha256 = "0c9vqfy0na9b5096i5i4qvrvhwamjnmajhgqi3kdsdfl8l6agmkp"; 440 + type = "gem"; 441 + }; 442 + version = "2.6.4"; 443 + }; 444 + method_source = { 445 + source = { 446 + remotes = ["https://rubygems.org"]; 447 + sha256 = "1g5i4w0dmlhzd18dijlqw5gk27bv6dj2kziqzrzb7mpgxgsd1sf2"; 448 + type = "gem"; 449 + }; 450 + version = "0.8.2"; 451 + }; 452 + mime-types = { 453 + source = { 454 + remotes = ["https://rubygems.org"]; 455 + sha256 = "0087z9kbnlqhci7fxh9f6il63hj1k02icq2rs0c6cppmqchr753m"; 456 + type = "gem"; 457 + }; 458 + version = "3.1"; 459 + }; 460 + mime-types-data = { 461 + source = { 462 + remotes = ["https://rubygems.org"]; 463 + sha256 = "04my3746hwa4yvbx1ranhfaqkgf6vavi1kyijjnw8w3dy37vqhkm"; 464 + type = "gem"; 465 + }; 466 + version = "3.2016.0521"; 467 + }; 468 + mimemagic = { 469 + source = { 470 + remotes = ["https://rubygems.org"]; 471 + sha256 = "101lq4bnjs7ywdcicpw3vbz9amg5gbb4va1626fybd2hawgdx8d9"; 472 + type = "gem"; 473 + }; 474 + version = "0.3.0"; 475 + }; 476 + mini_portile2 = { 477 + source = { 478 + remotes = ["https://rubygems.org"]; 479 + sha256 = "1y25adxb1hgg1wb2rn20g3vl07qziq6fz364jc5694611zz863hb"; 480 + type = "gem"; 481 + }; 482 + version = "2.1.0"; 483 + }; 484 + minitest = { 485 + source = { 486 + remotes = ["https://rubygems.org"]; 487 + sha256 = "0300naf4ilpd9sf0k8si9h9sclkizaschn8bpnri5fqmvm9ybdbq"; 488 + type = "gem"; 489 + }; 490 + version = "5.9.1"; 491 + }; 492 + multi_json = { 493 + source = { 494 + remotes = ["https://rubygems.org"]; 495 + sha256 = "1wpc23ls6v2xbk3l1qncsbz16npvmw8p0b38l8czdzri18mp51xk"; 496 + type = "gem"; 497 + }; 498 + version = "1.12.1"; 499 + }; 500 + multi_xml = { 501 + source = { 502 + remotes = ["https://rubygems.org"]; 503 + sha256 = "0i8r7dsz4z79z3j023l8swan7qpbgxbwwz11g38y2vjqjk16v4q8"; 504 + type = "gem"; 505 + }; 506 + version = "0.5.5"; 507 + }; 508 + mysql2 = { 509 + source = { 510 + remotes = ["https://rubygems.org"]; 511 + sha256 = "1v537b7865f4z610rljy8prwmq1yhk3zalp9mcbxn7aqb3g75pra"; 512 + type = "gem"; 513 + }; 514 + version = "0.4.4"; 515 + }; 516 + net-scp = { 517 + source = { 518 + remotes = ["https://rubygems.org"]; 519 + sha256 = "0b0jqrcsp4bbi4n4mzyf70cp2ysyp6x07j8k8cqgxnvb4i3a134j"; 520 + type = "gem"; 521 + }; 522 + version = "1.2.1"; 523 + }; 524 + net-ssh = { 525 + source = { 526 + remotes = ["https://rubygems.org"]; 527 + sha256 = "11djaq0h3bzzy61dca3l84rrs91702hha4vgg387gviipgz7f3yy"; 528 + type = "gem"; 529 + }; 530 + version = "3.2.0"; 531 + }; 532 + nokogiri = { 533 + source = { 534 + remotes = ["https://rubygems.org"]; 535 + sha256 = "11sbmpy60ynak6s3794q32lc99hs448msjy8rkp84ay7mq7zqspv"; 536 + type = "gem"; 537 + }; 538 + version = "1.6.7.2"; 539 + }; 540 + paper_trail = { 541 + source = { 542 + remotes = ["https://rubygems.org"]; 543 + sha256 = "1w3y2h1w0kml2fmzx4sdcrhnbj273npwrs0cx91xdgy2qfjj6hmr"; 544 + type = "gem"; 545 + }; 546 + version = "5.2.2"; 547 + }; 548 + paperclip = { 549 + source = { 550 + remotes = ["https://rubygems.org"]; 551 + sha256 = "0r8krh5xg790845wzlc2r7l0jwskw4c4wk9xh4bpprqykwaghg0r"; 552 + type = "gem"; 553 + }; 554 + version = "4.3.7"; 555 + }; 556 + pdf-core = { 557 + source = { 558 + remotes = ["https://rubygems.org"]; 559 + sha256 = "1x121sznmhfmjnk0rzpp6djxgi28afpc8avnhn3kzlmpc87r7fyi"; 560 + type = "gem"; 561 + }; 562 + version = "0.1.6"; 563 + }; 564 + pg = { 565 + source = { 566 + remotes = ["https://rubygems.org"]; 567 + sha256 = "0bplv27d0f8vwdj51967498pl1cjxq19hhcj4hdjr4h3s72l2z4j"; 568 + type = "gem"; 569 + }; 570 + version = "0.19.0"; 571 + }; 572 + pkg-config = { 573 + source = { 574 + remotes = ["https://rubygems.org"]; 575 + sha256 = "0lljiqnm0b4z6iy87lzapwrdfa6ps63x2z5zbs038iig8dqx2g0z"; 576 + type = "gem"; 577 + }; 578 + version = "1.1.7"; 579 + }; 580 + polyamorous = { 581 + source = { 582 + remotes = ["https://rubygems.org"]; 583 + sha256 = "1501y9l81b2lwb93fkycq8dr1bi6qcdhia3qv4fddnmrdihkl3pv"; 584 + type = "gem"; 585 + }; 586 + version = "1.3.1"; 587 + }; 588 + prawn = { 589 + source = { 590 + remotes = ["https://rubygems.org"]; 591 + sha256 = "04pxzfmmy8a6bv3zvh1mmyy5zi4bj994kq1v6qnlq2xlhvg4cxjc"; 592 + type = "gem"; 593 + }; 594 + version = "0.15.0"; 595 + }; 596 + prawn_rails = { 597 + source = { 598 + remotes = ["https://rubygems.org"]; 599 + sha256 = "19m1pv2rsl3rf9rni78l8137dy2sq1r2443biv19wi9nis2pvgdg"; 600 + type = "gem"; 601 + }; 602 + version = "0.0.11"; 603 + }; 604 + pry = { 605 + source = { 606 + remotes = ["https://rubygems.org"]; 607 + sha256 = "05xbzyin63aj2prrv8fbq2d5df2mid93m81hz5bvf2v4hnzs42ar"; 608 + type = "gem"; 609 + }; 610 + version = "0.10.4"; 611 + }; 612 + pry-byebug = { 613 + source = { 614 + remotes = ["https://rubygems.org"]; 615 + sha256 = "0pvc94kgxd33p6iz41ghyadq8zfbjhkk07nvz2mbh3yhrc8w7gmw"; 616 + type = "gem"; 617 + }; 618 + version = "3.4.0"; 619 + }; 620 + pry-rails = { 621 + source = { 622 + remotes = ["https://rubygems.org"]; 623 + sha256 = "0a2iinvabis2xmv0z7z7jmh7bbkkngxj2qixfdg5m6qj9x8k1kx6"; 624 + type = "gem"; 625 + }; 626 + version = "0.3.4"; 627 + }; 628 + puma = { 629 + source = { 630 + remotes = ["https://rubygems.org"]; 631 + sha256 = "1rmcny3jr1jj01f9fqijwmikj212a5iql7ghifklm77x4a8pp399"; 632 + type = "gem"; 633 + }; 634 + version = "3.6.0"; 635 + }; 636 + rack = { 637 + source = { 638 + remotes = ["https://rubygems.org"]; 639 + sha256 = "09bs295yq6csjnkzj7ncj50i6chfxrhmzg1pk6p0vd2lb9ac8pj5"; 640 + type = "gem"; 641 + }; 642 + version = "1.6.4"; 643 + }; 644 + rack-test = { 645 + source = { 646 + remotes = ["https://rubygems.org"]; 647 + sha256 = "0h6x5jq24makgv2fq5qqgjlrk74dxfy62jif9blk43llw8ib2q7z"; 648 + type = "gem"; 649 + }; 650 + version = "0.6.3"; 651 + }; 652 + rails = { 653 + source = { 654 + remotes = ["https://rubygems.org"]; 655 + sha256 = "1avd16ir7qx23dcnz1b3cafq1lja6rq0w222bs658p9n33rbw54l"; 656 + type = "gem"; 657 + }; 658 + version = "4.2.7.1"; 659 + }; 660 + rails-deprecated_sanitizer = { 661 + source = { 662 + remotes = ["https://rubygems.org"]; 663 + sha256 = "0qxymchzdxww8bjsxj05kbf86hsmrjx40r41ksj0xsixr2gmhbbj"; 664 + type = "gem"; 665 + }; 666 + version = "1.0.3"; 667 + }; 668 + rails-dom-testing = { 669 + source = { 670 + remotes = ["https://rubygems.org"]; 671 + sha256 = "1v8jl6803mbqpxh4hn0szj081q1a3ap0nb8ni0qswi7z4la844v8"; 672 + type = "gem"; 673 + }; 674 + version = "1.0.7"; 675 + }; 676 + rails-html-sanitizer = { 677 + source = { 678 + remotes = ["https://rubygems.org"]; 679 + sha256 = "138fd86kv073zqfx0xifm646w6bgw2lr8snk16lknrrfrss8xnm7"; 680 + type = "gem"; 681 + }; 682 + version = "1.0.3"; 683 + }; 684 + rails-observers = { 685 + source = { 686 + remotes = ["https://rubygems.org"]; 687 + sha256 = "1lsw19jzmvipvrfy2z04hi7r29dvkfc43h43vs67x6lsj9rxwwcy"; 688 + type = "gem"; 689 + }; 690 + version = "0.1.2"; 691 + }; 692 + railties = { 693 + source = { 694 + remotes = ["https://rubygems.org"]; 695 + sha256 = "04rz7cn64zzvq7lnhc9zqmaqmqkq84q25v0ym9lcw75j1cj1mrq4"; 696 + type = "gem"; 697 + }; 698 + version = "4.2.7.1"; 699 + }; 700 + rake = { 701 + source = { 702 + remotes = ["https://rubygems.org"]; 703 + sha256 = "0cnjmbcyhm4hacpjn337mg1pnaw6hj09f74clwgh6znx8wam9xla"; 704 + type = "gem"; 705 + }; 706 + version = "11.3.0"; 707 + }; 708 + ransack = { 709 + source = { 710 + remotes = ["https://rubygems.org"]; 711 + sha256 = "0cya3wygwjhj8rckckkl387bmva4nyfvqcl0qhp9hk3zv8y6wxjc"; 712 + type = "gem"; 713 + }; 714 + version = "1.8.2"; 715 + }; 716 + redcarpet = { 717 + source = { 718 + remotes = ["https://rubygems.org"]; 719 + sha256 = "04v85p0bnpf1c7w4n0yr03s35yimxh0idgdrrybl9y13zbw5kgvg"; 720 + type = "gem"; 721 + }; 722 + version = "3.3.4"; 723 + }; 724 + request_store = { 725 + source = { 726 + remotes = ["https://rubygems.org"]; 727 + sha256 = "1va9x0b3ww4chcfqlmi8b14db39di1mwa7qrjbh7ma0lhndvs2zv"; 728 + type = "gem"; 729 + }; 730 + version = "1.3.1"; 731 + }; 732 + ri_cal = { 733 + source = { 734 + remotes = ["https://rubygems.org"]; 735 + sha256 = "1flga63anfpfpdwz6lpm3icpdqmvjq757hihfaw63rlkwq4pf390"; 736 + type = "gem"; 737 + }; 738 + version = "0.8.8"; 739 + }; 740 + roust = { 741 + source = { 742 + remotes = ["https://rubygems.org"]; 743 + sha256 = "1zdnwxxh34psv0iybcdnk9w4dpgpr07j3w1fvigkpccgz5vs82qk"; 744 + type = "gem"; 745 + }; 746 + version = "1.8.9"; 747 + }; 748 + rqrcode = { 749 + source = { 750 + remotes = ["https://rubygems.org"]; 751 + sha256 = "0h1pnnydgs032psakvg3l779w3ghbn08ajhhhw19hpmnfhrs8k0a"; 752 + type = "gem"; 753 + }; 754 + version = "0.10.1"; 755 + }; 756 + sass = { 757 + source = { 758 + remotes = ["https://rubygems.org"]; 759 + sha256 = "0dkj6v26fkg1g0majqswwmhxva7cd6p3psrhdlx93qal72dssywy"; 760 + type = "gem"; 761 + }; 762 + version = "3.4.22"; 763 + }; 764 + sass-rails = { 765 + source = { 766 + remotes = ["https://rubygems.org"]; 767 + sha256 = "0iji20hb8crncz14piss1b29bfb6l89sz3ai5fny3iw39vnxkdcb"; 768 + type = "gem"; 769 + }; 770 + version = "5.0.6"; 771 + }; 772 + shoulda = { 773 + source = { 774 + remotes = ["https://rubygems.org"]; 775 + sha256 = "0csmf15a7mcinfq54lfa4arp0f4b2jmwva55m0p94hdf3pxnjymy"; 776 + type = "gem"; 777 + }; 778 + version = "3.5.0"; 779 + }; 780 + shoulda-context = { 781 + source = { 782 + remotes = ["https://rubygems.org"]; 783 + sha256 = "06wv2ika5zrbxn0m3qxwk0zkbspxids3zmlq3xxays5qmvl1qb55"; 784 + type = "gem"; 785 + }; 786 + version = "1.2.1"; 787 + }; 788 + shoulda-matchers = { 789 + source = { 790 + remotes = ["https://rubygems.org"]; 791 + sha256 = "0d3ryqcsk1n9y35bx5wxnqbgw4m8b3c79isazdjnnbg8crdp72d0"; 792 + type = "gem"; 793 + }; 794 + version = "2.8.0"; 795 + }; 796 + simple_form = { 797 + source = { 798 + remotes = ["https://rubygems.org"]; 799 + sha256 = "0ii3rkkbj5cc10f5rdiny18ncdh36kijr25cah0ybbr7kigh3v3b"; 800 + type = "gem"; 801 + }; 802 + version = "3.3.1"; 803 + }; 804 + slop = { 805 + source = { 806 + remotes = ["https://rubygems.org"]; 807 + sha256 = "00w8g3j7k7kl8ri2cf1m58ckxk8rn350gp4chfscmgv6pq1spk3n"; 808 + type = "gem"; 809 + }; 810 + version = "3.6.0"; 811 + }; 812 + sprockets = { 813 + source = { 814 + remotes = ["https://rubygems.org"]; 815 + sha256 = "0jzsfiladswnzbrwqfiaj1xip68y58rwx0lpmj907vvq47k87gj1"; 816 + type = "gem"; 817 + }; 818 + version = "3.7.0"; 819 + }; 820 + sprockets-rails = { 821 + source = { 822 + remotes = ["https://rubygems.org"]; 823 + sha256 = "1zr9vk2vn44wcn4265hhnnnsciwlmqzqc6bnx78if1xcssxj6x44"; 824 + type = "gem"; 825 + }; 826 + version = "3.2.0"; 827 + }; 828 + sqlite3 = { 829 + source = { 830 + remotes = ["https://rubygems.org"]; 831 + sha256 = "19r06wglnm6479ffj9dl0fa4p5j2wi6dj7k6k3d0rbx7036cv3ny"; 832 + type = "gem"; 833 + }; 834 + version = "1.3.11"; 835 + }; 836 + sshkit = { 837 + source = { 838 + remotes = ["https://rubygems.org"]; 839 + sha256 = "0wpqvr2dyxwp3shwh0221i1ahyg8vd2hyilmjvdi026l00gk2j4l"; 840 + type = "gem"; 841 + }; 842 + version = "1.11.3"; 843 + }; 844 + sucker_punch = { 845 + source = { 846 + remotes = ["https://rubygems.org"]; 847 + sha256 = "0l8b53mlzl568kdl4la8kcjjcnawmbl0q6hq9c3kkyippa5c0x55"; 848 + type = "gem"; 849 + }; 850 + version = "2.0.2"; 851 + }; 852 + thor = { 853 + source = { 854 + remotes = ["https://rubygems.org"]; 855 + sha256 = "08p5gx18yrbnwc6xc0mxvsfaxzgy2y9i78xq7ds0qmdm67q39y4z"; 856 + type = "gem"; 857 + }; 858 + version = "0.19.1"; 859 + }; 860 + thread_safe = { 861 + source = { 862 + remotes = ["https://rubygems.org"]; 863 + sha256 = "1hq46wqsyylx5afkp6jmcihdpv4ynzzq9ygb6z2pb1cbz5js0gcr"; 864 + type = "gem"; 865 + }; 866 + version = "0.3.5"; 867 + }; 868 + tilt = { 869 + source = { 870 + remotes = ["https://rubygems.org"]; 871 + sha256 = "0lgk8bfx24959yq1cn55php3321wddw947mgj07bxfnwyipy9hqf"; 872 + type = "gem"; 873 + }; 874 + version = "2.0.5"; 875 + }; 876 + transitions = { 877 + source = { 878 + remotes = ["https://rubygems.org"]; 879 + sha256 = "11byymi45s4pxbhj195277r16dyhxkqc2jwf7snbhan23izzay2c"; 880 + type = "gem"; 881 + }; 882 + version = "1.2.0"; 883 + }; 884 + ttfunk = { 885 + source = { 886 + remotes = ["https://rubygems.org"]; 887 + sha256 = "1jvgqhp0i6v9d7davwdn20skgi508yd0xcf1h4p9f5dlslmpnkhj"; 888 + type = "gem"; 889 + }; 890 + version = "1.1.1"; 891 + }; 892 + tzinfo = { 893 + source = { 894 + remotes = ["https://rubygems.org"]; 895 + sha256 = "1c01p3kg6xvy1cgjnzdfq45fggbwish8krd0h864jvbpybyx7cgx"; 896 + type = "gem"; 897 + }; 898 + version = "1.2.2"; 899 + }; 900 + uglifier = { 901 + source = { 902 + remotes = ["https://rubygems.org"]; 903 + sha256 = "0f30s1631k03x4wm7xyc79g92pppzvyysa773zsaq2kcry1pmifc"; 904 + type = "gem"; 905 + }; 906 + version = "3.0.2"; 907 + }; 908 + uniform_notifier = { 909 + source = { 910 + remotes = ["https://rubygems.org"]; 911 + sha256 = "1jha0l7x602g5rvah960xl9r0f3q25gslj39i0x1vai8i5z6zr1l"; 912 + type = "gem"; 913 + }; 914 + version = "1.10.0"; 915 + }; 916 + will_paginate = { 917 + source = { 918 + remotes = ["https://rubygems.org"]; 919 + sha256 = "1xlls78hkkmk33q1rb84rgg2xr39g06a1z1239nq59c825g83k01"; 920 + type = "gem"; 921 + }; 922 + version = "3.1.3"; 923 + }; 924 + yard = { 925 + source = { 926 + remotes = ["https://rubygems.org"]; 927 + sha256 = "1gjl0sh7h0a9s67pllagw8192kscljg4y8nddfrqhji4g21yvcas"; 928 + type = "gem"; 929 + }; 930 + version = "0.9.5"; 931 + }; 932 + }
+3 -3
pkgs/stdenv/linux/bootstrap-files/aarch64.nix
··· 1 1 { 2 2 busybox = import <nix/fetchurl.nix> { 3 - url = http://nixos-arm.dezgeg.me/bootstrap-aarch64-for-merge/busybox; 3 + url = http://nixos-arm.dezgeg.me/bootstrap-aarch64-2017-01-27-264d42b9c/busybox; 4 4 sha256 = "12qcml1l67skpjhfjwy7gr10nc86gqcwjmz9ggp7knss8gq8pv7f"; 5 5 executable = true; 6 6 }; 7 7 bootstrapTools = import <nix/fetchurl.nix> { 8 - url = http://nixos-arm.dezgeg.me/bootstrap-aarch64-for-merge/bootstrap-tools.tar.xz; 9 - sha256 = "10sqgh0dchp1906h06jznxh8gfflnzbpfy27hng2mmc1l0c7irjr"; 8 + url = http://nixos-arm.dezgeg.me/bootstrap-aarch64-2017-01-27-264d42b9c/bootstrap-tools.tar.xz; 9 + sha256 = "13h7lgkjyxrmfkx5k1w6rj3j4iqrk28pqagiwqcg8izrydy318bi"; 10 10 }; 11 11 }
+32
pkgs/tools/misc/nginx-config-formatter/default.nix
··· 1 + { stdenv, fetchFromGitHub, python3 }: 2 + 3 + stdenv.mkDerivation rec { 4 + version = "2016-06-16"; 5 + name = "nginx-config-formatter-${version}"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "1connect"; 9 + repo = "nginx-config-formatter"; 10 + rev = "fe5c77d2a503644bebee2caaa8b222c201c0603d"; 11 + sha256 = "0akpkbq5136k1i1z1ls6yksis35hbr70k8vd10laqwvr1jj41bga"; 12 + }; 13 + 14 + buildInputs = [ python3 ]; 15 + 16 + doCheck = true; 17 + checkPhase = '' 18 + python3 $src/test_nginxfmt.py 19 + ''; 20 + 21 + installPhase = '' 22 + mkdir -p $out/bin 23 + install -m 0755 $src/nginxfmt.py $out/bin/nginxfmt 24 + ''; 25 + 26 + meta = with stdenv.lib; { 27 + description = "nginx config file formatter"; 28 + maintainers = with maintainers; [ Baughn ]; 29 + license = licenses.asl20; 30 + homepage = https://github.com/1connect/nginx-config-formatter; 31 + }; 32 + }
+6 -34
pkgs/tools/misc/timidity/default.nix
··· 1 - { composableDerivation, stdenv, fetchurl, alsaLib, libjack2, ncurses }: 2 - 3 - let inherit (composableDerivation) edf; in 4 - 5 - composableDerivation.composableDerivation {} { 1 + { stdenv, fetchurl, alsaLib, libjack2, ncurses, pkgconfig }: 6 2 3 + stdenv.mkDerivation { 7 4 name = "timidity-2.14.0"; 8 5 9 6 src = fetchurl { ··· 11 8 sha256 = "0xk41w4qbk23z1fvqdyfblbz10mmxsllw0svxzjw5sa9y11vczzr"; 12 9 }; 13 10 14 - mergeAttrBy.audioModes = a : b : "${a},${b}"; 15 - 16 - preConfigure = '' 17 - configureFlags="$configureFlags --enable-audio=$audioModes" 18 - ''; 19 - 20 - # configure still has many more options... 21 - flags = { 22 - oss = { 23 - audioModes = "oss"; 24 - }; 25 - alsa = { 26 - audioModes = "alsa"; 27 - buildInputs = [alsaLib]; 28 - # this is better than /dev/dsp ! 29 - configureFlags = ["--with-default-output-mode=alsa"]; 30 - }; 31 - jack = { 32 - audioModes = "jack"; 33 - buildInputs = [libjack2]; 34 - NIX_LDFLAGS = ["-ljack -L${libjack2}/lib"]; 35 - }; 36 - } // edf { name = "ncurses"; enable = { buildInputs = [ncurses]; };}; 11 + nativeBuildInputs = [ pkgconfig ]; 12 + buildInputs = [ alsaLib libjack2 ncurses ]; 37 13 38 - cfg = { 39 - ncursesSupport = true; 14 + configureFlags = [ "--enable-audio=oss,alsa,jack" "--with-default-output=alsa" "--enable-ncurses" ]; 40 15 41 - ossSupport = true; 42 - alsaSupport = true; 43 - jackSupport = true; 44 - }; 16 + NIX_LDFLAGS = ["-ljack -L${libjack2}/lib"]; 45 17 46 18 instruments = fetchurl { 47 19 url = http://www.csee.umbc.edu/pub/midia/instruments.tar.gz;
+51
pkgs/tools/networking/nuttcp/default.nix
··· 1 + { stdenv, fetchurl }: 2 + 3 + stdenv.mkDerivation rec { 4 + name = "nuttcp-${version}"; 5 + version = "8.1.4"; 6 + 7 + src = fetchurl { 8 + urls = [ 9 + "http://nuttcp.net/nuttcp/latest/${name}.c" 10 + "http://nuttcp.net/nuttcp/${name}/${name}.c" 11 + "http://nuttcp.net/nuttcp/beta/${name}.c" 12 + ]; 13 + sha256 = "1mygfhwxfi6xg0iycivx98ckak2abc3vwndq74278kpd8g0yyqyh"; 14 + }; 15 + 16 + man = fetchurl { 17 + url = "http://nuttcp.net/nuttcp/${name}/nuttcp.8"; 18 + sha256 = "1yang94mcdqg362qbi85b63746hk6gczxrk619hyj91v5763n4vx"; 19 + }; 20 + 21 + unpackPhase = ":"; 22 + 23 + buildPhase = '' 24 + gcc -O2 -o nuttcp $src 25 + ''; 26 + 27 + installPhase = '' 28 + mkdir -p $out/bin 29 + cp nuttcp $out/bin 30 + ''; 31 + 32 + meta = with stdenv.lib; { 33 + description = "Network performance measurement tool"; 34 + longDescription = '' 35 + nuttcp is a network performance measurement tool intended for use by 36 + network and system managers. Its most basic usage is to determine the raw 37 + TCP (or UDP) network layer throughput by transferring memory buffers from 38 + a source system across an interconnecting network to a destination 39 + system, either transferring data for a specified time interval, or 40 + alternatively transferring a specified number of bytes. In addition to 41 + reporting the achieved network throughput in Mbps, nuttcp also provides 42 + additional useful information related to the data transfer such as user, 43 + system, and wall-clock time, transmitter and receiver CPU utilization, 44 + and loss percentage (for UDP transfers). 45 + ''; 46 + license = licenses.gpl2; 47 + homepage = http://nuttcp.net/; 48 + maintainers = with maintainers; [ viric ]; 49 + platforms = platforms.unix; 50 + }; 51 + }
+6 -2
pkgs/tools/networking/openconnect.nix pkgs/tools/networking/openconnect/default.nix
··· 7 7 assert xor (openssl != null) (gnutls != null); 8 8 9 9 stdenv.mkDerivation rec { 10 - name = "openconnect-7.06"; 10 + name = "openconnect-7.08"; 11 11 12 12 src = fetchurl { 13 13 urls = [ 14 14 "ftp://ftp.infradead.org/pub/openconnect/${name}.tar.gz" 15 15 ]; 16 - sha256 = "1wkhmgfxkdkhy2p9w9idrgipxmxij2z4f88flfk3fifwd19nkkzs"; 16 + sha256 = "00wacb79l2c45f94gxs63b9z25wlciarasvjrb8jb8566wgyqi0w"; 17 17 }; 18 18 19 19 preConfigure = '' ··· 32 32 propagatedBuildInputs = [ vpnc openssl gnutls libxml2 zlib ]; 33 33 34 34 meta = { 35 + description = "VPN Client for Cisco's AnyConnect SSL VPN"; 36 + homepage = http://www.infradead.org/openconnect/; 37 + license = stdenv.lib.licenses.lgpl21; 38 + maintainers = with stdenv.lib.maintainers; [ pradeepchhetri ]; 35 39 platforms = stdenv.lib.platforms.linux; 36 40 }; 37 41 }
+8 -3
pkgs/tools/security/tor/torbrowser.nix
··· 3 3 , atk, pango, freetype, fontconfig, gdk_pixbuf, cairo, zlib 4 4 , gstreamer, gst_plugins_base, gst_plugins_good, gst_ffmpeg, gmp, ffmpeg 5 5 , libpulseaudio 6 + , mediaSupport ? false 6 7 }: 7 8 8 9 let 9 - libPath = stdenv.lib.makeLibraryPath [ 10 + libPath = stdenv.lib.makeLibraryPath ([ 10 11 stdenv.cc.cc zlib glib alsaLib dbus dbus_glib gtk2 atk pango freetype 11 12 fontconfig gdk_pixbuf cairo libXrender libX11 libXext libXt 13 + ] ++ stdenv.lib.optionals mediaSupport [ 12 14 gstreamer gst_plugins_base gmp ffmpeg 13 15 libpulseaudio 14 - ] ; 16 + ]); 15 17 18 + # Ignored if !mediaSupport 16 19 gstPlugins = [ gstreamer gst_plugins_base gst_plugins_good gst_ffmpeg ]; 17 20 18 21 gstPluginsPath = stdenv.lib.concatMapStringsSep ":" (x: ··· 77 80 fi 78 81 export FONTCONFIG_PATH=\$HOME/Data/fontconfig 79 82 export LD_LIBRARY_PATH=${libPath}:$out/share/tor-browser/Browser/TorBrowser/Tor 80 - export GST_PLUGIN_SYSTEM_PATH=${gstPluginsPath} 83 + ${stdenv.lib.optionalString mediaSupport '' 84 + export GST_PLUGIN_SYSTEM_PATH=${gstPluginsPath} 85 + ''} 81 86 exec $out/share/tor-browser/Browser/firefox --class "Tor Browser" -no-remote -profile ~/Data/Browser/profile.default "\$@" 82 87 EOF 83 88 chmod +x $out/bin/tor-browser
+6 -6
pkgs/tools/security/vault/default.nix
··· 4 4 vaultBashCompletions = fetchFromGitHub { 5 5 owner = "iljaweis"; 6 6 repo = "vault-bash-completion"; 7 - rev = "62c142e20929f930c893ebe3366350d735e81fbd"; 8 - sha256 = "0nfv10ykjq9751ijdyq728gjlgldm1lxvrar8kf6nz6rdfnnl2n5"; 7 + rev = "e2f59b64be1fa5430fa05c91b6274284de4ea77c"; 8 + sha256 = "10m75rp3hy71wlmnd88grmpjhqy0pwb9m8wm19l0f463xla54frd"; 9 9 }; 10 10 in buildGoPackage rec { 11 11 name = "vault-${version}"; 12 - version = "0.6.3"; 12 + version = "0.6.4"; 13 13 14 14 goPackagePath = "github.com/hashicorp/vault"; 15 15 ··· 17 17 owner = "hashicorp"; 18 18 repo = "vault"; 19 19 rev = "v${version}"; 20 - sha256 = "0cbaws106v5dxqjii1s9rmk55pm6y34jls35iggpx0pp1dd433xy"; 20 + sha256 = "0rrrzkza12zbbfc24q4q7ygfczq1j8ljsjagsa8vpp3375dflzdy"; 21 21 }; 22 22 23 23 buildFlagsArray = '' ··· 26 26 ''; 27 27 28 28 postInstall = '' 29 - mkdir -p $bin/share/bash-completion/completions/ 29 + mkdir -p $bin/share/bash-completion/completions/ 30 30 cp ${vaultBashCompletions}/vault-bash-completion.sh $bin/share/bash-completion/completions/vault 31 31 ''; 32 32 ··· 34 34 homepage = https://www.vaultproject.io; 35 35 description = "A tool for managing secrets"; 36 36 license = licenses.mpl20; 37 - maintainers = with maintainers; [ rushmorem offline ]; 37 + maintainers = with maintainers; [ rushmorem offline pradeepchhetri ]; 38 38 }; 39 39 }
+21 -36
pkgs/top-level/all-packages.nix
··· 91 91 92 92 cmark = callPackage ../development/libraries/cmark { }; 93 93 94 + dhallToNix = callPackage ../build-support/dhall-to-nix.nix { 95 + inherit (haskellPackages) dhall-nix; 96 + }; 97 + 94 98 dockerTools = callPackage ../build-support/docker { }; 95 99 96 100 dotnetenv = callPackage ../build-support/dotnetenv { ··· 2533 2537 2534 2538 netsniff-ng = callPackage ../tools/networking/netsniff-ng { }; 2535 2539 2540 + nginx-config-formatter = callPackage ../tools/misc/nginx-config-formatter { }; 2541 + 2536 2542 ninka = callPackage ../development/tools/misc/ninka { }; 2537 2543 2538 2544 nodejs = hiPrio nodejs-6_x; ··· 3075 3081 numdiff = callPackage ../tools/text/numdiff { }; 3076 3082 3077 3083 numlockx = callPackage ../tools/X11/numlockx { }; 3084 + 3085 + nuttcp = callPackage ../tools/networking/nuttcp { }; 3078 3086 3079 3087 nssmdns = callPackage ../tools/networking/nss-mdns { }; 3080 3088 ··· 3890 3898 sshpass = callPackage ../tools/networking/sshpass { }; 3891 3899 3892 3900 sslscan = callPackage ../tools/security/sslscan { 3893 - openssl = openssl_1_0_1-vulnerable.override { enableSSL2 = true; }; 3901 + openssl = openssl_1_0_2.override { enableSSL2 = true; }; 3894 3902 }; 3895 3903 3896 3904 sslmate = callPackage ../development/tools/sslmate { }; ··· 4198 4206 4199 4207 openconnect = openconnect_gnutls; 4200 4208 4201 - openconnect_openssl = callPackage ../tools/networking/openconnect.nix { 4209 + openconnect_openssl = callPackage ../tools/networking/openconnect { 4202 4210 gnutls = null; 4203 4211 }; 4204 4212 4205 - openconnect_gnutls = callPackage ../tools/networking/openconnect.nix { 4213 + openconnect_gnutls = callPackage ../tools/networking/openconnect { 4206 4214 openssl = null; 4207 4215 }; 4208 4216 ··· 4678 4686 clang_39 = llvmPackages_39.clang; 4679 4687 clang_38 = llvmPackages_38.clang; 4680 4688 clang_37 = llvmPackages_37.clang; 4681 - clang_36 = llvmPackages_36.clang; 4682 4689 clang_35 = wrapCC llvmPackages_35.clang; 4683 4690 clang_34 = wrapCC llvmPackages_34.clang; 4684 4691 ··· 5227 5234 llvm_39 = llvmPackages_39.llvm; 5228 5235 llvm_38 = llvmPackages_38.llvm; 5229 5236 llvm_37 = llvmPackages_37.llvm; 5230 - llvm_36 = llvmPackages_36.llvm; 5231 5237 llvm_35 = llvmPackages_35.llvm; 5232 5238 llvm_34 = llvmPackages_34.llvm; 5233 5239 ··· 5244 5250 5245 5251 llvmPackages_35 = callPackage ../development/compilers/llvm/3.5 { 5246 5252 isl = isl_0_14; 5247 - }; 5248 - 5249 - llvmPackages_36 = callPackage ../development/compilers/llvm/3.6 { 5250 - inherit (stdenvAdapters) overrideCC; 5251 5253 }; 5252 5254 5253 5255 llvmPackages_37 = callPackage ../development/compilers/llvm/3.7 ({ ··· 6008 6010 6009 6011 augeas = callPackage ../tools/system/augeas { }; 6010 6012 6011 - ansible = python2Packages.ansible; 6012 - 6013 + ansible = python2Packages.ansible2; 6013 6014 ansible2 = python2Packages.ansible2; 6014 6015 6015 6016 antlr = callPackage ../development/tools/parsing/antlr/2.7.7.nix { }; ··· 7470 7471 7471 7472 gnutls = gnutls34; 7472 7473 7473 - gnutls33 = callPackage ../development/libraries/gnutls/3.3.nix { 7474 - guileBindings = config.gnutls.guile or false; 7475 - }; 7476 - 7477 7474 gnutls34 = callPackage ../development/libraries/gnutls/3.4.nix { 7478 7475 guileBindings = config.gnutls.guile or false; 7479 7476 }; ··· 8197 8194 libmtp = callPackage ../development/libraries/libmtp { }; 8198 8195 8199 8196 libmsgpack = callPackage ../development/libraries/libmsgpack { }; 8200 - libmsgpack_0_5 = callPackage ../development/libraries/libmsgpack/0.5.nix { }; 8201 8197 libmsgpack_1_4 = callPackage ../development/libraries/libmsgpack/1.4.nix { }; 8202 8198 8203 8199 libmysqlconnectorcpp = callPackage ../development/libraries/libmysqlconnectorcpp { ··· 8986 8982 openslp = callPackage ../development/libraries/openslp {}; 8987 8983 8988 8984 libressl = libressl_2_5; 8989 - libressl_2_3 = callPackage ../development/libraries/libressl/2.3.nix { 8990 - fetchurl = fetchurlBoot; 8991 - }; 8992 8985 libressl_2_4 = callPackage ../development/libraries/libressl/2.4.nix { 8993 8986 fetchurl = fetchurlBoot; 8994 8987 }; ··· 9011 9004 onlyHeaders = true; 9012 9005 }; 9013 9006 }) 9014 - openssl_1_0_1-vulnerable 9015 9007 openssl_1_0_2 9016 9008 openssl_1_1_0 9017 9009 openssl_1_0_2-steam; ··· 10162 10154 rdf4store = callPackage ../servers/http/4store { }; 10163 10155 10164 10156 apacheHttpd = pkgs.apacheHttpd_2_4; 10165 - 10166 - apacheHttpd_2_2 = callPackage ../servers/http/apache-httpd/2.2.nix { 10167 - sslSupport = true; 10168 - }; 10169 - 10170 - apacheHttpd_2_4 = lowPrio (callPackage ../servers/http/apache-httpd/2.4.nix { 10171 - # 1.0.2+ for ALPN support 10172 - openssl = openssl_1_0_2; 10173 - }); 10157 + apacheHttpd_2_4 = callPackage ../servers/http/apache-httpd/2.4.nix { }; 10174 10158 10175 10159 apacheHttpdPackagesFor = apacheHttpd: self: let callPackage = newScope self; in { 10176 10160 inherit apacheHttpd; ··· 10195 10179 }; 10196 10180 10197 10181 apacheHttpdPackages = apacheHttpdPackagesFor pkgs.apacheHttpd pkgs.apacheHttpdPackages; 10198 - apacheHttpdPackages_2_2 = apacheHttpdPackagesFor pkgs.apacheHttpd_2_2 pkgs.apacheHttpdPackages_2_2; 10199 10182 apacheHttpdPackages_2_4 = apacheHttpdPackagesFor pkgs.apacheHttpd_2_4 pkgs.apacheHttpdPackages_2_4; 10200 10183 10201 10184 archiveopteryx = callPackage ../servers/mail/archiveopteryx/default.nix { }; ··· 10306 10289 10307 10290 foswiki = callPackage ../servers/foswiki { }; 10308 10291 10292 + frab = callPackage ../servers/web-apps/frab { }; 10293 + 10309 10294 freepops = callPackage ../servers/mail/freepops { }; 10310 10295 10311 10296 freeradius = callPackage ../servers/freeradius { }; ··· 11108 11093 kbdlight = callPackage ../os-specific/linux/kbdlight { }; 11109 11094 11110 11095 kmscon = callPackage ../os-specific/linux/kmscon { }; 11096 + 11097 + kmscube = callPackage ../os-specific/linux/kmscube { }; 11111 11098 11112 11099 latencytop = callPackage ../os-specific/linux/latencytop { }; 11113 11100 ··· 14655 14642 inherit (darwin.stubs) rez setfile; 14656 14643 }; 14657 14644 14658 - qemu_28 = callPackage ../applications/virtualization/qemu/2.8.nix { 14659 - inherit (darwin.apple_sdk.frameworks) CoreServices Cocoa; 14660 - inherit (darwin.stubs) rez setfile; 14661 - }; 14662 - 14663 14645 qgis = callPackage ../applications/gis/qgis {}; 14664 14646 14665 14647 qgroundcontrol = qt55.callPackage ../applications/science/robotics/qgroundcontrol { }; ··· 15189 15171 vte = gnome2.vte.override { pythonSupport = true; }; 15190 15172 }; 15191 15173 15192 - termite = callPackage ../applications/misc/termite { vte = null; }; 15174 + termite = callPackage ../applications/misc/termite { 15175 + vte = gnome3.vte-ng; 15176 + }; 15193 15177 15194 15178 tesseract = callPackage ../applications/graphics/tesseract { }; 15195 15179 ··· 17031 17015 flocq = callPackage ../development/coq-modules/flocq {}; 17032 17016 interval = callPackage ../development/coq-modules/interval {}; 17033 17017 mathcomp = callPackage ../development/coq-modules/mathcomp { }; 17018 + math-classes = callPackage ../development/coq-modules/math-classes { }; 17034 17019 ssreflect = callPackage ../development/coq-modules/ssreflect { }; 17035 17020 fiat_HEAD = callPackage ../development/coq-modules/fiat/HEAD.nix {}; 17036 17021 };
+16 -12
pkgs/top-level/lua-packages.nix
··· 14 14 let 15 15 isLua51 = lua.luaversion == "5.1"; 16 16 isLua52 = lua.luaversion == "5.2"; 17 + 18 + platformString = 19 + if stdenv.isDarwin then "macosx" 20 + else if stdenv.isFreeBSD then "freebsd" 21 + else if stdenv.isLinux then "linux" 22 + else if stdenv.isSunOS then "solaris" 23 + else throw "unsupported platform"; 24 + 17 25 self = _self; 18 26 _self = with self; { 19 27 inherit lua; ··· 155 163 }; 156 164 157 165 luasec = buildLuaPackage rec { 158 - name = "sec-0.6pre-2015-04-17"; 166 + name = "sec-0.6"; 159 167 src = fetchFromGitHub { 160 168 owner = "brunoos"; 161 169 repo = "luasec"; 162 - rev = "12e1b1f1d9724974ecc6ca273a0661496d96b3e7"; 163 - sha256 = "0m917qgi54p6n2ak33m67q8sxcw3cdni99bm216phjjka9rg7qwd"; 170 + rev = "lua${name}"; 171 + sha256 = "0wv8l7f7na7kw5xn8mjik2wpxbizl7zvvp5s7fcwvz9kl5jdpk5b"; 164 172 }; 165 173 166 174 buildInputs = [ openssl ]; 167 175 168 176 preBuild = '' 169 177 makeFlagsArray=( 170 - ${stdenv.lib.optionalString stdenv.isLinux "linux"} 178 + ${platformString} 171 179 LUAPATH="$out/lib/lua/${lua.luaversion}" 172 180 LUACPATH="$out/lib/lua/${lua.luaversion}" 173 181 INC_PATH="-I${lua}/include" ··· 176 184 177 185 meta = { 178 186 homepage = "https://github.com/brunoos/luasec"; 179 - hydraPlatforms = stdenv.lib.platforms.linux; 187 + platforms = stdenv.lib.platforms.unix; 180 188 maintainers = [ stdenv.lib.maintainers.flosse ]; 181 189 }; 182 190 }; ··· 197 205 preBuild = '' 198 206 makeFlagsArray=( 199 207 LUAV=${lua.luaversion} 200 - PLAT=${if stdenv.isDarwin then "macosx" 201 - else if stdenv.isFreeBSD then "freebsd" 202 - else if stdenv.isLinux then "linux" 203 - else if stdenv.isSunOS then "solaris" 204 - else throw "unsupported platform"} 208 + PLAT=${platformString} 205 209 prefix=$out 206 210 ); 207 211 ''; ··· 244 248 245 249 preBuild = '' 246 250 makeFlagsArray=( 247 - linux 251 + ${platformString} 248 252 LUAPATH="$out/share/lua/${lua.luaversion}" 249 253 LUACPATH="$out/lib/lua/${lua.luaversion}" 250 254 INCDIR="-I${lua}/include" ··· 344 348 makeFlagsArray=(CC=$CC); 345 349 ''; 346 350 347 - buildFlags = if stdenv.isDarwin then "macosx" else ""; 351 + buildFlags = platformString; 348 352 349 353 installPhase = '' 350 354 mkdir -p $out/lib/lua/${lua.luaversion}
+2
pkgs/top-level/ocaml-packages.nix
··· 146 146 147 147 ctypes = callPackage ../development/ocaml-modules/ctypes { }; 148 148 149 + dolmen = callPackage ../development/ocaml-modules/dolmen { }; 150 + 149 151 dolog = callPackage ../development/ocaml-modules/dolog { }; 150 152 151 153 easy-format = callPackage ../development/ocaml-modules/easy-format { };
+22 -7
pkgs/top-level/perl-packages.nix
··· 386 386 buildInputs = [ TestNoWarnings Moo TypeTiny ]; 387 387 }; 388 388 389 - ListCompare = buildPerlPackage { 390 - name = "List-Compare-1.18"; 389 + ListCompare = buildPerlPackage rec { 390 + name = "List-Compare-0.53"; 391 391 src = fetchurl { 392 - url = mirror://cpan/authors/id/J/JK/JKEENAN/List-Compare-0.39.tar.gz; 393 - sha256 = "1v4gn176faanzf1kr9axdp1220da7nkvz0d66mnk34nd0skjjxcl"; 392 + url = "mirror://cpan/authors/id/J/JK/JKEENAN/${name}.tar.gz"; 393 + sha256 = "fdbf4ff67b3135d44475fef7fcac0cd4706407d5720d26dca914860eb10f8550"; 394 + }; 395 + buildInputs = [ IOCaptureOutput ]; 396 + meta = { 397 + homepage = http://thenceforward.net/perl/modules/List-Compare/; 398 + description = "Compare elements of two or more lists"; 399 + license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 394 400 }; 395 401 }; 396 402 ··· 6257 6263 name = "HTML-Tiny-1.05"; 6258 6264 src = fetchurl { 6259 6265 url = "mirror://cpan/authors/id/A/AN/ANDYA/${name}.tar.gz"; 6260 - sha256 = "18zxg7z51f5daidnwl9vxsrs3lz0y6n5ddqhpb748bjyk3awkkfp"; 6266 + sha256 = "d7cdc9d5985e2e44ceba10b756acf1e0d3a1b3ee3b516e5b54adb850fe79fda3"; 6267 + }; 6268 + meta = { 6269 + description = "Lightweight, dependency free HTML/XML generation"; 6270 + license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 6261 6271 }; 6262 6272 }; 6263 6273 ··· 6591 6601 }; 6592 6602 6593 6603 IOCaptureOutput = buildPerlPackage rec { 6594 - name = "IO-CaptureOutput-1.1103"; 6604 + name = "IO-CaptureOutput-1.1104"; 6595 6605 src = fetchurl { 6596 6606 url = "mirror://cpan/authors/id/D/DA/DAGOLDEN/${name}.tar.gz"; 6597 - sha256 = "1bcl7p87ysbzab6hssq19xn3djzc0yk9l4hk0a2mqbqb8hv6p0m5"; 6607 + sha256 = "fcc732fcb438f97a72b30e8c7796484bef2562e374553b207028e2fbf73f8330"; 6608 + }; 6609 + meta = { 6610 + homepage = https://github.com/dagolden/IO-CaptureOutput; 6611 + description = "Capture STDOUT and STDERR from Perl code, subprocesses or XS"; 6612 + license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 6598 6613 }; 6599 6614 }; 6600 6615
+53 -94
pkgs/top-level/python-packages.nix
··· 923 923 }; 924 924 }; 925 925 926 - ansible = buildPythonPackage rec { 927 - version = "1.9.6"; 928 - name = "ansible-${version}"; 929 - disabled = isPy3k; 930 - 931 - src = pkgs.fetchurl { 932 - url = "https://releases.ansible.com/ansible/${name}.tar.gz"; 933 - sha256 = "0pgfh5z4w44sjgd77q6k769a5ipigjlm28zbpf2jhvz7n60kfxsh"; 934 - }; 935 - 936 - prePatch = '' 937 - sed -i "s,/usr/,$out," lib/ansible/constants.py 938 - ''; 939 - 940 - doCheck = false; 941 - dontStrip = true; 942 - dontPatchELF = true; 943 - dontPatchShebangs = true; 944 - windowsSupport = true; 945 - 946 - propagatedBuildInputs = with self; [ 947 - pycrypto paramiko jinja2 pyyaml httplib2 boto six 948 - netaddr dns 949 - ] ++ optional windowsSupport pywinrm; 950 - 951 - meta = { 952 - homepage = "http://www.ansible.com"; 953 - description = "A simple automation tool"; 954 - license = with licenses; [ gpl3] ; 955 - maintainers = with maintainers; [ 956 - jgeerds 957 - joamaki 958 - ]; 959 - platforms = with platforms; linux ++ darwin; 960 - }; 961 - }; 962 - 963 - ansible2 = buildPythonPackage rec { 964 - version = "2.2.0.0"; 965 - name = "ansible-${version}"; 966 - disabled = isPy3k; 926 + ansible = self.ansible2; 927 + ansible2 = self.ansible_2_2; 967 928 968 - src = pkgs.fetchurl { 969 - url = "http://releases.ansible.com/ansible/${name}.tar.gz"; 970 - sha256 = "11l5814inr44ammp0sh304rqx2382fr629c0pbwf0k1rjg99iwfr"; 971 - }; 972 - 973 - prePatch = '' 974 - sed -i "s,/usr/,$out," lib/ansible/constants.py 975 - ''; 976 - 977 - doCheck = false; 978 - dontStrip = true; 979 - dontPatchELF = true; 980 - dontPatchShebangs = true; 981 - windowsSupport = true; 982 - 983 - propagatedBuildInputs = with self; [ 984 - pycrypto paramiko jinja2 pyyaml httplib2 boto six 985 - netaddr dns 986 - ] ++ optional windowsSupport pywinrm; 987 - 988 - meta = with stdenv.lib; { 989 - homepage = "http://www.ansible.com"; 990 - description = "A simple automation tool"; 991 - license = with licenses; [ gpl3 ]; 992 - maintainers = with maintainers; [ 993 - copumpkin 994 - jgeerds 995 - ]; 996 - platforms = with platforms; linux ++ darwin; 997 - }; 998 - }; 929 + ansible_2_1 = callPackage ../development/python-modules/ansible/2.1.nix {}; 930 + ansible_2_2 = callPackage ../development/python-modules/ansible/2.2.nix {}; 999 931 1000 932 apipkg = buildPythonPackage rec { 1001 933 name = "apipkg-1.4"; ··· 3959 3891 3960 3892 cloudpickle = buildPythonPackage rec { 3961 3893 name = "cloudpickle-${version}"; 3962 - version = "0.2.1"; 3894 + version = "0.2.2"; 3963 3895 3964 3896 src = pkgs.fetchurl { 3965 3897 url = "mirror://pypi/c/cloudpickle/${name}.tar.gz"; 3966 - sha256 = "0fsw28nmzrpk0g02y84d7pigkqr64a3x2jhhkfixplxfwravd97f"; 3898 + sha256 = "0x4fbycipkhfax7lydaxcnc14g42g274qba17j51shr5gbq6m8lx"; 3967 3899 }; 3968 3900 3969 3901 buildInputs = with self; [ pytest mock ]; ··· 5498 5430 5499 5431 dask = buildPythonPackage rec { 5500 5432 name = "dask-${version}"; 5501 - version = "0.11.0"; 5433 + version = "0.13.0"; 5502 5434 5503 5435 src = pkgs.fetchurl { 5504 5436 url = "mirror://pypi/d/dask/${name}.tar.gz"; 5505 - sha256 = "ef32490c0b156584a71576dccec4dfe550a0cd81a9c131a4ee2e43c241b601c3"; 5437 + sha256 = "1f8r6jj9666cnvx3f8bilcx0017smmlw4i4v2p1nwxshs0k514hs"; 5506 5438 }; 5507 5439 5508 5440 buildInputs = with self; [ pytest ]; ··· 5561 5493 zict = buildPythonPackage rec { 5562 5494 5563 5495 name = "zict-${version}"; 5564 - version = "0.0.3"; 5496 + version = "0.1.1"; 5565 5497 5566 5498 src = pkgs.fetchurl { 5567 5499 url = "mirror://pypi/z/zict/${name}.tar.gz"; 5568 - sha256 = "1xsrlzrih0qmxvxqhk2c5vhzxirf509fppzdfyardl50jpsllni6"; 5500 + sha256 = "12h95vbkbar1hc6cr1kpr6zr486grj3mpx4lznvmnai0iy6pbqp4"; 5569 5501 }; 5570 5502 5503 + buildInputs = with self; [ pytest ]; 5571 5504 propagatedBuildInputs = with self; [ heapdict ]; 5572 5505 5573 5506 meta = { ··· 5581 5514 distributed = buildPythonPackage rec { 5582 5515 5583 5516 name = "distributed-${version}"; 5584 - version = "1.13.3"; 5517 + version = "1.15.1"; 5585 5518 5586 5519 src = pkgs.fetchurl { 5587 5520 url = "mirror://pypi/d/distributed/${name}.tar.gz"; 5588 - sha256 = "0nka6hqz986j1fhvfmxffgvmnxh66giq9a3ml58jsaf0riq9mjrc"; 5521 + sha256 = "037a07sdf2ch1d360nqwqz3b4ld8msydng7mw4i5s902v7xr05l6"; 5589 5522 }; 5590 5523 5591 5524 buildInputs = with self; [ pytest docutils ]; 5592 5525 propagatedBuildInputs = with self; [ 5593 5526 dask six boto3 s3fs tblib locket msgpack click cloudpickle tornado 5594 - psutil botocore zict lz4 5527 + psutil botocore zict lz4 sortedcollections sortedcontainers 5595 5528 ] ++ (if !isPy3k then [ singledispatch ] else []); 5596 5529 5597 5530 # py.test not picking up local config file, even when running ··· 5692 5625 5693 5626 s3fs = buildPythonPackage rec { 5694 5627 name = "s3fs-${version}"; 5695 - version = "0.0.4"; 5628 + version = "0.0.8"; 5696 5629 5697 5630 src = pkgs.fetchurl { 5698 5631 url = "mirror://pypi/s/s3fs/${name}.tar.gz"; 5699 - sha256 = "0gxs9zf0j97liby038i89k5njfrpvdgw0jw34ghzvlp1nzbwxwzl"; 5632 + sha256 = "0zbdzqrim0zig94fk1hswg4vfdjplw6jpx3pdi42qc830h0nscn8"; 5700 5633 }; 5701 5634 5702 5635 buildInputs = with self; [ docutils ]; ··· 14678 14611 }; 14679 14612 }; 14680 14613 14614 + sortedcollections = buildPythonPackage rec { 14615 + name = "sortedcollections-${version}"; 14616 + version = "0.4.2"; 14617 + 14618 + src = pkgs.fetchurl { 14619 + url = "mirror://pypi/s/sortedcollections/${name}.tar.gz"; 14620 + sha256 = "12dlzln9gyv8smsy2k6d6dmr0ywrpwyrr1cjy649ia5h1g7xdvwa"; 14621 + }; 14622 + buildInputs = [ self.sortedcontainers ]; 14623 + 14624 + # wants to test all python versions with tox: 14625 + doCheck = false; 14626 + 14627 + meta = { 14628 + description = "Python Sorted Collections"; 14629 + homepage = http://www.grantjenks.com/docs/sortedcollections/; 14630 + license = licenses.asl20; 14631 + }; 14632 + }; 14633 + 14681 14634 hyperframe = buildPythonPackage rec { 14682 14635 name = "hyperframe-${version}"; 14683 14636 version = "4.0.1"; ··· 18131 18084 18132 18085 partd = buildPythonPackage rec { 18133 18086 name = "partd-${version}"; 18134 - version = "0.3.6"; 18087 + version = "0.3.7"; 18135 18088 18136 18089 src = pkgs.fetchurl { 18137 18090 url = "mirror://pypi/p/partd/${name}.tar.gz"; 18138 - sha256 = "1wl8kifdljnpbz0ls7mbbc9j23fc5xzm639im7h88spyg02w68hm"; 18091 + sha256 = "066d254d2dh9xcanffgkjgwxpz5v0059b063bij10fvzl2y49hzx"; 18139 18092 }; 18140 18093 18141 18094 buildInputs = with self; [ pytest ]; ··· 18218 18171 }; 18219 18172 18220 18173 paste = buildPythonPackage rec { 18221 - name = "paste-1.7.5.1"; 18222 - disabled = isPy3k; 18174 + name = "paste-${version}"; 18175 + version = "2.0.3"; 18223 18176 18224 18177 src = pkgs.fetchurl { 18225 - url = mirror://pypi/P/Paste/Paste-1.7.5.1.tar.gz; 18226 - sha256 = "11645842ba8ec986ae8cfbe4c6cacff5c35f0f4527abf4f5581ae8b4ad49c0b6"; 18178 + url = "mirror://pypi/P/Paste/Paste-${version}.tar.gz"; 18179 + sha256 = "062jk0nlxf6lb2wwj6zc20rlvrwsnikpkh90y0dn8cjch93s6ii3"; 18227 18180 }; 18228 18181 18229 - buildInputs = with self; [ nose ]; 18182 + checkInputs = with self; [ nose ]; 18183 + propagatedBuildInputs = with self; [ six ]; 18230 18184 18231 - doCheck = false; # some files required by the test seem to be missing 18185 + # Certain tests require network 18186 + checkPhase = '' 18187 + NOSE_EXCLUDE=test_ok,test_form,test_error,test_stderr,test_paste_website nosetests 18188 + ''; 18232 18189 18233 18190 meta = { 18234 18191 description = "Tools for using a Web Server Gateway Interface stack"; ··· 18266 18223 18267 18224 doCheck = false; 18268 18225 buildInputs = with self; [ nose ]; 18269 - propagatedBuildInputs = with self; [ paste PasteDeploy cheetah argparse ]; 18226 + propagatedBuildInputs = with self; [ six paste PasteDeploy cheetah argparse ]; 18270 18227 18271 18228 meta = { 18272 18229 description = "A pluggable command-line frontend, including commands to setup package file layouts"; ··· 25700 25657 25701 25658 toolz = buildPythonPackage rec{ 25702 25659 name = "toolz-${version}"; 25703 - version = "0.8.0"; 25660 + version = "0.8.2"; 25704 25661 25705 25662 src = pkgs.fetchurl{ 25706 25663 url = "mirror://pypi/t/toolz/toolz-${version}.tar.gz"; 25707 - sha256 = "e8451af61face57b7c5d09e71c0d27b8005f001ead56e9fdf470417e5cc6d479"; 25664 + sha256 = "0l3czks4xy37i8099waxk2fdz5g0k1dwys2mkhlxc0b0886cj4sa"; 25708 25665 }; 25709 25666 25710 25667 buildInputs = with self; [ nose ]; 25711 25668 25712 25669 checkPhase = '' 25670 + # https://github.com/pytoolz/toolz/issues/357 25671 + rm toolz/tests/test_serialization.py 25713 25672 nosetests toolz/tests 25714 25673 ''; 25715 25674
+3 -3
pkgs/top-level/rust-packages.nix
··· 7 7 { runCommand, fetchFromGitHub, git }: 8 8 9 9 let 10 - version = "2017-01-08"; 11 - rev = "5ca2f329d51b9466d9bda79172e0135edaf15f30"; 12 - sha256 = "19h3zyx83va00ssagqsk9h0c83ir9wqhn192xvk5k44m9648jvsh"; 10 + version = "2017-01-27"; 11 + rev = "6a73a15e27364a0c191d61d52406bebb7639b657"; 12 + sha256 = "1dklswbf3acfqid4vv7g2xpqc4gswjgh4ih9xjx3a0m3a69cw9lb"; 13 13 14 14 src = fetchFromGitHub { 15 15 inherit rev;