Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

Merge staging-next into staging

+2540 -1802
+40 -4
doc/configuration.xml
··· 180 code: 181 <programlisting> 182 { 183 - allowUnfreePredicate = (pkg: builtins.elem (builtins.parseDrvName pkg.name).name [ "flashplayer" "vscode" ]); 184 } 185 </programlisting> 186 </para> ··· 322 packageOverrides = pkgs: with pkgs; { 323 myPackages = pkgs.buildEnv { 324 name = "my-packages"; 325 - paths = [ aspell bc coreutils gdb ffmpeg nixUnstable emscripten jq nox silver-searcher ]; 326 }; 327 }; 328 } ··· 343 packageOverrides = pkgs: with pkgs; { 344 myPackages = pkgs.buildEnv { 345 name = "my-packages"; 346 - paths = [ aspell bc coreutils gdb ffmpeg nixUnstable emscripten jq nox silver-searcher ]; 347 pathsToLink = [ "/share" "/bin" ]; 348 }; 349 }; ··· 378 packageOverrides = pkgs: with pkgs; { 379 myPackages = pkgs.buildEnv { 380 name = "my-packages"; 381 - paths = [ aspell bc coreutils ffmpeg nixUnstable emscripten jq nox silver-searcher ]; 382 pathsToLink = [ "/share/man" "/share/doc" "/bin" ]; 383 extraOutputsToInstall = [ "man" "doc" ]; 384 };
··· 180 code: 181 <programlisting> 182 { 183 + allowUnfreePredicate = (pkg: builtins.elem 184 + (builtins.parseDrvName pkg.name).name [ 185 + "flashplayer" 186 + "vscode" 187 + ]); 188 } 189 </programlisting> 190 </para> ··· 326 packageOverrides = pkgs: with pkgs; { 327 myPackages = pkgs.buildEnv { 328 name = "my-packages"; 329 + paths = [ 330 + aspell 331 + bc 332 + coreutils 333 + gdb 334 + ffmpeg 335 + nixUnstable 336 + emscripten 337 + jq 338 + nox 339 + silver-searcher 340 + ]; 341 }; 342 }; 343 } ··· 358 packageOverrides = pkgs: with pkgs; { 359 myPackages = pkgs.buildEnv { 360 name = "my-packages"; 361 + paths = [ 362 + aspell 363 + bc 364 + coreutils 365 + gdb 366 + ffmpeg 367 + nixUnstable 368 + emscripten 369 + jq 370 + nox 371 + silver-searcher 372 + ]; 373 pathsToLink = [ "/share" "/bin" ]; 374 }; 375 }; ··· 404 packageOverrides = pkgs: with pkgs; { 405 myPackages = pkgs.buildEnv { 406 name = "my-packages"; 407 + paths = [ 408 + aspell 409 + bc 410 + coreutils 411 + ffmpeg 412 + nixUnstable 413 + emscripten 414 + jq 415 + nox 416 + silver-searcher 417 + ]; 418 pathsToLink = [ "/share/man" "/share/doc" "/bin" ]; 419 extraOutputsToInstall = [ "man" "doc" ]; 420 };
+2 -2
doc/reviewing-contributions.xml
··· 605 --> 606 607 <para> 608 - In a case a contributor leaves definitively the Nix community, he should 609 create an issue or post on 610 <link 611 xlink:href="https://discourse.nixos.org">Discourse</link> with 612 - references of packages and modules he maintains so the maintainership can be 613 taken over by other contributors. 614 </para> 615 </section>
··· 605 --> 606 607 <para> 608 + In a case a contributor definitively leaves the Nix community, they should 609 create an issue or post on 610 <link 611 xlink:href="https://discourse.nixos.org">Discourse</link> with 612 + references of packages and modules they maintain so the maintainership can be 613 taken over by other contributors. 614 </para> 615 </section>
+22 -2
doc/style.css
··· 9 body 10 { 11 font-family: "Nimbus Sans L", sans-serif; 12 background: white; 13 margin: 2em 1em 2em 1em; 14 } ··· 26 h2 /* chapters, appendices, subtitle */ 27 { 28 font-size: 180%; 29 } 30 31 /* Extra space between chapters, appendices. */ ··· 102 { 103 border: 1px solid #b0b0b0; 104 padding: 3px 3px; 105 - margin-left: 1.5em; 106 - margin-right: 1.5em; 107 108 background: #f4f4f8; 109 font-family: monospace;
··· 9 body 10 { 11 font-family: "Nimbus Sans L", sans-serif; 12 + font-size: 1em; 13 background: white; 14 margin: 2em 1em 2em 1em; 15 } ··· 27 h2 /* chapters, appendices, subtitle */ 28 { 29 font-size: 180%; 30 + } 31 + 32 + div.book 33 + { 34 + text-align: center; 35 + } 36 + 37 + div.book > div 38 + { 39 + /* 40 + * based on https://medium.com/@zkareemz/golden-ratio-62b3b6d4282a 41 + * we do 70 characters per line to fit code listings better 42 + * 70 * (font-size / 1.618) 43 + * expression for emacs: 44 + * (* 70 (/ 1 1.618)) 45 + */ 46 + max-width: 43.2em; 47 + text-align: left; 48 + margin: auto; 49 } 50 51 /* Extra space between chapters, appendices. */ ··· 122 { 123 border: 1px solid #b0b0b0; 124 padding: 3px 3px; 125 + margin-left: 0.5em; 126 + margin-right: 0.5em; 127 128 background: #f4f4f8; 129 font-family: monospace;
+1 -1
lib/default.nix
··· 94 callPackageWith callPackagesWith extendDerivation hydraJob 95 makeScope; 96 inherit (meta) addMetaAttrs dontDistribute setName updateName 97 - appendToName mapDerivationAttrset lowPrio lowPrioSet hiPrio 98 hiPrioSet; 99 inherit (sources) pathType pathIsDirectory cleanSourceFilter 100 cleanSource sourceByRegex sourceFilesBySuffices
··· 94 callPackageWith callPackagesWith extendDerivation hydraJob 95 makeScope; 96 inherit (meta) addMetaAttrs dontDistribute setName updateName 97 + appendToName mapDerivationAttrset setPrio lowPrio lowPrioSet hiPrio 98 hiPrioSet; 99 inherit (sources) pathType pathIsDirectory cleanSourceFilter 100 cleanSource sourceByRegex sourceFilesBySuffices
+6 -5
lib/meta.nix
··· 41 let x = builtins.parseDrvName name; in "${x.name}-${suffix}-${x.version}"); 42 43 44 - /* Apply a function to each derivation and only to derivations in an attrset 45 */ 46 mapDerivationAttrset = f: set: lib.mapAttrs (name: pkg: if lib.isDerivation pkg then (f pkg) else pkg) set; 47 48 49 /* Decrease the nix-env priority of the package, i.e., other 50 versions/variants of the package will be preferred. 51 */ 52 - lowPrio = drv: addMetaAttrs { priority = 10; } drv; 53 - 54 55 /* Apply lowPrio to an attrset with derivations 56 */ ··· 60 /* Increase the nix-env priority of the package, i.e., this 61 version/variant of the package will be preferred. 62 */ 63 - hiPrio = drv: addMetaAttrs { priority = -10; } drv; 64 - 65 66 /* Apply hiPrio to an attrset with derivations 67 */
··· 41 let x = builtins.parseDrvName name; in "${x.name}-${suffix}-${x.version}"); 42 43 44 + /* Apply a function to each derivation and only to derivations in an attrset. 45 */ 46 mapDerivationAttrset = f: set: lib.mapAttrs (name: pkg: if lib.isDerivation pkg then (f pkg) else pkg) set; 47 48 + /* Set the nix-env priority of the package. 49 + */ 50 + setPrio = priority: addMetaAttrs { inherit priority; }; 51 52 /* Decrease the nix-env priority of the package, i.e., other 53 versions/variants of the package will be preferred. 54 */ 55 + lowPrio = setPrio 10; 56 57 /* Apply lowPrio to an attrset with derivations 58 */ ··· 62 /* Increase the nix-env priority of the package, i.e., this 63 version/variant of the package will be preferred. 64 */ 65 + hiPrio = setPrio (-10); 66 67 /* Apply hiPrio to an attrset with derivations 68 */
+2 -2
nixos/doc/manual/configuration/x-windows.xml
··· 35 </para> 36 <para> 37 NixOS’s default <emphasis>display manager</emphasis> (the program that 38 - provides a graphical login prompt and manages the X server) is SLiM. You can 39 select an alternative one by picking one of the following lines: 40 <programlisting> 41 <xref linkend="opt-services.xserver.displayManager.sddm.enable"/> = true; 42 - <xref linkend="opt-services.xserver.displayManager.lightdm.enable"/> = true; 43 </programlisting> 44 </para> 45 <para>
··· 35 </para> 36 <para> 37 NixOS’s default <emphasis>display manager</emphasis> (the program that 38 + provides a graphical login prompt and manages the X server) is LightDM. You can 39 select an alternative one by picking one of the following lines: 40 <programlisting> 41 <xref linkend="opt-services.xserver.displayManager.sddm.enable"/> = true; 42 + <xref linkend="opt-services.xserver.displayManager.slim.enable"/> = true; 43 </programlisting> 44 </para> 45 <para>
+1 -1
nixos/doc/manual/installation/installing-usb.xml
··· 23 [..] 24 $ diskutil unmountDisk diskN 25 Unmount of all volumes on diskN was successful 26 - $ sudo dd bs=1m if=nix.iso of=/dev/rdiskN 27 </programlisting> 28 Using the 'raw' <command>rdiskN</command> device instead of 29 <command>diskN</command> completes in minutes instead of hours. After
··· 23 [..] 24 $ diskutil unmountDisk diskN 25 Unmount of all volumes on diskN was successful 26 + $ sudo dd bs=1000000 if=nix.iso of=/dev/rdiskN 27 </programlisting> 28 Using the 'raw' <command>rdiskN</command> device instead of 29 <command>diskN</command> completes in minutes instead of hours. After
+6 -2
nixos/doc/manual/installation/installing-virtualbox-guest.xml
··· 77 Shared folders can be given a name and a path in the host system in the 78 VirtualBox settings (Machine / Settings / Shared Folders, then click on the 79 "Add" icon). Add the following to the 80 - <literal>/etc/nixos/configuration.nix</literal> to auto-mount them: 81 </para> 82 83 <programlisting> 84 { config, pkgs, ...} : 85 { 86 ... 87 88 fileSystems."/virtualboxshare" = { 89 fsType = "vboxsf"; 90 device = "nameofthesharedfolder"; 91 - options = [ "rw" ]; 92 }; 93 } 94 </programlisting>
··· 77 Shared folders can be given a name and a path in the host system in the 78 VirtualBox settings (Machine / Settings / Shared Folders, then click on the 79 "Add" icon). Add the following to the 80 + <literal>/etc/nixos/configuration.nix</literal> to auto-mount them. If you 81 + do not add <literal>"nofail"</literal>, the system will no boot properly. 82 + The same goes for disabling <literal>rngd</literal> which is normally used 83 + to get randomness but this does not work in virtual machines. 84 </para> 85 86 <programlisting> 87 { config, pkgs, ...} : 88 { 89 + security.rngd.enable = false; // otherwise vm will not boot 90 ... 91 92 fileSystems."/virtualboxshare" = { 93 fsType = "vboxsf"; 94 device = "nameofthesharedfolder"; 95 + options = [ "rw" "nofail" ]; 96 }; 97 } 98 </programlisting>
+4 -2
nixos/modules/misc/ids.nix
··· 306 rslsync = 279; 307 minio = 280; 308 kanboard = 281; 309 - pykms = 282; 310 kodi = 283; 311 restya-board = 284; 312 mighttpd2 = 285; ··· 338 minetest = 311; 339 rss2email = 312; 340 cockroachdb = 313; 341 342 # When adding a uid, make sure it doesn't match an existing gid. And don't use uids above 399! 343 ··· 604 rslsync = 279; 605 minio = 280; 606 kanboard = 281; 607 - pykms = 282; 608 kodi = 283; 609 restya-board = 284; 610 mighttpd2 = 285; ··· 636 minetest = 311; 637 rss2email = 312; 638 cockroachdb = 313; 639 640 # When adding a gid, make sure it doesn't match an existing 641 # uid. Users and groups with the same name should have equal
··· 306 rslsync = 279; 307 minio = 280; 308 kanboard = 281; 309 + # pykms = 282; # DynamicUser = true 310 kodi = 283; 311 restya-board = 284; 312 mighttpd2 = 285; ··· 338 minetest = 311; 339 rss2email = 312; 340 cockroachdb = 313; 341 + zoneminder = 314; 342 343 # When adding a uid, make sure it doesn't match an existing gid. And don't use uids above 399! 344 ··· 605 rslsync = 279; 606 minio = 280; 607 kanboard = 281; 608 + # pykms = 282; # DynamicUser = true 609 kodi = 283; 610 restya-board = 284; 611 mighttpd2 = 285; ··· 637 minetest = 311; 638 rss2email = 312; 639 cockroachdb = 313; 640 + zoneminder = 314; 641 642 # When adding a gid, make sure it doesn't match an existing 643 # uid. Users and groups with the same name should have equal
+2
nixos/modules/module-list.nix
··· 248 ./services/desktops/gnome3/at-spi2-core.nix 249 ./services/desktops/gnome3/chrome-gnome-shell.nix 250 ./services/desktops/gnome3/evolution-data-server.nix 251 ./services/desktops/gnome3/gnome-disks.nix 252 ./services/desktops/gnome3/gnome-documents.nix 253 ./services/desktops/gnome3/gnome-keyring.nix ··· 432 ./services/misc/uhub.nix 433 ./services/misc/weechat.nix 434 ./services/misc/xmr-stak.nix 435 ./services/misc/zookeeper.nix 436 ./services/monitoring/alerta.nix 437 ./services/monitoring/apcupsd.nix
··· 248 ./services/desktops/gnome3/at-spi2-core.nix 249 ./services/desktops/gnome3/chrome-gnome-shell.nix 250 ./services/desktops/gnome3/evolution-data-server.nix 251 + ./services/desktops/gnome3/file-roller.nix 252 ./services/desktops/gnome3/gnome-disks.nix 253 ./services/desktops/gnome3/gnome-documents.nix 254 ./services/desktops/gnome3/gnome-keyring.nix ··· 433 ./services/misc/uhub.nix 434 ./services/misc/weechat.nix 435 ./services/misc/xmr-stak.nix 436 + ./services/misc/zoneminder.nix 437 ./services/misc/zookeeper.nix 438 ./services/monitoring/alerta.nix 439 ./services/monitoring/apcupsd.nix
+32
nixos/modules/services/desktops/gnome3/file-roller.nix
···
··· 1 + # File Roller. 2 + 3 + { config, pkgs, lib, ... }: 4 + 5 + with lib; 6 + 7 + { 8 + 9 + ###### interface 10 + 11 + options = { 12 + 13 + services.gnome3.file-roller = { 14 + 15 + enable = mkEnableOption "File Roller, an archive manager for GNOME"; 16 + 17 + }; 18 + 19 + }; 20 + 21 + 22 + ###### implementation 23 + 24 + config = mkIf config.services.gnome3.file-roller.enable { 25 + 26 + environment.systemPackages = [ pkgs.gnome3.file-roller ]; 27 + 28 + services.dbus.packages = [ pkgs.gnome3.file-roller ]; 29 + 30 + }; 31 + 32 + }
+27 -40
nixos/modules/services/misc/pykms.nix
··· 5 let 6 cfg = config.services.pykms; 7 8 - home = "/var/lib/pykms"; 9 - 10 - services = { 11 - serviceConfig = { 12 - Restart = "on-failure"; 13 - RestartSec = "10s"; 14 - StartLimitInterval = "1min"; 15 - PrivateTmp = true; 16 - ProtectSystem = "full"; 17 - ProtectHome = true; 18 - }; 19 - }; 20 - 21 in { 22 23 options = { 24 services.pykms = rec { ··· 51 default = false; 52 description = "Whether the listening port should be opened automatically."; 53 }; 54 }; 55 }; 56 57 config = mkIf cfg.enable { 58 networking.firewall.allowedTCPPorts = lib.mkIf cfg.openFirewallPort [ cfg.port ]; 59 60 - systemd.services = { 61 - pykms = services // { 62 - description = "Python KMS"; 63 - wantedBy = [ "multi-user.target" ]; 64 - serviceConfig = with pkgs; { 65 - User = "pykms"; 66 - Group = "pykms"; 67 - ExecStartPre = "${getBin pykms}/bin/create_pykms_db.sh ${home}/clients.db"; 68 - ExecStart = "${getBin pykms}/bin/server.py ${optionalString cfg.verbose "--verbose"} ${cfg.listenAddress} ${toString cfg.port}"; 69 - WorkingDirectory = home; 70 - MemoryLimit = "64M"; 71 - }; 72 - }; 73 - }; 74 - 75 - users = { 76 - users.pykms = { 77 - name = "pykms"; 78 - group = "pykms"; 79 - home = home; 80 - createHome = true; 81 - uid = config.ids.uids.pykms; 82 - description = "PyKMS daemon user"; 83 - }; 84 - 85 - groups.pykms = { 86 - gid = config.ids.gids.pykms; 87 }; 88 }; 89 };
··· 5 let 6 cfg = config.services.pykms; 7 8 in { 9 + meta.maintainers = with lib.maintainers; [ peterhoeg ]; 10 11 options = { 12 services.pykms = rec { ··· 39 default = false; 40 description = "Whether the listening port should be opened automatically."; 41 }; 42 + 43 + memoryLimit = mkOption { 44 + type = types.str; 45 + default = "64M"; 46 + description = "How much memory to use at most."; 47 + }; 48 }; 49 }; 50 51 config = mkIf cfg.enable { 52 networking.firewall.allowedTCPPorts = lib.mkIf cfg.openFirewallPort [ cfg.port ]; 53 54 + systemd.services.pykms = let 55 + home = "/var/lib/pykms"; 56 + in { 57 + description = "Python KMS"; 58 + after = [ "network.target" ]; 59 + wantedBy = [ "multi-user.target" ]; 60 + # python programs with DynamicUser = true require HOME to be set 61 + environment.HOME = home; 62 + serviceConfig = with pkgs; { 63 + DynamicUser = true; 64 + StateDirectory = baseNameOf home; 65 + ExecStartPre = "${getBin pykms}/bin/create_pykms_db.sh ${home}/clients.db"; 66 + ExecStart = lib.concatStringsSep " " ([ 67 + "${getBin pykms}/bin/server.py" 68 + cfg.listenAddress 69 + (toString cfg.port) 70 + ] ++ lib.optional cfg.verbose "--verbose"); 71 + WorkingDirectory = home; 72 + Restart = "on-failure"; 73 + MemoryLimit = cfg.memoryLimit; 74 }; 75 }; 76 };
+362
nixos/modules/services/misc/zoneminder.nix
···
··· 1 + { config, lib, pkgs, ... }: 2 + 3 + let 4 + cfg = config.services.zoneminder; 5 + pkg = pkgs.zoneminder; 6 + 7 + dirName = pkg.dirName; 8 + 9 + user = "zoneminder"; 10 + group = { 11 + nginx = config.services.nginx.group; 12 + none = user; 13 + }."${cfg.webserver}"; 14 + 15 + useNginx = cfg.webserver == "nginx"; 16 + 17 + defaultDir = "/var/lib/${user}"; 18 + home = if useCustomDir then cfg.storageDir else defaultDir; 19 + 20 + useCustomDir = !(builtins.isNull cfg.storageDir); 21 + 22 + socket = "/run/phpfpm/${dirName}.sock"; 23 + 24 + zms = "/cgi-bin/zms"; 25 + 26 + dirs = dirList: [ dirName ] ++ map (e: "${dirName}/${e}") dirList; 27 + 28 + cacheDirs = [ "swap" ]; 29 + libDirs = [ "events" "exports" "images" "sounds" ]; 30 + 31 + dirStanzas = baseDir: 32 + lib.concatStringsSep "\n" (map (e: 33 + "ZM_DIR_${lib.toUpper e}=${baseDir}/${e}" 34 + ) libDirs); 35 + 36 + defaultsFile = pkgs.writeText "60-defaults.conf" '' 37 + # 01-system-paths.conf 38 + ${dirStanzas home} 39 + ZM_PATH_ARP=${lib.getBin pkgs.nettools}/bin/arp 40 + ZM_PATH_LOGS=/var/log/${dirName} 41 + ZM_PATH_MAP=/dev/shm 42 + ZM_PATH_SOCKS=/run/${dirName} 43 + ZM_PATH_SWAP=/var/cache/${dirName}/swap 44 + ZM_PATH_ZMS=${zms} 45 + 46 + # 02-multiserver.conf 47 + ZM_SERVER_HOST= 48 + 49 + # Database 50 + ZM_DB_TYPE=mysql 51 + ZM_DB_HOST=${cfg.database.host} 52 + ZM_DB_NAME=${cfg.database.name} 53 + ZM_DB_USER=${cfg.database.username} 54 + ZM_DB_PASS=${cfg.database.password} 55 + 56 + # Web 57 + ZM_WEB_USER=${user} 58 + ZM_WEB_GROUP=${group} 59 + ''; 60 + 61 + configFile = pkgs.writeText "80-nixos.conf" '' 62 + # You can override defaults here 63 + 64 + ${cfg.extraConfig} 65 + ''; 66 + 67 + phpExtensions = with pkgs.phpPackages; [ 68 + { pkg = apcu; name = "apcu"; } 69 + ]; 70 + 71 + in { 72 + options = { 73 + services.zoneminder = with lib; { 74 + enable = lib.mkEnableOption '' 75 + ZoneMinder 76 + </para><para> 77 + If you intend to run the database locally, you should set 78 + `config.services.zoneminder.database.createLocally` to true. Otherwise, 79 + when set to `false` (the default), you will have to create the database 80 + and database user as well as populate the database yourself. 81 + ''; 82 + 83 + webserver = mkOption { 84 + type = types.enum [ "nginx" "none" ]; 85 + default = "nginx"; 86 + description = '' 87 + The webserver to configure for the PHP frontend. 88 + </para> 89 + <para> 90 + 91 + Set it to `none` if you want to configure it yourself. PRs are welcome 92 + for support for other web servers. 93 + ''; 94 + }; 95 + 96 + hostname = mkOption { 97 + type = types.str; 98 + default = "localhost"; 99 + description = '' 100 + The hostname on which to listen. 101 + ''; 102 + }; 103 + 104 + port = mkOption { 105 + type = types.int; 106 + default = 8095; 107 + description = '' 108 + The port on which to listen. 109 + ''; 110 + }; 111 + 112 + openFirewall = mkOption { 113 + type = types.bool; 114 + default = false; 115 + description = '' 116 + Open the firewall port(s). 117 + ''; 118 + }; 119 + 120 + database = { 121 + createLocally = mkOption { 122 + type = types.bool; 123 + default = false; 124 + description = '' 125 + Create the database and database user locally. 126 + ''; 127 + }; 128 + 129 + host = mkOption { 130 + type = types.str; 131 + default = "localhost"; 132 + description = '' 133 + Hostname hosting the database. 134 + ''; 135 + }; 136 + 137 + name = mkOption { 138 + type = types.str; 139 + default = "zm"; 140 + description = '' 141 + Name of database. 142 + ''; 143 + }; 144 + 145 + username = mkOption { 146 + type = types.str; 147 + default = "zmuser"; 148 + description = '' 149 + Username for accessing the database. 150 + ''; 151 + }; 152 + 153 + password = mkOption { 154 + type = types.str; 155 + default = "zmpass"; 156 + description = '' 157 + Username for accessing the database. 158 + ''; 159 + }; 160 + }; 161 + 162 + cameras = mkOption { 163 + type = types.int; 164 + default = 1; 165 + description = '' 166 + Set this to the number of cameras you expect to support. 167 + ''; 168 + }; 169 + 170 + storageDir = mkOption { 171 + type = types.nullOr types.str; 172 + default = null; 173 + example = "/storage/tank"; 174 + description = '' 175 + ZoneMinder can generate quite a lot of data, so in case you don't want 176 + to use the default ${home}, you can override the path here. 177 + ''; 178 + }; 179 + 180 + extraConfig = mkOption { 181 + type = types.lines; 182 + default = ""; 183 + description = '' 184 + Additional configuration added verbatim to the configuration file. 185 + ''; 186 + }; 187 + }; 188 + }; 189 + 190 + config = lib.mkIf cfg.enable { 191 + 192 + environment.etc = { 193 + "zoneminder/60-defaults.conf".source = defaultsFile; 194 + "zoneminder/80-nixos.conf".source = configFile; 195 + }; 196 + 197 + networking.firewall.allowedTCPPorts = lib.mkIf cfg.openFirewall [ cfg.port ]; 198 + 199 + services = { 200 + fcgiwrap = lib.mkIf useNginx { 201 + enable = true; 202 + preforkProcesses = cfg.cameras; 203 + inherit user group; 204 + }; 205 + 206 + mysql = lib.mkIf cfg.database.createLocally { 207 + ensureDatabases = [ cfg.database.name ]; 208 + ensureUsers = { 209 + name = cfg.database.username; 210 + ensurePermissions = [ 211 + { "${cfg.database.name}.*" = "ALL PRIVILEGES"; } 212 + ]; 213 + initialDatabases = [ 214 + { inherit (cfg.database) name; schema = "${pkg}/share/zoneminder/db/zm_create.sql"; } 215 + ]; 216 + }; 217 + }; 218 + 219 + nginx = lib.mkIf useNginx { 220 + enable = true; 221 + virtualHosts = { 222 + "${cfg.hostname}" = { 223 + default = true; 224 + root = "${pkg}/share/zoneminder/www"; 225 + listen = [ { addr = "0.0.0.0"; inherit (cfg) port; } ]; 226 + extraConfig = let 227 + fcgi = config.services.fcgiwrap; 228 + in '' 229 + index index.php; 230 + 231 + location / { 232 + try_files $uri $uri/ /index.php?$args =404; 233 + 234 + location ~ /api/(css|img|ico) { 235 + rewrite ^/api(.+)$ /api/app/webroot/$1 break; 236 + try_files $uri $uri/ =404; 237 + } 238 + 239 + location ~ \.(gif|ico|jpg|jpeg|png)$ { 240 + access_log off; 241 + expires 30d; 242 + } 243 + 244 + location /api { 245 + rewrite ^/api(.+)$ /api/app/webroot/index.php?p=$1 last; 246 + } 247 + 248 + location /cgi-bin { 249 + gzip off; 250 + 251 + include ${pkgs.nginx}/conf/fastcgi_params; 252 + fastcgi_param SCRIPT_FILENAME ${pkg}/libexec/zoneminder/${zms}; 253 + fastcgi_param HTTP_PROXY ""; 254 + fastcgi_intercept_errors on; 255 + 256 + fastcgi_pass ${fcgi.socketType}:${fcgi.socketAddress}; 257 + } 258 + 259 + location /cache { 260 + alias /var/cache/${dirName}; 261 + } 262 + 263 + location ~ \.php$ { 264 + try_files $uri =404; 265 + fastcgi_index index.php; 266 + 267 + include ${pkgs.nginx}/conf/fastcgi_params; 268 + fastcgi_param SCRIPT_FILENAME $request_filename; 269 + fastcgi_param HTTP_PROXY ""; 270 + 271 + fastcgi_pass unix:${socket}; 272 + } 273 + } 274 + ''; 275 + }; 276 + }; 277 + }; 278 + 279 + phpfpm = lib.mkIf useNginx { 280 + phpOptions = '' 281 + date.timezone = "${config.time.timeZone}" 282 + 283 + ${lib.concatStringsSep "\n" (map (e: 284 + "extension=${e.pkg}/lib/php/extensions/${e.name}.so") phpExtensions)} 285 + ''; 286 + pools.zoneminder = { 287 + listen = socket; 288 + extraConfig = '' 289 + user = ${user} 290 + group = ${group} 291 + 292 + listen.owner = ${user} 293 + listen.group = ${group} 294 + listen.mode = 0660 295 + 296 + pm = dynamic 297 + pm.start_servers = 1 298 + pm.min_spare_servers = 1 299 + pm.max_spare_servers = 2 300 + pm.max_requests = 500 301 + pm.max_children = 5 302 + pm.status_path = /$pool-status 303 + ping.path = /$pool-ping 304 + ''; 305 + }; 306 + }; 307 + }; 308 + 309 + systemd.services = { 310 + zoneminder = with pkgs; rec { 311 + inherit (zoneminder.meta) description; 312 + documentation = [ "https://zoneminder.readthedocs.org/en/latest/" ]; 313 + path = [ 314 + coreutils 315 + procps 316 + psmisc 317 + ]; 318 + after = [ "mysql.service" "nginx.service" ]; 319 + wantedBy = [ "multi-user.target" ]; 320 + restartTriggers = [ defaultsFile configFile ]; 321 + preStart = lib.mkIf useCustomDir '' 322 + install -dm775 -o ${user} -g ${group} ${cfg.storageDir}/{${lib.concatStringsSep "," libDirs}} 323 + ''; 324 + serviceConfig = { 325 + User = user; 326 + Group = group; 327 + SupplementaryGroups = [ "video" ]; 328 + ExecStart = "${zoneminder}/bin/zmpkg.pl start"; 329 + ExecStop = "${zoneminder}/bin/zmpkg.pl stop"; 330 + ExecReload = "${zoneminder}/bin/zmpkg.pl restart"; 331 + PIDFile = "/run/${dirName}/zm.pid"; 332 + Type = "forking"; 333 + Restart = "on-failure"; 334 + RestartSec = "10s"; 335 + CacheDirectory = dirs cacheDirs; 336 + RuntimeDirectory = dirName; 337 + ReadWriteDirectories = lib.mkIf useCustomDir [ cfg.storageDir ]; 338 + StateDirectory = dirs (if useCustomDir then [] else libDirs); 339 + LogsDirectory = dirName; 340 + PrivateTmp = true; 341 + ProtectSystem = "strict"; 342 + ProtectKernelTunables = true; 343 + SystemCallArchitectures = "native"; 344 + NoNewPrivileges = true; 345 + }; 346 + }; 347 + }; 348 + 349 + users.groups."${user}" = { 350 + gid = config.ids.gids.zoneminder; 351 + }; 352 + 353 + users.users."${user}" = { 354 + uid = config.ids.uids.zoneminder; 355 + group = user; 356 + inherit home; 357 + inherit (pkgs.zoneminder.meta) description; 358 + }; 359 + }; 360 + 361 + meta.maintainers = with lib.maintainers; [ peterhoeg ]; 362 + }
+1
nixos/modules/services/x11/desktop-managers/gnome3.nix
··· 95 services.dleyna-server.enable = mkDefault true; 96 services.gnome3.at-spi2-core.enable = true; 97 services.gnome3.evolution-data-server.enable = true; 98 services.gnome3.gnome-disks.enable = mkDefault true; 99 services.gnome3.gnome-documents.enable = mkDefault true; 100 services.gnome3.gnome-keyring.enable = true;
··· 95 services.dleyna-server.enable = mkDefault true; 96 services.gnome3.at-spi2-core.enable = true; 97 services.gnome3.evolution-data-server.enable = true; 98 + services.gnome3.file-roller.enable = mkDefault true; 99 services.gnome3.gnome-disks.enable = mkDefault true; 100 services.gnome3.gnome-documents.enable = mkDefault true; 101 services.gnome3.gnome-keyring.enable = true;
+2 -2
pkgs/applications/editors/gnome-builder/default.nix
··· 32 , wrapGAppsHook 33 }: 34 let 35 - version = "3.30.2"; 36 pname = "gnome-builder"; 37 in stdenv.mkDerivation { 38 name = "${pname}-${version}"; 39 40 src = fetchurl { 41 url = "mirror://gnome/sources/${pname}/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz"; 42 - sha256 = "05yax7iv9g831xvw9xdc01qc0l7qpmh6rfd692x8cbg76hljxdrr"; 43 }; 44 45 nativeBuildInputs = [
··· 32 , wrapGAppsHook 33 }: 34 let 35 + version = "3.30.3"; 36 pname = "gnome-builder"; 37 in stdenv.mkDerivation { 38 name = "${pname}-${version}"; 39 40 src = fetchurl { 41 url = "mirror://gnome/sources/${pname}/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz"; 42 + sha256 = "11h6apjyah91djf77m8xkl5rvdz7mwpp3bjc4yzzs9lm3pag764r"; 43 }; 44 45 nativeBuildInputs = [
+2 -2
pkgs/applications/misc/electrum/default.nix
··· 14 15 python3Packages.buildPythonApplication rec { 16 name = "electrum-${version}"; 17 - version = "3.2.3"; 18 19 src = fetchurl { 20 url = "https://download.electrum.org/${version}/Electrum-${version}.tar.gz"; 21 - sha256 = "139kzapas1l61w1in9f7c6ybricid4fzryfnvsrfhpaqh83ydn2c"; 22 }; 23 24 propagatedBuildInputs = with python3Packages; [
··· 14 15 python3Packages.buildPythonApplication rec { 16 name = "electrum-${version}"; 17 + version = "3.2.4"; 18 19 src = fetchurl { 20 url = "https://download.electrum.org/${version}/Electrum-${version}.tar.gz"; 21 + sha256 = "0nwipn1alk3r54zpsv2bdwsqxw4f08bxnfmygnwakfkiaifmmhxg"; 22 }; 23 24 propagatedBuildInputs = with python3Packages; [
+16 -7
pkgs/applications/misc/gnuradio/osmosdr.nix
··· 1 - { stdenv, fetchgit, cmake, pkgconfig, boost, gnuradio, rtl-sdr, uhd 2 - , makeWrapper, hackrf, airspy 3 , pythonSupport ? true, python, swig 4 }: 5 6 assert pythonSupport -> python != null && swig != null; 7 8 stdenv.mkDerivation rec { 9 name = "gnuradio-osmosdr-${version}"; 10 - version = "0.1.4"; 11 12 src = fetchgit { 13 url = "git://git.osmocom.org/gr-osmosdr"; 14 - rev = "refs/tags/v${version}"; 15 - sha256 = "0vyzr4fhkblf2v3d7m0ch5hws4c493jw3ydl4y6b2dfbfzchhsz8"; 16 }; 17 18 nativeBuildInputs = [ pkgconfig ]; 19 buildInputs = [ 20 - cmake boost gnuradio rtl-sdr uhd makeWrapper hackrf airspy 21 - ] ++ stdenv.lib.optionals pythonSupport [ python swig ]; 22 23 postInstall = '' 24 for prog in "$out"/bin/*; do
··· 1 + { stdenv, fetchgit, cmake, pkgconfig, makeWrapper 2 + , boost 3 , pythonSupport ? true, python, swig 4 + , airspy 5 + , gnuradio 6 + , hackrf 7 + , libbladeRF 8 + , rtl-sdr 9 + , soapysdr-with-plugins 10 + , uhd 11 }: 12 13 assert pythonSupport -> python != null && swig != null; 14 15 stdenv.mkDerivation rec { 16 name = "gnuradio-osmosdr-${version}"; 17 + version = "2018-08-15"; 18 19 src = fetchgit { 20 url = "git://git.osmocom.org/gr-osmosdr"; 21 + rev = "4d83c6067f059b0c5015c3f59f8117bbd361e877"; 22 + sha256 = "1d5nb47506qry52bg4cn02d3l4lwxwz44g2fz1ph0q93c7892j60"; 23 }; 24 25 nativeBuildInputs = [ pkgconfig ]; 26 buildInputs = [ 27 + cmake makeWrapper boost 28 + airspy gnuradio hackrf libbladeRF rtl-sdr uhd 29 + ] ++ stdenv.lib.optionals stdenv.isLinux [ soapysdr-with-plugins ] 30 + ++ stdenv.lib.optionals pythonSupport [ python swig ]; 31 32 postInstall = '' 33 for prog in "$out"/bin/*; do
+2 -2
pkgs/applications/misc/gnuradio/rds.nix
··· 6 7 stdenv.mkDerivation rec { 8 name = "gnuradio-rds-${version}"; 9 - version = "1.0.0"; 10 11 src = fetchFromGitHub { 12 owner = "bastibl"; 13 repo = "gr-rds"; 14 rev = "v${version}"; 15 - sha256 = "008284ya464q4h4fd0zvcn6g7bym231p8fl3kdxncz9ks4zsbsxs"; 16 }; 17 18 nativeBuildInputs = [ pkgconfig ];
··· 6 7 stdenv.mkDerivation rec { 8 name = "gnuradio-rds-${version}"; 9 + version = "1.1.0"; 10 11 src = fetchFromGitHub { 12 owner = "bastibl"; 13 repo = "gr-rds"; 14 rev = "v${version}"; 15 + sha256 = "0jkzchvw0ivcxsjhi1h0mf7k13araxf5m4wi5v9xdgqxvipjzqfy"; 16 }; 17 18 nativeBuildInputs = [ pkgconfig ];
+2 -2
pkgs/applications/misc/img2pdf/default.nix
··· 4 5 buildPythonApplication rec { 6 pname = "img2pdf"; 7 - version = "0.3.2"; 8 9 src = fetchPypi { 10 inherit pname version; 11 - sha256 = "07wxgn5khmy94zqqv8l84q9b3yy84ddvwr2f7j4pjycrj2gg7si8"; 12 }; 13 14 doCheck = false; # needs pdfrw
··· 4 5 buildPythonApplication rec { 6 pname = "img2pdf"; 7 + version = "0.3.3"; 8 9 src = fetchPypi { 10 inherit pname version; 11 + sha256 = "1ksn33j9d9df04n4jx7dli70d700rafbm37gjaz6lwsswrzc2xwx"; 12 }; 13 14 doCheck = false; # needs pdfrw
+33
pkgs/applications/misc/tdrop/default.nix
···
··· 1 + { stdenv, lib, fetchFromGitHub, makeWrapper 2 + , xwininfo, xdotool, xprop }: 3 + 4 + stdenv.mkDerivation rec { 5 + pname = "tdrop"; 6 + version = "unstable-2018-11-13"; 7 + 8 + src = fetchFromGitHub { 9 + owner = "noctuid"; 10 + repo = "tdrop"; 11 + rev = "198795c0d2573a31979330d6a2ae946eb81deebf"; 12 + sha256 = "1fhibqgmls64mylcb6q46ipmg1q6pvaqm26vz933gqav6cqsbdzs"; 13 + }; 14 + 15 + dontBuild = true; 16 + 17 + installFlags = [ "PREFIX=$(out)" ]; 18 + 19 + postInstall = '' 20 + wrapProgram $out/bin/tdrop \ 21 + --prefix PATH : ${lib.makeBinPath [ xwininfo xdotool xprop ]} 22 + ''; 23 + 24 + nativeBuildInputs = [ makeWrapper ]; 25 + 26 + meta = with stdenv.lib; { 27 + description = "A Glorified WM-Independent Dropdown Creator"; 28 + homepage = https://github.com/noctuid/tdrop; 29 + license = licenses.bsd2; 30 + platforms = platforms.linux; 31 + maintainers = with maintainers; [ wedens ]; 32 + }; 33 + }
+2 -2
pkgs/applications/misc/xpad/default.nix
··· 4 5 stdenv.mkDerivation rec { 6 name = "xpad-${version}"; 7 - version = "5.3.0"; 8 9 src = fetchurl { 10 url = "https://launchpad.net/xpad/trunk/${version}/+download/xpad-${version}.tar.bz2"; 11 - sha256 = "0gv9indihr2kbv9iqdqq4mfj6l6qgzwc06jm08gmg10f262sni34"; 12 }; 13 14 nativeBuildInputs = [ autoreconfHook pkgconfig wrapGAppsHook ];
··· 4 5 stdenv.mkDerivation rec { 6 name = "xpad-${version}"; 7 + version = "5.4.0"; 8 9 src = fetchurl { 10 url = "https://launchpad.net/xpad/trunk/${version}/+download/xpad-${version}.tar.bz2"; 11 + sha256 = "1qpmlwn0bcw1q73ag0l0fdnlzmwawfvsy4g9y5b0vyrc58lcp5d3"; 12 }; 13 14 nativeBuildInputs = [ autoreconfHook pkgconfig wrapGAppsHook ];
+43 -28
pkgs/applications/misc/yubioath-desktop/default.nix
··· 1 - { stdenv, fetchurl, python27Packages, pcsclite, yubikey-personalization }: 2 3 - python27Packages.buildPythonApplication rec { 4 - namePrefix = ""; 5 - name = "yubioath-desktop-${version}"; 6 - version = "3.1.0"; 7 8 - src = fetchurl { 9 - url = "https://developers.yubico.com/yubioath-desktop/Releases/yubioath-desktop-${version}.tar.gz"; 10 - sha256 = "0jfvllgh88g2vwd8sg6willlnn2hq05nd9d3xmv98lhl7gyy1akw"; 11 - }; 12 13 - doCheck = false; 14 15 - buildInputs = [ stdenv ]; 16 17 - propagatedBuildInputs = [ python27Packages.pycrypto python27Packages.click python27Packages.pyscard python27Packages.pyside ]; 18 19 - # Need LD_PRELOAD for libykpers as the Nix cpython disables ctypes.cdll.LoadLibrary 20 - # support that the yubicommon library uses to load libykpers 21 - makeWrapperArgs = ''--prefix LD_LIBRARY_PATH : "${stdenv.lib.getLib pcsclite}/lib:${yubikey-personalization}/lib" --prefix LD_PRELOAD : "${yubikey-personalization}/lib/libykpers-1.so"''; 22 23 - postInstall = '' 24 mkdir -p $out/share/applications 25 - cp resources/yubioath.desktop $out/share/applications/yubioath.desktop 26 mkdir -p $out/share/yubioath/icons 27 - cp resources/yubioath*.{icns,ico,png,xpm} $out/share/yubioath/icons 28 - substituteInPlace $out/share/applications/yubioath.desktop \ 29 - --replace 'Exec=yubioath-gui' "Exec=$out/bin/yubioath-gui" \ 30 - --replace 'Icon=yubioath' "Icon=$out/share/yubioath/icons" 31 32 - ''; 33 34 - meta = { 35 - description = "Yubikey Desktop Authenticator"; 36 37 - homepage = https://www.yubico.com/support/knowledge-base/categories/articles/yubico-authenticator-download/; 38 - 39 - license = stdenv.lib.licenses.gpl3; 40 - }; 41 }
··· 1 + { stdenv, fetchurl, fetchFromGitHub 2 + , qmake, qtbase, qtquickcontrols, qtsvg 3 + , python3, pyotherside, ncurses 4 + , pcsclite, yubikey-personalization 5 + , yubikey-manager, makeWrapper }: 6 7 + stdenv.mkDerivation rec { 8 + pname = "yubioath-desktop"; 9 + version = "4.3.4"; 10 11 + src = fetchurl { 12 + url = "https://developers.yubico.com/yubioath-desktop/Releases/yubioath-desktop-${version}.tar.gz"; 13 + sha256 = "0hb7j71032sigs8zd5r8yr0m59sjkb24vhs2l4jarpvj8q7hv30d"; 14 + }; 15 + 16 + doCheck = false; 17 18 + buildInputs = [ stdenv qtbase qtquickcontrols pyotherside python3 ]; 19 20 + nativeBuildInputs = [ qmake makeWrapper python3.pkgs.wrapPython ]; 21 22 + postPatch = '' 23 + substituteInPlace deployment.pri \ 24 + --replace '/usr/bin' "$out/bin" 25 + ''; 26 + 27 + pythonPath = [ yubikey-manager ]; 28 + 29 + # Need LD_PRELOAD for libykpers as the Nix cpython disables ctypes.cdll.LoadLibrary 30 + # support that the yubicommon library uses to load libykpers 31 32 + postInstall = '' 33 + buildPythonPath "$out $pythonPath" 34 + wrapProgram $out/bin/yubioath-desktop \ 35 + --prefix PYTHONPATH : "$program_PYTHONPATH" \ 36 + --prefix LD_PRELOAD : "${yubikey-personalization}/lib/libykpers-1.so" \ 37 + --prefix LD_LIBRARY_PATH : "${stdenv.lib.getLib pcsclite}/lib:${yubikey-personalization}/lib" 38 39 mkdir -p $out/share/applications 40 + cp resources/yubioath-desktop.desktop \ 41 + $out/share/applications/yubioath-desktop.desktop 42 mkdir -p $out/share/yubioath/icons 43 + cp resources/icons/*.{icns,ico,png,xpm} $out/share/yubioath/icons 44 + substituteInPlace $out/share/applications/yubioath-desktop.desktop \ 45 + --replace 'Exec=yubioath-desktop' "Exec=$out/bin/yubioath-desktop" \ 46 + ''; 47 48 + meta = with stdenv.lib; { 49 + description = "Yubikey Desktop Authenticator"; 50 51 + homepage = https://www.yubico.com/support/knowledge-base/categories/articles/yubico-authenticator-download/; 52 53 + license = stdenv.lib.licenses.gpl3; 54 + maintainers = with maintainers; [ mic92 ]; 55 + }; 56 }
+2 -2
pkgs/applications/networking/browsers/brave/default.nix
··· 76 77 in stdenv.mkDerivation rec { 78 pname = "brave"; 79 - version = "0.58.18"; 80 81 src = fetchurl { 82 url = "https://github.com/brave/brave-browser/releases/download/v${version}/brave-browser_${version}_amd64.deb"; 83 - sha256 = "0xybcgsxjmd8bxi4x4midzw71s23j8icpspqf5sadskhldvshzr3"; 84 }; 85 86 dontConfigure = true;
··· 76 77 in stdenv.mkDerivation rec { 78 pname = "brave"; 79 + version = "0.58.21"; 80 81 src = fetchurl { 82 url = "https://github.com/brave/brave-browser/releases/download/v${version}/brave-browser_${version}_amd64.deb"; 83 + sha256 = "0mml8zjpm8gjw3krppr57y4p10ky975v0s4wyyx7ixr1lzk2qp11"; 84 }; 85 86 dontConfigure = true;
+397 -397
pkgs/applications/networking/browsers/firefox-bin/beta_sources.nix
··· 1 { 2 - version = "65.0b11"; 3 sources = [ 4 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-x86_64/ach/firefox-65.0b11.tar.bz2"; 5 locale = "ach"; 6 arch = "linux-x86_64"; 7 - sha512 = "852f1c81849e95a1b52db156aef3a265fc30bacefc1d7b1b6e8176905b15d5a661d4b71ff28fd23f94f1143083dce6f0710de84b33fe44625d8d885681874921"; 8 } 9 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-x86_64/af/firefox-65.0b11.tar.bz2"; 10 locale = "af"; 11 arch = "linux-x86_64"; 12 - sha512 = "98e05d94365c1e329c77f8e4c061c1999c85b223e04a64e091990e35bd457cce5649f28f90df408b761cb92b3f209aa278be52df38042feff0ce9ed5dad9d882"; 13 } 14 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-x86_64/an/firefox-65.0b11.tar.bz2"; 15 locale = "an"; 16 arch = "linux-x86_64"; 17 - sha512 = "267bfb5a399543f7e2148ccee1ffb4d0a2ed8ed35620bdb8a5549471f084a2609e7d0bb3b381424d000dd1154f463cf03d796f3241ee6f17ca8b235e1e8341a1"; 18 } 19 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-x86_64/ar/firefox-65.0b11.tar.bz2"; 20 locale = "ar"; 21 arch = "linux-x86_64"; 22 - sha512 = "dc6404d25cabef0821d2875a06f64c9e821c552ee482d61e6242ebb7a5bf8fea56f3423a4f0ea8e27e640d3c1a8b2024fce37f2aca0e23e5d4485912b6f16fa0"; 23 } 24 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-x86_64/as/firefox-65.0b11.tar.bz2"; 25 locale = "as"; 26 arch = "linux-x86_64"; 27 - sha512 = "9a7161ac423ecc40e3e6e3fe38c7c02795c095cb19f1081913ccfb3a0966c3c17eb12d33481fc962e76f90380c27dc6de4e2e5e0b81f144730cb10d364600a88"; 28 } 29 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-x86_64/ast/firefox-65.0b11.tar.bz2"; 30 locale = "ast"; 31 arch = "linux-x86_64"; 32 - sha512 = "4b744e5448038107d920ec6c9340f43f4c77b6d2abdbac9cc888fb16f72b4ab209ab28757f0983a376ef1dbacd37f8838a1d21aba9d0911d2ce98e51e49021b6"; 33 } 34 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-x86_64/az/firefox-65.0b11.tar.bz2"; 35 locale = "az"; 36 arch = "linux-x86_64"; 37 - sha512 = "22f42909eabc3312ba72fe19913cbc197a6ee746f4c86d07ec15b014f6ea8df524cfef7f0259c8fbb890ef7b432448e4ee6b14a48b3e427201c21e133b8a5aed"; 38 } 39 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-x86_64/be/firefox-65.0b11.tar.bz2"; 40 locale = "be"; 41 arch = "linux-x86_64"; 42 - sha512 = "7ee472a3017ab650f3623724e4976d43ecdae0a2435b652a20409a751ad2e28d05e9a6fcf8cabe56ab7f21a8a41246499c0594b14298183d64372332b9cb92ff"; 43 } 44 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-x86_64/bg/firefox-65.0b11.tar.bz2"; 45 locale = "bg"; 46 arch = "linux-x86_64"; 47 - sha512 = "3fa027b2e469dfab4e653a89683271a45cef5fdae6c60e38ed42b13bfc6aff71022e6ac464966f973d1f2071450ff18d58b8c9e8badd9d2dab0656f5747c1dbc"; 48 } 49 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-x86_64/bn-BD/firefox-65.0b11.tar.bz2"; 50 locale = "bn-BD"; 51 arch = "linux-x86_64"; 52 - sha512 = "b1f4fe426cd6edc240fee006a101de99de651578a5375975e5eb431728ff7de889bdcea6cd86d3580fd5476f3fb1e3cdbfe0473b04cda1f8ebb3e49573ec0054"; 53 } 54 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-x86_64/bn-IN/firefox-65.0b11.tar.bz2"; 55 locale = "bn-IN"; 56 arch = "linux-x86_64"; 57 - sha512 = "a81fe3d8d2cc315c2a8902071251f0e376548600464acc01ea030e099f380e1f0f87c4d14e7551e2a3c472f920d628a0764141e0bc4bd203704f634d34309b12"; 58 } 59 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-x86_64/br/firefox-65.0b11.tar.bz2"; 60 locale = "br"; 61 arch = "linux-x86_64"; 62 - sha512 = "eef1c4b5a3c138686b176fce270eb0202f5081abddaf8f3181dce04aa25f0f10fae2ddc899bce5343420838b639679474e908e2a2615cb4c39c56537cb79b926"; 63 } 64 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-x86_64/bs/firefox-65.0b11.tar.bz2"; 65 locale = "bs"; 66 arch = "linux-x86_64"; 67 - sha512 = "5c79c850eb05d539c938ece146c167f43e44ef89efc8001c6863a639a69d39fdf4af493815cde63fa27a226c1ed47bafe97039ae3d8c4d5ce844973fcde350a2"; 68 } 69 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-x86_64/ca/firefox-65.0b11.tar.bz2"; 70 locale = "ca"; 71 arch = "linux-x86_64"; 72 - sha512 = "d4cab6e39f6a24e78d3f8ecb98bf4a1047622e2b4fc6d48f28f8035c6222ea1a9ab7fae11c742e328258c99ea97324e6a13fb28080fa8ef4e6ba07256361b4f0"; 73 } 74 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-x86_64/cak/firefox-65.0b11.tar.bz2"; 75 locale = "cak"; 76 arch = "linux-x86_64"; 77 - sha512 = "ddca81b4246887fb966b0596079c808d25bcf8cfd9caf0970ddec9b3ab3558864a70e9839fd31061d84d4f12c696d1983e51ac5c0edc3cc02146cdf9a99fa029"; 78 } 79 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-x86_64/cs/firefox-65.0b11.tar.bz2"; 80 locale = "cs"; 81 arch = "linux-x86_64"; 82 - sha512 = "4aeee96c717852b94ccdc1dfa858e6b4133590768159e94b5e8601e5f5304733e1a4968d0f26db898681a9852928b6eebb24eeb046cd3e12c6f843cdae53d38d"; 83 } 84 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-x86_64/cy/firefox-65.0b11.tar.bz2"; 85 locale = "cy"; 86 arch = "linux-x86_64"; 87 - sha512 = "0a1d2ee6d8defd36d1fd2a6a7f5a118f416e5cefae29b1a21b2004614a44ee075ae5c69fc8e14d59b059764c148879c6a25a32d4412004d326e9a830215265e2"; 88 } 89 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-x86_64/da/firefox-65.0b11.tar.bz2"; 90 locale = "da"; 91 arch = "linux-x86_64"; 92 - sha512 = "5ebc3265e8fd2235019e3fbe5e31f4889c458a3e9bfe1f28ca291ad64a58660a9cace6cd5b285f0f90e03f2aa743ff29215e3c4c632793b95701bad752223efd"; 93 } 94 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-x86_64/de/firefox-65.0b11.tar.bz2"; 95 locale = "de"; 96 arch = "linux-x86_64"; 97 - sha512 = "f5518a766fed18c1315b6e4d21fb0e23b2c9ad915e4766df8e1d6186445c3ae778f7098da4ec008a37f788cf63264cea8fc9fda96696b0f2e0f9fd1747e63a81"; 98 } 99 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-x86_64/dsb/firefox-65.0b11.tar.bz2"; 100 locale = "dsb"; 101 arch = "linux-x86_64"; 102 - sha512 = "7c8016480802eee8df2809ff5d7321604d9601e70dc68a20df457ddd34e249841009a980c8412d458144cd5b9df7c16024c6ab83e728bd9ab3764a59e731dc5d"; 103 } 104 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-x86_64/el/firefox-65.0b11.tar.bz2"; 105 locale = "el"; 106 arch = "linux-x86_64"; 107 - sha512 = "c973492da7a86d9824cae248a8490779e875fa38973d5c4200079d28247bb98d1bc0f862a62fdfea060bbf6c0ab2847d81ab3876a9746998b7073eed6b194c80"; 108 } 109 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-x86_64/en-CA/firefox-65.0b11.tar.bz2"; 110 locale = "en-CA"; 111 arch = "linux-x86_64"; 112 - sha512 = "7a21a976dfa3dd8fcd823ef845b12ae1f88ee93319e8a7906cd959f225730d24600af3838072641be0051bf05fc739f6f939d9c84f3da5b1759d8fdcb89c616e"; 113 } 114 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-x86_64/en-GB/firefox-65.0b11.tar.bz2"; 115 locale = "en-GB"; 116 arch = "linux-x86_64"; 117 - sha512 = "fc6b96e8c991e6a673a6335390e6ddeb23cf10452b3ae6d0f2af04dc9816823c1adb59191c8623ad503500462672533722d852f2a157e0759111de1e17acf597"; 118 } 119 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-x86_64/en-US/firefox-65.0b11.tar.bz2"; 120 locale = "en-US"; 121 arch = "linux-x86_64"; 122 - sha512 = "8aff407a1631c9e0e3e86b35f7c4d02bab1878d25220446b92ed31322521c8f13e55cc0aa9a262ad36a5cb61459dde88fe4f392b532b26680cd944a114145fe1"; 123 } 124 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-x86_64/en-ZA/firefox-65.0b11.tar.bz2"; 125 locale = "en-ZA"; 126 arch = "linux-x86_64"; 127 - sha512 = "92ffd0c40b0f185622935b96867c4d6b8e9a46bc1e4215bd0988a563c774bc5c6bf3b173824a303d2adf27f5cc7ed13938f2d8682bd0f0fec8cccb7a6585079e"; 128 } 129 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-x86_64/eo/firefox-65.0b11.tar.bz2"; 130 locale = "eo"; 131 arch = "linux-x86_64"; 132 - sha512 = "95481d474a84d7846363cc517bd57352f1a18035b1fa52539ba1f0d02ca19b03f1faebd40d352d05815b3f5582446bd09497a1e863757db9b7242c2a2953c2fd"; 133 } 134 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-x86_64/es-AR/firefox-65.0b11.tar.bz2"; 135 locale = "es-AR"; 136 arch = "linux-x86_64"; 137 - sha512 = "dbe567a9c65e7f2f132a26fb6310a8612c72c4f35ee16cbd7ed4e8ab39590873979efa8d1a80f2a29c1f465fba95b57fe5072cc59269622393798df9491eb62c"; 138 } 139 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-x86_64/es-CL/firefox-65.0b11.tar.bz2"; 140 locale = "es-CL"; 141 arch = "linux-x86_64"; 142 - sha512 = "d3cb6d0109e2bc3bb870a070cff8dbdd193bd57de7e63c19edfc487889fa7024089ce31453a7d0eff12534c40087dd6ccd813b08139549081d24811621c09836"; 143 } 144 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-x86_64/es-ES/firefox-65.0b11.tar.bz2"; 145 locale = "es-ES"; 146 arch = "linux-x86_64"; 147 - sha512 = "8e397177cc6e6af71d4f957082a757de845a3660b558770c794fae3f3b651ee08c74914101ec9884ef688372f3cd0ada7cc88a22e3e5d53709a77684b9cee72f"; 148 } 149 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-x86_64/es-MX/firefox-65.0b11.tar.bz2"; 150 locale = "es-MX"; 151 arch = "linux-x86_64"; 152 - sha512 = "b5ed96dea80ce84a957bde26348721fb9cc78660c0f383e50b4895a08e756c1298799685498045fddbfc4ec48ab39321b6ff2794153f496830cb480bda5a3d61"; 153 } 154 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-x86_64/et/firefox-65.0b11.tar.bz2"; 155 locale = "et"; 156 arch = "linux-x86_64"; 157 - sha512 = "aeb6979c72acc790d784e2084d57b75494626e968e4ed2816ec0c78708226126d341e80849346f97c251f1885f8a013572eab54971139d95f4eb99443b88e4fe"; 158 } 159 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-x86_64/eu/firefox-65.0b11.tar.bz2"; 160 locale = "eu"; 161 arch = "linux-x86_64"; 162 - sha512 = "c79097d8f976863a6b5bab7a7fab17678c1a934f2aac9ff7bdc8156f7a21454ad8bbc0d9a322958acc0fe2a6ce2ec5707b744df3a4d8792e9eab2c3e5a01000c"; 163 } 164 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-x86_64/fa/firefox-65.0b11.tar.bz2"; 165 locale = "fa"; 166 arch = "linux-x86_64"; 167 - sha512 = "da333712491216f4cad2d82abadd24b008621f4c6d9d9f85b6a66e33a033b78c1cbecdbd0e25accba57cef220af6485705bb2d71e5915a713a187722ffb935bc"; 168 } 169 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-x86_64/ff/firefox-65.0b11.tar.bz2"; 170 locale = "ff"; 171 arch = "linux-x86_64"; 172 - sha512 = "c37db0264db4a204413a0fa368d26f3c285f609d3acdc4aa198c4bee64ff558119f869d2a4ea5caec3061ade4932590a0a1254261c8830aef3c568846f385ebe"; 173 } 174 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-x86_64/fi/firefox-65.0b11.tar.bz2"; 175 locale = "fi"; 176 arch = "linux-x86_64"; 177 - sha512 = "f322df1df42c345ebecce6427311e4e77b55d5cfdcc45a3e0ce5adeb55fe1b899366cc9bbeebb02ae9b2a1a5f9ec1ce36765709ef546444324443b9c5a22d6ad"; 178 } 179 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-x86_64/fr/firefox-65.0b11.tar.bz2"; 180 locale = "fr"; 181 arch = "linux-x86_64"; 182 - sha512 = "948cfe12b2b928a0753f760ff3c882bac1e01e858cb1f37df11d5d0b9398a3bdb337c706153fc5a782c300fcb4c67a5e3aa23665f83e66e306e4052b4df4701b"; 183 } 184 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-x86_64/fy-NL/firefox-65.0b11.tar.bz2"; 185 locale = "fy-NL"; 186 arch = "linux-x86_64"; 187 - sha512 = "770bd127c526319fe5ea054eeda55e241249942e65f5d2d04be5fa645700e835e32638cde631cebb2d553cc8f29db81a69324c87b1b664bfb4137ae6f410336f"; 188 } 189 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-x86_64/ga-IE/firefox-65.0b11.tar.bz2"; 190 locale = "ga-IE"; 191 arch = "linux-x86_64"; 192 - sha512 = "a8c84fb8cab5eafeaeb5ac5d4c17856d50a36fe1f60c9704057635584c9e16209304fe6b19f2e4ce04e5a454d26d482acbbdd0d05296104cad9b2181db263786"; 193 } 194 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-x86_64/gd/firefox-65.0b11.tar.bz2"; 195 locale = "gd"; 196 arch = "linux-x86_64"; 197 - sha512 = "e2ae0f413c836ef02dca8f96023e4412658380de1cced076d9e3354328035cfd42091bb945455ec1d15d98cf9f029f5920d0dddb97f0935fe6e505518864388e"; 198 } 199 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-x86_64/gl/firefox-65.0b11.tar.bz2"; 200 locale = "gl"; 201 arch = "linux-x86_64"; 202 - sha512 = "d66c64f5d4bf1401f8ea6f27deb70f5ece36ded9d8e0088c008d2e112d6217b39402f46444870ca08a566ce9d47e9f2109e070a21b5fbd7664054e339490c59c"; 203 } 204 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-x86_64/gn/firefox-65.0b11.tar.bz2"; 205 locale = "gn"; 206 arch = "linux-x86_64"; 207 - sha512 = "5c31817ba2f5381763626cc2b40f7b79b30bc97b2ff5360af8e842bed90ff4d73fac0fe906f7302ec7fffae75300ce794a0ecc1824e38ea96f1de66516fc7359"; 208 } 209 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-x86_64/gu-IN/firefox-65.0b11.tar.bz2"; 210 locale = "gu-IN"; 211 arch = "linux-x86_64"; 212 - sha512 = "961cd49cc395be3a1b71a58118595842300b5f9d4aa59c291a18ddb6cb4da3e1e8b148ffb0cefe7882adec8df5cc9ee2a2fcba105a4182c7cb44376c70b66288"; 213 } 214 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-x86_64/he/firefox-65.0b11.tar.bz2"; 215 locale = "he"; 216 arch = "linux-x86_64"; 217 - sha512 = "846209daef39c0a171b9a55d0482046fe3ac5f00c8aea3b1c648705202875f33f4c0dc26f3eca9e91b041708cef87839959e6e0160f95a7a4a6376bcee35cd42"; 218 } 219 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-x86_64/hi-IN/firefox-65.0b11.tar.bz2"; 220 locale = "hi-IN"; 221 arch = "linux-x86_64"; 222 - sha512 = "82abfb9b11267e59c688c17efa3f01b72318eda51ec37dc11c8039acd14d17668256db6ddd406909932f836b2225a3b3467999563fc3dd65f0bce0ef1fcce0ed"; 223 } 224 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-x86_64/hr/firefox-65.0b11.tar.bz2"; 225 locale = "hr"; 226 arch = "linux-x86_64"; 227 - sha512 = "0fc02db4b963add6c7e190a2b47289cd3e97ef8764725dac49bea82522567fe8ca19a9590d8ba93929c722da5414dd910040586327c1d935b932c4654073918c"; 228 } 229 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-x86_64/hsb/firefox-65.0b11.tar.bz2"; 230 locale = "hsb"; 231 arch = "linux-x86_64"; 232 - sha512 = "95b4c946d065d72ef0a3ce37a2383efd2ca45e3e3bc49aadd9b3494a4fe82a1ddd4cf38748cb182a13dec2a4f53d4e435e0febee64639fee80d13ed8ed975581"; 233 } 234 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-x86_64/hu/firefox-65.0b11.tar.bz2"; 235 locale = "hu"; 236 arch = "linux-x86_64"; 237 - sha512 = "ace56b9c89edfff796c3a0e4cf8f5d59c88012759dbe377cb9634e9255829c9841f9965055272e48b7b63108deebbfb4a794ac8242e783018d47daccb2f4d932"; 238 } 239 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-x86_64/hy-AM/firefox-65.0b11.tar.bz2"; 240 locale = "hy-AM"; 241 arch = "linux-x86_64"; 242 - sha512 = "18c8ca101c31a5e5cd72053a7821c835dd39509a3dd439fbd505a77fad923e812869043beb91c80fc384f6946d01c422b1b9ea274ba755c039422900a929d14e"; 243 } 244 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-x86_64/ia/firefox-65.0b11.tar.bz2"; 245 locale = "ia"; 246 arch = "linux-x86_64"; 247 - sha512 = "c2fd37c14aa7721adf761371010374dd7d5a5c4fbd286eb2ef4e177632dc7520cb8702f6511915945c1e8aaf4d561bc578905c15dff8be2ed48fc05c89396470"; 248 } 249 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-x86_64/id/firefox-65.0b11.tar.bz2"; 250 locale = "id"; 251 arch = "linux-x86_64"; 252 - sha512 = "a7c75f4dfb80686f3d689ff664c02af6f8635bef3dc7ff98609e82e01ecf185be3aee39991d5273686b36f2d467e1c1969e240834256249afbe15b98021d0709"; 253 } 254 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-x86_64/is/firefox-65.0b11.tar.bz2"; 255 locale = "is"; 256 arch = "linux-x86_64"; 257 - sha512 = "6f0d44dfdb6d57f8eba4b066554ee75f2c097de69595e53eb395880a98234ca00da34d6324abba76954bf48bc076fd2f558ab594ae616de18249f21a4443ff46"; 258 } 259 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-x86_64/it/firefox-65.0b11.tar.bz2"; 260 locale = "it"; 261 arch = "linux-x86_64"; 262 - sha512 = "137ef9e49ccf1c3a07ac1a6c95dac659cc1bb0d48e5506b8c7bfe6ab7cb7c1c352571bccb7fd45498ad2d972cd1692efcec337973b3e62d798b171b0bd2d2d0f"; 263 } 264 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-x86_64/ja/firefox-65.0b11.tar.bz2"; 265 locale = "ja"; 266 arch = "linux-x86_64"; 267 - sha512 = "f8784970443caceaa041dccf2c35abc986f28a936a837e417a47a625d3794666226495d6f2e1acf22a0cf4c481f3609460e771e6b2400b0c82c9f5a72500351f"; 268 } 269 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-x86_64/ka/firefox-65.0b11.tar.bz2"; 270 locale = "ka"; 271 arch = "linux-x86_64"; 272 - sha512 = "a025706a4246799dfc4cc5c7b08b14c385e21a7b29ea0cfbebdfff9f7af466e6988934b51dc3023ee9785b17a1a3840687f53c67132dc6bca7ab3caa019426a5"; 273 } 274 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-x86_64/kab/firefox-65.0b11.tar.bz2"; 275 locale = "kab"; 276 arch = "linux-x86_64"; 277 - sha512 = "e2f6b99be24f6636aa3b8de39dea51b0909fd05fb06481962fdff500806ac5e7327cb9d939e162d48096a80726f0470459a500175f3cdb4210062bc7d4a744be"; 278 } 279 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-x86_64/kk/firefox-65.0b11.tar.bz2"; 280 locale = "kk"; 281 arch = "linux-x86_64"; 282 - sha512 = "19f91d8c47f17f5408f3fb9ae1c13fea4295b32075910de2aba6f7a39aed3e2c0a32aa843fe8e72bbc74ab527fda19e024ff73b3320af7c155fcf48d07e1f478"; 283 } 284 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-x86_64/km/firefox-65.0b11.tar.bz2"; 285 locale = "km"; 286 arch = "linux-x86_64"; 287 - sha512 = "a9e42ebcc76049b670ec8085a031edd5014be75789f1ca98b7becbb74ff2da6c59e2dbf85ce866940f60ec970480aa4fb86a0314a769a2fc9141217b705dad34"; 288 } 289 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-x86_64/kn/firefox-65.0b11.tar.bz2"; 290 locale = "kn"; 291 arch = "linux-x86_64"; 292 - sha512 = "56b00c1514741c90a07ecd48efd569ad2024495f9886ad4cfb8fb87aa7ccbb2b20b116a2557e64b276d1209b530026a94388cfd7bd86621bb91f989020930c0f"; 293 } 294 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-x86_64/ko/firefox-65.0b11.tar.bz2"; 295 locale = "ko"; 296 arch = "linux-x86_64"; 297 - sha512 = "d41a687be138fd4f74e4c5abb232ea965ccc2a6e45da45409dd6b679fe64799a667348b8625479a50bbd4139bd5700263149d535a673ff87ea2f9f86f245cbdb"; 298 } 299 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-x86_64/lij/firefox-65.0b11.tar.bz2"; 300 locale = "lij"; 301 arch = "linux-x86_64"; 302 - sha512 = "add9a16c10b5601cf2fb48f6158366c5a4e808139de47e994a5986a47f6b2f32bfa46dbe46138c005dba58dbf46179fcdc43ba397ee8a8b7cc60dc8eb30fdb46"; 303 } 304 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-x86_64/lt/firefox-65.0b11.tar.bz2"; 305 locale = "lt"; 306 arch = "linux-x86_64"; 307 - sha512 = "6842f8c98ebd5e433b74c54071e6e96bd529e499b9191e782579d5cc5af4152bb2b8e63c3edb891ace7b89349ee9fb6ac5de4b5173dc1e02f5690ecfa8598951"; 308 } 309 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-x86_64/lv/firefox-65.0b11.tar.bz2"; 310 locale = "lv"; 311 arch = "linux-x86_64"; 312 - sha512 = "88e0499414f276be1c3dfe7906b2adce2f4f4e501f855ce30f1353e146c9b307a460197474d69c7f05cd04dd02da4d735c628d4cea862163524e3a845d4c7d6f"; 313 } 314 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-x86_64/mai/firefox-65.0b11.tar.bz2"; 315 locale = "mai"; 316 arch = "linux-x86_64"; 317 - sha512 = "88c9aa3035c2199a99900f8725e1c85038b64fab8ec548bce4337f457f306dd0f283e88d40203c4086174ee8b2741af6f70a270fa5ac99852ac80bf855d903a2"; 318 } 319 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-x86_64/mk/firefox-65.0b11.tar.bz2"; 320 locale = "mk"; 321 arch = "linux-x86_64"; 322 - sha512 = "827bbb941ef1a6e645ab90ecf1e84134eae33cecc45c7f80bec71d4eb6ff00e3dee568bac7e629895e2394f93dff03d7213529996cbceea68a9013473545faa7"; 323 } 324 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-x86_64/ml/firefox-65.0b11.tar.bz2"; 325 locale = "ml"; 326 arch = "linux-x86_64"; 327 - sha512 = "04c701b480cc1c0c7aa69cc07dc29d467c74be51c528a8ae74f69ad52e99d7d9f9feedfe6c8799410365312f5f9c0191cee721a8b29216039cb3c90c6d5a0b5a"; 328 } 329 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-x86_64/mr/firefox-65.0b11.tar.bz2"; 330 locale = "mr"; 331 arch = "linux-x86_64"; 332 - sha512 = "57815995c84bebfc4bb08c8eb0f59c984231069ce2df120d76c28036f674db36e870fb899b167e2f8d61f0ad2658a5b04d651d7b74f4afaab1e8bef8a38819dd"; 333 } 334 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-x86_64/ms/firefox-65.0b11.tar.bz2"; 335 locale = "ms"; 336 arch = "linux-x86_64"; 337 - sha512 = "607fabcffbdaf3acaa44b9e49bc1de8c3499d5bb8697764f8f0d96fb3deb1a9f1ef88514edc771c94dd56ad88a476a26dba039462cf328f8df0ee4425d553711"; 338 } 339 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-x86_64/my/firefox-65.0b11.tar.bz2"; 340 locale = "my"; 341 arch = "linux-x86_64"; 342 - sha512 = "07f27b05282c7617b15a3a5bc3060eeaf5515c1a74964dd8aeb1554ec4b01b40f027a64f643c41b536247d35feaf364104314374990c8518539afa9d70f6e708"; 343 } 344 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-x86_64/nb-NO/firefox-65.0b11.tar.bz2"; 345 locale = "nb-NO"; 346 arch = "linux-x86_64"; 347 - sha512 = "f2aecc8704a4c022eae4db031ccdf73147ece74a8b4a0f8985d3e373b19232de123ed552564d82e7e5c5ae2d4896a60ef85714b8dd120a0d63e921e0c779cf03"; 348 } 349 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-x86_64/ne-NP/firefox-65.0b11.tar.bz2"; 350 locale = "ne-NP"; 351 arch = "linux-x86_64"; 352 - sha512 = "d85dfb4e70ea54ca736e612727fa54a19b80480c13a1ff609c05f1bda2a024b16f803a0f6574221c78688cc26334e5d31ef5492bf8825bfc81c7dc0f78204461"; 353 } 354 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-x86_64/nl/firefox-65.0b11.tar.bz2"; 355 locale = "nl"; 356 arch = "linux-x86_64"; 357 - sha512 = "7d33a57fe06749152043d7ffd364e3ffe85cae49105238e01d7decb90016eed5c5a629836eb96acff21fcc986ba39441baddcb4b67cdd823ceb33c433c4e644a"; 358 } 359 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-x86_64/nn-NO/firefox-65.0b11.tar.bz2"; 360 locale = "nn-NO"; 361 arch = "linux-x86_64"; 362 - sha512 = "f447627be7d1ee42da349dce3754c32dbd10f750ee1d8fed48b8e09b45a507b14147a0bc3fe426c9b8b0caa1443599b2b2d0b467ac3bf2615cc0c8e1f7fb90d7"; 363 } 364 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-x86_64/oc/firefox-65.0b11.tar.bz2"; 365 locale = "oc"; 366 arch = "linux-x86_64"; 367 - sha512 = "fd20fe5db15ac7ccae112d34c79949db4f96914aa0e6cf9e98a03f03cd205bdf4594522eacd5a3cadc388e7904373ce2642b7bc43b18234e9357d319f9bce3ed"; 368 } 369 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-x86_64/or/firefox-65.0b11.tar.bz2"; 370 locale = "or"; 371 arch = "linux-x86_64"; 372 - sha512 = "b3d03432f4baa6d06ef3dd2811e255e225788b2a918d0e8b7706df3ffdbdc702617346b6dba611de77935c58c500da463e6b9b7d4f29d6d960a2bd93fab086b6"; 373 } 374 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-x86_64/pa-IN/firefox-65.0b11.tar.bz2"; 375 locale = "pa-IN"; 376 arch = "linux-x86_64"; 377 - sha512 = "ff1cc2f140c1c219b1abd2e629e763e182327e1c5d1be72f158041863089e10f2790f69ea3aa293e2034581466721108d964ada96194a67d710a907572d8e77b"; 378 } 379 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-x86_64/pl/firefox-65.0b11.tar.bz2"; 380 locale = "pl"; 381 arch = "linux-x86_64"; 382 - sha512 = "59944dcd470c2bee4da3508c24cccb636ab86d491c8d5f764b07087f281dfdf6a763f87686b08efe1e622ece32463c12281ab97fb8c4da94cc03d601265017c5"; 383 } 384 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-x86_64/pt-BR/firefox-65.0b11.tar.bz2"; 385 locale = "pt-BR"; 386 arch = "linux-x86_64"; 387 - sha512 = "a3512d613d7c0cd645cfa5d34d61ef86bda76aa654192308656f1af9630b5ec4a75cae511f60f6b2ad2dea1a78d1c4a440797ab9fbe5f183a069479d47ccc411"; 388 } 389 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-x86_64/pt-PT/firefox-65.0b11.tar.bz2"; 390 locale = "pt-PT"; 391 arch = "linux-x86_64"; 392 - sha512 = "31d5674fd1772c428c6ba58e050b238c19e394e3baf1c1ee13db3d60ac795bcc89f4a93fb63290fc0638148e5aaaa1d9cb5d5b1df2b7a6ae81bd77f525f0f936"; 393 } 394 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-x86_64/rm/firefox-65.0b11.tar.bz2"; 395 locale = "rm"; 396 arch = "linux-x86_64"; 397 - sha512 = "b5b0169f8980a077170f93784923c6c8cad45ff9200349b16438cf0a5205e3495cf11918b802130a211ab8acfc555a79b9a24bee046c61cf14be89de183edb33"; 398 } 399 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-x86_64/ro/firefox-65.0b11.tar.bz2"; 400 locale = "ro"; 401 arch = "linux-x86_64"; 402 - sha512 = "77903c223a32c76d64c770fc7216115d46cddd00fb7ffad79c7f080dc94d55fe65931db0964667d16b0cb6bd358cda598c04695451312d159a8b8ea2c1018437"; 403 } 404 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-x86_64/ru/firefox-65.0b11.tar.bz2"; 405 locale = "ru"; 406 arch = "linux-x86_64"; 407 - sha512 = "2cfdb514f421a0435d31a11f4786712471b1385ed1c93f3e17079ddff4c5927e3f1e14aea4016561c5995c862d9b3c8059de98d9f7ea756d5e26f3776662a653"; 408 } 409 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-x86_64/si/firefox-65.0b11.tar.bz2"; 410 locale = "si"; 411 arch = "linux-x86_64"; 412 - sha512 = "9d38e4a4560cfa5db1e1b62a1c65b5a167dc5615a6c27d76da6f2dd31b6249ae7c85fc034f9dee15fa1e65534fe2fa02e8d21aa94657588334385d7439ad0b6c"; 413 } 414 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-x86_64/sk/firefox-65.0b11.tar.bz2"; 415 locale = "sk"; 416 arch = "linux-x86_64"; 417 - sha512 = "58e0ff69a66cf6d44c20d90abb86a34dded1a127407977b0bda9199af0a2c7a13a5606523a13646881d3630e5b96fb241de2fa963d61c48781d7375d741a413f"; 418 } 419 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-x86_64/sl/firefox-65.0b11.tar.bz2"; 420 locale = "sl"; 421 arch = "linux-x86_64"; 422 - sha512 = "563574683ac6e8f03eecf08c66f6e0a6807777836efb287ab80f874692e8e9ee33cb5518aa237caa7820ee0a7d8d8688389290852bc38ed2468e67d585ad6b70"; 423 } 424 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-x86_64/son/firefox-65.0b11.tar.bz2"; 425 locale = "son"; 426 arch = "linux-x86_64"; 427 - sha512 = "306aea41858cf38b631f55d63db1a8018f08035e388838f247e30b690bd133dc77bab472433be61c840bea1083608e6babd051ae782929f6ed43d0fd3b576c9a"; 428 } 429 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-x86_64/sq/firefox-65.0b11.tar.bz2"; 430 locale = "sq"; 431 arch = "linux-x86_64"; 432 - sha512 = "192bdfb30cf74a1d79ac3c5f09821318c7f19ffd814a120e41304d8c02718567c166126fbea6cc3b4f240e44faf9117d011a8547c57461bb4b0d6bbc67b261b2"; 433 } 434 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-x86_64/sr/firefox-65.0b11.tar.bz2"; 435 locale = "sr"; 436 arch = "linux-x86_64"; 437 - sha512 = "c1fc6489a997a2e12557f4ce82458f4b94c6145ec2f1cc35ea18e0bbf2e7abbf34d85df2c6a62e5b329bcebfa9ae7ab3fa09a5bbddfa47998d37ae7f43092044"; 438 } 439 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-x86_64/sv-SE/firefox-65.0b11.tar.bz2"; 440 locale = "sv-SE"; 441 arch = "linux-x86_64"; 442 - sha512 = "b60d397223254acb6c49c6f6d8c653ad694dfb20c64a618a5bcbbc2f8742b0def304187aa8c4b489afba6999533012464f36432967be2d1da4dc5a44196cfb42"; 443 } 444 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-x86_64/ta/firefox-65.0b11.tar.bz2"; 445 locale = "ta"; 446 arch = "linux-x86_64"; 447 - sha512 = "fbb65300b724da4f26e6e6c60faa9a3c5d457349775abaf6461df41b5ce5d992636165e98d4df5ae2e93ac6cd2b40ab996af099e2bb1ad7d06f38708541dee70"; 448 } 449 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-x86_64/te/firefox-65.0b11.tar.bz2"; 450 locale = "te"; 451 arch = "linux-x86_64"; 452 - sha512 = "aafb476e66ebca88ba43a0d548933e46e573d2db47721201217d7e7d86b223f20fec4a07b748a2aafba1f72e3811b165ef8491fb2352895cf98eed54ed3b6ca1"; 453 } 454 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-x86_64/th/firefox-65.0b11.tar.bz2"; 455 locale = "th"; 456 arch = "linux-x86_64"; 457 - sha512 = "36c916505835ac613b89a7f53e0df80cf382f478f382afb6e7ce1c3f615cd1df2094bf8c3566adb3835baf20e727402435f5292e3c7055ee84e8e666aaba458f"; 458 } 459 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-x86_64/tr/firefox-65.0b11.tar.bz2"; 460 locale = "tr"; 461 arch = "linux-x86_64"; 462 - sha512 = "b7ac73ba96e7dfd5f5ba5ca2a36461f21d3823e121992eccc95860abf8f80201e1b2791b4b774b0a79beaf2e98fba2d1f917a9ecedbc02d1de87a1d5b205db97"; 463 } 464 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-x86_64/uk/firefox-65.0b11.tar.bz2"; 465 locale = "uk"; 466 arch = "linux-x86_64"; 467 - sha512 = "3887c76a2ab02e593abf97b1588af0554a4f3e63e607d278fd57020fb7ec4625db6aa32e293e149674059782dd1c128118dc98705366ee66116df73abb27507e"; 468 } 469 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-x86_64/ur/firefox-65.0b11.tar.bz2"; 470 locale = "ur"; 471 arch = "linux-x86_64"; 472 - sha512 = "c7a9fd638829580fc504534b4371f845ddaac474ff35ff3046da4ca6e82512ad72ca68bfb27d2a64aed90f2f8e4e063fe6e9c92cf5c60afd63bde56c5ee5df07"; 473 } 474 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-x86_64/uz/firefox-65.0b11.tar.bz2"; 475 locale = "uz"; 476 arch = "linux-x86_64"; 477 - sha512 = "9add80982727ff19c521c6705a0ed674db2b7a2b9fd34c414f68cc3cc0221e83c5fbedadaa2ec377a606b4274ef77dd749df8d530df13b1c8c588388b8b54612"; 478 } 479 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-x86_64/vi/firefox-65.0b11.tar.bz2"; 480 locale = "vi"; 481 arch = "linux-x86_64"; 482 - sha512 = "3ef7260916655cc7420ac1cc59ce377a6683a3276695a8f60871c1803df4d84100e8d7f7ee4ea8c986fa6559ff08dacd62b65ded3c333dbb7a4f878ca5f04c78"; 483 } 484 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-x86_64/xh/firefox-65.0b11.tar.bz2"; 485 locale = "xh"; 486 arch = "linux-x86_64"; 487 - sha512 = "627b8be523d83c50a064b52b25afd54e9bbe375a1dfe16a0601e068e3b35febdea9b973cea732b5aaf5ae0bb1ec61bda597bff88f238cc70ff026f1bc99e466d"; 488 } 489 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-x86_64/zh-CN/firefox-65.0b11.tar.bz2"; 490 locale = "zh-CN"; 491 arch = "linux-x86_64"; 492 - sha512 = "8de2cdb18e93560077edb151203ed4cdcf6cf931dfbe5cafaf54b0849d49f6eb4f9e6006e052a863f9cc37ced070ee8824b2e8df12115264c4432c4b5aacc95e"; 493 } 494 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-x86_64/zh-TW/firefox-65.0b11.tar.bz2"; 495 locale = "zh-TW"; 496 arch = "linux-x86_64"; 497 - sha512 = "6b9fe2ded71c806f3de1679310dab0215b9301ca5de88e3fad9478e1dbf5d154cdba4c413afbecdf74c7fbac91a305eb15627495ffa153749f170e4e73e128b8"; 498 } 499 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-i686/ach/firefox-65.0b11.tar.bz2"; 500 locale = "ach"; 501 arch = "linux-i686"; 502 - sha512 = "78f713c99add748bd84c8d0a14b0bd96f7b09be99d779d3a0a76e2da3cf69bfd16e2a6743cb8e9fec5fcda82346d3a3949ccb6ae25b4611460b221c4d2a62747"; 503 } 504 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-i686/af/firefox-65.0b11.tar.bz2"; 505 locale = "af"; 506 arch = "linux-i686"; 507 - sha512 = "237af5893ca5fcd6492b32a762b644c8e021e1af9cc91039cb92bcd17f6ea471d90fdc3b824e1515020e6cccf3ee34750fd4e3442d6f6d00495cd51208f670ab"; 508 } 509 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-i686/an/firefox-65.0b11.tar.bz2"; 510 locale = "an"; 511 arch = "linux-i686"; 512 - sha512 = "9a231c53b3f997fe6bbdf2276bae9b74c0c80fded7edcd3290153e1818e59ea8c2aa65cc708e887d7e5e633e4e819748e1b6a5c8509c387a26d903d5713eb151"; 513 } 514 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-i686/ar/firefox-65.0b11.tar.bz2"; 515 locale = "ar"; 516 arch = "linux-i686"; 517 - sha512 = "a30eedd5d8f287922cb917358b995357eb2ec41c2b4c0dad1a3e8d7e41193af934a050d5c204155f83b5405d4312e83d903b5d28a65ed81bab8448b324c4cdab"; 518 } 519 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-i686/as/firefox-65.0b11.tar.bz2"; 520 locale = "as"; 521 arch = "linux-i686"; 522 - sha512 = "2880c9e7f15ea2eff5f826df852a26f9a01fc6f21b9859bcd462e2d1ed1ca6d6e2856bb1523f895f8257d096fe537ed3b7e0a7c80a0a832013fcf5b380a657e9"; 523 } 524 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-i686/ast/firefox-65.0b11.tar.bz2"; 525 locale = "ast"; 526 arch = "linux-i686"; 527 - sha512 = "a3bafb194e726dbdf159583d256838defebd2c95a46d6799e6c26cd7385f065afd558f1c7adaf0ad601578ac645cf7882073af094bd76e03355d12ce53c08933"; 528 } 529 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-i686/az/firefox-65.0b11.tar.bz2"; 530 locale = "az"; 531 arch = "linux-i686"; 532 - sha512 = "c7d7bf79c6832a824699ed838a72ca80befe4372998d5cce5252948f5997d8dd6d52f27734ff0aa62b5ae014eb14c793083c854a99574a9018491aa89bc210eb"; 533 } 534 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-i686/be/firefox-65.0b11.tar.bz2"; 535 locale = "be"; 536 arch = "linux-i686"; 537 - sha512 = "c6f46d38d0fc355c36bfbda2b76441ace3be056be05aeb56c44e27dc431a56554e8236b62aae1c276ff7f20e154205633fdb43f1856695f5144cb480cb96e1b5"; 538 } 539 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-i686/bg/firefox-65.0b11.tar.bz2"; 540 locale = "bg"; 541 arch = "linux-i686"; 542 - sha512 = "29b682cb788aa445fde8a151e88bbbde8f7231d639a1cb4d6d3ecd901bf53b1b3fb28325834013d7e4f6a290f2ea6e5f6bbd4d3f083ef794c39bc49f81794076"; 543 } 544 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-i686/bn-BD/firefox-65.0b11.tar.bz2"; 545 locale = "bn-BD"; 546 arch = "linux-i686"; 547 - sha512 = "47d7933441044b292299b4412cd021bc097f65558417605759867b221a52aeb903739d0d430969a58f9d6dbe77c18099596c5f03128fac525bd5244101a1e556"; 548 } 549 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-i686/bn-IN/firefox-65.0b11.tar.bz2"; 550 locale = "bn-IN"; 551 arch = "linux-i686"; 552 - sha512 = "b2dce403ad791c02ba2270a7f5e5c70138c65a50fb438ed5d8e612dde3aece73105429b4f0aa299119938c0d6efca5b939f3a1eb7dcb8602726cb4732ff55497"; 553 } 554 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-i686/br/firefox-65.0b11.tar.bz2"; 555 locale = "br"; 556 arch = "linux-i686"; 557 - sha512 = "6754d6b2cda0cad1515f55f868841209cb1e68954ba3885e6a8d3524727ce74e3a89552c9fd515395b526a65019a5f0e3bbc654eaa0bcd4c3bbe6ebb32d116e3"; 558 } 559 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-i686/bs/firefox-65.0b11.tar.bz2"; 560 locale = "bs"; 561 arch = "linux-i686"; 562 - sha512 = "cf8d92bc6efdbab16a1d35f6c221331f838661dd24b755fe966cf327d197ea849a5184ad7632aca059c590b2fab8d7fb09fb0d8b0364349be15173cdf61d3179"; 563 } 564 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-i686/ca/firefox-65.0b11.tar.bz2"; 565 locale = "ca"; 566 arch = "linux-i686"; 567 - sha512 = "30098d1c9cb0db3f1c6650b554a83fa4f9a66de241225b28e1fb1851f48ceddbad680d36d72c136bce2f6c76fda324affa82c5f097031c3bb7e4d43a563526eb"; 568 } 569 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-i686/cak/firefox-65.0b11.tar.bz2"; 570 locale = "cak"; 571 arch = "linux-i686"; 572 - sha512 = "f1a46fc16da3654845403eea2be4b56c05528faa7ebdf8ab4b2503726a11db108bc78264414e8a4cb47999a67af76d84c6e27c976c3f5af0e844bc7cc468f77c"; 573 } 574 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-i686/cs/firefox-65.0b11.tar.bz2"; 575 locale = "cs"; 576 arch = "linux-i686"; 577 - sha512 = "57439c08d0ab48db30686c6d7aca889f9886aead1ef3b9962e6681416fc255a87699e716f729700dbb9290b1669bc84d22d935faa1561e45bbdcd956bebcae54"; 578 } 579 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-i686/cy/firefox-65.0b11.tar.bz2"; 580 locale = "cy"; 581 arch = "linux-i686"; 582 - sha512 = "cdaa124caca3e8ed71b17c975589aa9388e97fe9efe28ab14beb6e64756d0ea14ebd85d74c939d08344db153db7363884e592e7c2d7d39310a124286de65cf5b"; 583 } 584 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-i686/da/firefox-65.0b11.tar.bz2"; 585 locale = "da"; 586 arch = "linux-i686"; 587 - sha512 = "e72b87450ac5f776fea1ed778bcc8ac97a9f989bc9dc268e4d57597c2f4cdc66ca2a3b1fa80c8839884427b1c3ce01231487c284d263949d866baeaece308952"; 588 } 589 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-i686/de/firefox-65.0b11.tar.bz2"; 590 locale = "de"; 591 arch = "linux-i686"; 592 - sha512 = "8e6465a46cfb98e8f9958a237dd24669bdb4446a3835b94940f5590abc264a99bd0a7aaab2cca0fcba983fc57b921e43e726be4651d08fb9cf3fb9c99a5a5172"; 593 } 594 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-i686/dsb/firefox-65.0b11.tar.bz2"; 595 locale = "dsb"; 596 arch = "linux-i686"; 597 - sha512 = "a414d26edd15886b9754e094d158ab40b6a3f9103e0e0d86ad959d2317c2fa4e3716ba789e83879a46b93cf6b26f430ca9aef326d5ffa421be9200d7fed47e66"; 598 } 599 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-i686/el/firefox-65.0b11.tar.bz2"; 600 locale = "el"; 601 arch = "linux-i686"; 602 - sha512 = "4e0165be7138d787c6aa0b02c3ceb3dd64656f511cf3e7747f45b90b6a4bace0cbce6fac2d4c1245cfa36e4f16aa4e825090d15771bcc2453dbfe70ae570737d"; 603 } 604 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-i686/en-CA/firefox-65.0b11.tar.bz2"; 605 locale = "en-CA"; 606 arch = "linux-i686"; 607 - sha512 = "dafc72f82f25a1bf3b036511f8bd0e726a72505969aaa1c2050c5650b6d9e812a264f73d399d53a1e6da5bffe95e1ad7ac4ecdb5972630cfa88125c52632ce62"; 608 } 609 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-i686/en-GB/firefox-65.0b11.tar.bz2"; 610 locale = "en-GB"; 611 arch = "linux-i686"; 612 - sha512 = "fc2d3a12f17642d56eed0f8de36d4d8dbecabdff8c89ac03f846269aeb07482f952d26e08b01c2698363a651198d9b3a6e79e34309b832661794c0073dcf2307"; 613 } 614 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-i686/en-US/firefox-65.0b11.tar.bz2"; 615 locale = "en-US"; 616 arch = "linux-i686"; 617 - sha512 = "64209411f4c7c0daf5e4f35e7ad72efb459124679b3716c9798006c896214c0d78c9e195903952d8a94fd0891e7c501291900cfc424199ad0e1216de1be32f89"; 618 } 619 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-i686/en-ZA/firefox-65.0b11.tar.bz2"; 620 locale = "en-ZA"; 621 arch = "linux-i686"; 622 - sha512 = "f585c099ba8aa8eb95302ea559b6a92061522f9c4c83ee83046a6f5f8b553073aae8ee0c71cc5cc4e47c648618b7245c85660990b1d843284bee08d8d7adb46f"; 623 } 624 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-i686/eo/firefox-65.0b11.tar.bz2"; 625 locale = "eo"; 626 arch = "linux-i686"; 627 - sha512 = "19d38f02142e10bd2d910caece5aebe07f12ba66e05f7b72802c8f7e4208807083edd1006715d01b07e6ad70bcf21abe8df0cbec7c33df6903097166d3729b69"; 628 } 629 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-i686/es-AR/firefox-65.0b11.tar.bz2"; 630 locale = "es-AR"; 631 arch = "linux-i686"; 632 - sha512 = "b0c341920f78ed81675b3f0588e33b8906d153c5dda6dc74ec2aad7ce45f33172b0c61d58064933c2cab5f033175b1e7dfdb03e305822e4f35b78b150bb1d871"; 633 } 634 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-i686/es-CL/firefox-65.0b11.tar.bz2"; 635 locale = "es-CL"; 636 arch = "linux-i686"; 637 - sha512 = "1201b0c29ae2ebcd3894a77339b44a9fd1e3d226bc54e13b72019fe03519df82538fe1b800634432689afc4d5718c7b48f521c359b04d07004b974d36c6497c1"; 638 } 639 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-i686/es-ES/firefox-65.0b11.tar.bz2"; 640 locale = "es-ES"; 641 arch = "linux-i686"; 642 - sha512 = "dd3a6b3a3591340e54528ed88ad1941bc217c8d9d105038c24e4ba2448fc55daa910170b91ba32a002e0902c36e81cd474738711e875e8131820777b34c33491"; 643 } 644 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-i686/es-MX/firefox-65.0b11.tar.bz2"; 645 locale = "es-MX"; 646 arch = "linux-i686"; 647 - sha512 = "d8ff73c99b6108824f1da0c542d857f348f0f9ffcb74ea49f1239e97c28eb90eb5f8b0fdc7bad52b8b6b6f9e565a3cd692ebc335da51bf341710b3aa4b8a037a"; 648 } 649 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-i686/et/firefox-65.0b11.tar.bz2"; 650 locale = "et"; 651 arch = "linux-i686"; 652 - sha512 = "8dbb011529c6d61e6eddf6a2ed19ace7df83449689edda753c5cae5096cfd4597ae4b6f70eabae6645ca849626a4138e3d58e8b33dd63d8b2cdd3c6a81123c2b"; 653 } 654 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-i686/eu/firefox-65.0b11.tar.bz2"; 655 locale = "eu"; 656 arch = "linux-i686"; 657 - sha512 = "759b591f4d192ae6e606416c52f82747fc7141308ef6584e73e121e0df8dda372da5dba2ae628cb301b5d2223f66c9b0db875b4cce73185e852ebb79b20f40bb"; 658 } 659 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-i686/fa/firefox-65.0b11.tar.bz2"; 660 locale = "fa"; 661 arch = "linux-i686"; 662 - sha512 = "b1a120e279aec69040ec7d5bcf613772cf429ada4ac735cd3ce17bebd9ee8f8c29f6b628ba670b19866c85d6ac65089054242ddd715ad6e9b0040eee55284bc4"; 663 } 664 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-i686/ff/firefox-65.0b11.tar.bz2"; 665 locale = "ff"; 666 arch = "linux-i686"; 667 - sha512 = "12dcca4c31577d90f9627cc38177f5c543da2b93fc9334b4dfb98cadfdb3ba4ccdce6507b6639d38c61fc8d77e25004c8ce201b450f84e54f8a26e733ea182b2"; 668 } 669 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-i686/fi/firefox-65.0b11.tar.bz2"; 670 locale = "fi"; 671 arch = "linux-i686"; 672 - sha512 = "68b7af07028a3793efaef80cf2d5c7dbf991b4a2203776a5ac0c2bba3ea3417f0f8b9444320f565c9ee7a1a0984b114c4ead933b7bcf0ac387966fe2b8c1e3e4"; 673 } 674 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-i686/fr/firefox-65.0b11.tar.bz2"; 675 locale = "fr"; 676 arch = "linux-i686"; 677 - sha512 = "65e89affb5720201ab292fbd433f131de63d61270a0bf447817e921ffdaa58becf10c2d3b0047b99319987e1ef7e56105b7e3b00f8fd4854fb0fe16c30018262"; 678 } 679 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-i686/fy-NL/firefox-65.0b11.tar.bz2"; 680 locale = "fy-NL"; 681 arch = "linux-i686"; 682 - sha512 = "5c2b4cea727cf1d1387aaacd47e9a032e85377c9d192919ee8203f38dd73f37eab39065caee18da15a2196e9c29d37350a0b623e917d77da9aca3de85e8df7b8"; 683 } 684 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-i686/ga-IE/firefox-65.0b11.tar.bz2"; 685 locale = "ga-IE"; 686 arch = "linux-i686"; 687 - sha512 = "388bc3fb7ab5da2782b60db936874e12952238945d65170863874a2b38bfac048009e8343a7388b10f89d42ae3975a117874c29bce11938991ed8dfadce1c639"; 688 } 689 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-i686/gd/firefox-65.0b11.tar.bz2"; 690 locale = "gd"; 691 arch = "linux-i686"; 692 - sha512 = "39542653ec46e4bdd70a3db7eb69dcc46ed393a7e9ebeff6d7508722a629b1501376ff350b7f660a80be4fe9b0006d8afe356bd125219cc0710eb0b14fb19a17"; 693 } 694 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-i686/gl/firefox-65.0b11.tar.bz2"; 695 locale = "gl"; 696 arch = "linux-i686"; 697 - sha512 = "2a9a42a38396bee21753fb4e132f0953391208e25fb7b0b8daa2ce98bc2b30d7c079e0a8cb377e7460f2f318a9afe8a1deff591ed3475e86d3b0476addbd6503"; 698 } 699 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-i686/gn/firefox-65.0b11.tar.bz2"; 700 locale = "gn"; 701 arch = "linux-i686"; 702 - sha512 = "03a00a5699993139bade633fe4bdd3c8f1ac14c8903b786bc2f6bcb600d17c1892f55c3f85996b47d2584c9fad674b39e4812589332f6b3977cf92038da123f6"; 703 } 704 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-i686/gu-IN/firefox-65.0b11.tar.bz2"; 705 locale = "gu-IN"; 706 arch = "linux-i686"; 707 - sha512 = "c901b5a6f284a310378f1c027f61422b2c757df0be2f93cd238a42631764c8bad9806787c61d6b826b3da37b731bbd9390547ed912c9b52b539ebb9409bcb1e1"; 708 } 709 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-i686/he/firefox-65.0b11.tar.bz2"; 710 locale = "he"; 711 arch = "linux-i686"; 712 - sha512 = "cf421d25daa50f00453d1f96a1954694dbf2605f0f361c823ee954b3b6377feff2ef8b62570e6eea2bce15883222613fa2fde865efc1cabdf7cbd19e37fcabc7"; 713 } 714 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-i686/hi-IN/firefox-65.0b11.tar.bz2"; 715 locale = "hi-IN"; 716 arch = "linux-i686"; 717 - sha512 = "62c3a098e7b67942a748faabb9710b6e27b1fb1bb067a254907b48ee986c0fdbd0f2ce0d6808a7ca628b729992e634d25dcdfb6c1a5dc5dc96de073f38809aa6"; 718 } 719 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-i686/hr/firefox-65.0b11.tar.bz2"; 720 locale = "hr"; 721 arch = "linux-i686"; 722 - sha512 = "96c6e384b6cbea934b23719436af1145d31667e02b6dcc3069b34bc133397335d34e2712860edeeb00a32924c087464f472288b23b6180e9c659b89d00d2efe9"; 723 } 724 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-i686/hsb/firefox-65.0b11.tar.bz2"; 725 locale = "hsb"; 726 arch = "linux-i686"; 727 - sha512 = "4ec6f783f6208898df58261de1de91cd9bce6833c34245cfd63a61b9558c8d3adc504d83639cee02eba9e3ba43894a5ad17e0fc65e5059bfbaf42b6aa79fc789"; 728 } 729 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-i686/hu/firefox-65.0b11.tar.bz2"; 730 locale = "hu"; 731 arch = "linux-i686"; 732 - sha512 = "45223b5ad376800c6b3412738cabd2f9dc05199eadb719d6dab3d79e9af58ecfee468f6ee22a96a35d833302506ef553411ef1c5f78a355f32ec07f0afb6a2eb"; 733 } 734 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-i686/hy-AM/firefox-65.0b11.tar.bz2"; 735 locale = "hy-AM"; 736 arch = "linux-i686"; 737 - sha512 = "ad7989b3b4c45aa11d91baa04c1eae6177f8e480f416060c8c76e2fcff460799da474bd3c9eafae43faa38dc962a43d80fd9fef9415083f112cafdf3adb46142"; 738 } 739 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-i686/ia/firefox-65.0b11.tar.bz2"; 740 locale = "ia"; 741 arch = "linux-i686"; 742 - sha512 = "638c5c8679e3d6c3634586aa4e066180c6bf6164e37192084137c34cec50a5fab6291d65ee10b2f40346f3f3e3574fedcf421424ed94c26f928eb019e0af60ce"; 743 } 744 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-i686/id/firefox-65.0b11.tar.bz2"; 745 locale = "id"; 746 arch = "linux-i686"; 747 - sha512 = "a37b97b334b9aea8ec57dba642ee40e14a07d8d711234b847c45190a59fadbcab7298de6777d62c5b1289da4294526898445e2ed992e8fc1355c686279883d5d"; 748 } 749 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-i686/is/firefox-65.0b11.tar.bz2"; 750 locale = "is"; 751 arch = "linux-i686"; 752 - sha512 = "e3a3beeb02c72b8bdd782d8ee5fde2de4738eba9893e9f3f32f1239d6c0b03912beb2cb67b04782b48394743de3f91b6a1facfab4a1f2dd6d9e24f0e81140017"; 753 } 754 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-i686/it/firefox-65.0b11.tar.bz2"; 755 locale = "it"; 756 arch = "linux-i686"; 757 - sha512 = "7e4dac20f03a230251d66434d2973329bf8a23ab718ab843484261d74629536f611a2ec8831dd11c25c6ee0a4673e117809b22cf4c880cd2eb647430aae2d912"; 758 } 759 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-i686/ja/firefox-65.0b11.tar.bz2"; 760 locale = "ja"; 761 arch = "linux-i686"; 762 - sha512 = "0840cdf7c096773a35aae2b466d7d26681f45d65a4b93ee54fa4eb5a286dad454594f7b016b52ec962e1c4b549168f4f71648eba285686c19cb290d65a70904e"; 763 } 764 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-i686/ka/firefox-65.0b11.tar.bz2"; 765 locale = "ka"; 766 arch = "linux-i686"; 767 - sha512 = "aba7b2f29eeb152fa0f8c51f26d9927cbef102e259f93f15d8122334ad5c05d44a72ba5130677aac4a55a928d4f748408190bc7b8405119d622b3fb05e6ba1e5"; 768 } 769 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-i686/kab/firefox-65.0b11.tar.bz2"; 770 locale = "kab"; 771 arch = "linux-i686"; 772 - sha512 = "585e79777a7967273e20efed2c45fc9225f8e1bbb66eb75cebbbf3aa2bf55d1a25a9559b07d96090d424532676c93eb9d68ef2dd139b0e1eaffda7e2b17c8cbe"; 773 } 774 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-i686/kk/firefox-65.0b11.tar.bz2"; 775 locale = "kk"; 776 arch = "linux-i686"; 777 - sha512 = "3399723e0e15a5909049ae916b6e3125443436cbc1c279dc3e213e6ee7d1e81af86d85c16eef4bda68c764dba06979628e3905a29a8bff7efa4a96530c5c28ed"; 778 } 779 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-i686/km/firefox-65.0b11.tar.bz2"; 780 locale = "km"; 781 arch = "linux-i686"; 782 - sha512 = "79362eff83fc6c70134fbd3a90b2231a467f3ac8f8f3e1f29630843ded79a7785ae3c786771282c3c0e3153477cbd8a8315a084abac2ab273ed290d75c1421cc"; 783 } 784 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-i686/kn/firefox-65.0b11.tar.bz2"; 785 locale = "kn"; 786 arch = "linux-i686"; 787 - sha512 = "6ea47f1c58f2f2c1af2638210f19dbe7de8ee9ff9ff81b06c0b681c6330a6e2075accc70425250b78a561858ed15cfd7b2fef7dfce2c49b655b17bbdb5282098"; 788 } 789 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-i686/ko/firefox-65.0b11.tar.bz2"; 790 locale = "ko"; 791 arch = "linux-i686"; 792 - sha512 = "75092a19261c2b77ea8208c352e38ee67be0e65bb3cf6f8331d7e6b164d28c709081f1b72e9719a32e72b96370f3924ea72b8e828c874db8fea6942918a143f1"; 793 } 794 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-i686/lij/firefox-65.0b11.tar.bz2"; 795 locale = "lij"; 796 arch = "linux-i686"; 797 - sha512 = "6b591dbc6bdd21a577cb186d15cd2fa0cb1a652c7ee8c1959fc9a6ab63d68289a592642b4fa6148f5c5de18e91591a7049c242857b3993e02a0d0aca54f50f7e"; 798 } 799 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-i686/lt/firefox-65.0b11.tar.bz2"; 800 locale = "lt"; 801 arch = "linux-i686"; 802 - sha512 = "44fda420ad71f5adcc7278374af6e14d848d71579a897bd4a11ba4d5e6829e497038b00ae98e8fa9f17d2d6b8fe48a8590eb5a0459bdca02fa9b6b5b407a82f0"; 803 } 804 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-i686/lv/firefox-65.0b11.tar.bz2"; 805 locale = "lv"; 806 arch = "linux-i686"; 807 - sha512 = "2ec07152fd1866016f4cdca0f17b8671e127f8ce0b1ddb64b9e11533e20a56c83ebe526af17e87aa7cec1cce7b174110c13d079497042818345c06fc7b6126ec"; 808 } 809 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-i686/mai/firefox-65.0b11.tar.bz2"; 810 locale = "mai"; 811 arch = "linux-i686"; 812 - sha512 = "82eff8bb4cc5096a363f8140ee1eefd660ea5e1b85f57ef6da4244261188537e2e2bee2f05f9fce1ce7fa7157427b370d9f9dc5a6ce731227fd0063ed24db9d3"; 813 } 814 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-i686/mk/firefox-65.0b11.tar.bz2"; 815 locale = "mk"; 816 arch = "linux-i686"; 817 - sha512 = "43aaee642a698945388df4b679164dad1713c87aadfc56b9b588fbbe112ba90ea0bb18f9893baa9bd6f4a41e8f1bc2a84023b5085eb891150da1e4b7285214fe"; 818 } 819 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-i686/ml/firefox-65.0b11.tar.bz2"; 820 locale = "ml"; 821 arch = "linux-i686"; 822 - sha512 = "5e41900c63adcfebfcee00d04ba1b6a57c757982c9b4ca35bb44a2f3523630bc1f4a0b3e7f715dc571d2887ad0f7cdcafd594103bc26cb122b32df7e700b746f"; 823 } 824 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-i686/mr/firefox-65.0b11.tar.bz2"; 825 locale = "mr"; 826 arch = "linux-i686"; 827 - sha512 = "212dfe128d63d47fd2a7b4526b9b7df7e08c20e2cbbbc1cdfa2857c78985aad36e1a32cc98d54e33ffc9082ba8f9dd986e8ede959a799d140afdc4d3e6e20e74"; 828 } 829 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-i686/ms/firefox-65.0b11.tar.bz2"; 830 locale = "ms"; 831 arch = "linux-i686"; 832 - sha512 = "e0fb4bbabac7cde6df5afb3dd1dd9da107aa3136b79369ded3749f4211b2184c9933f0d62840f0dc1d6ef49ab1a4828ff8927753c57155cee6f8ba566a1a4153"; 833 } 834 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-i686/my/firefox-65.0b11.tar.bz2"; 835 locale = "my"; 836 arch = "linux-i686"; 837 - sha512 = "03d471aa448dffd0cd07984f90d737fd575901562d1fbe4e0a7e5d0b71c2ce6716f62b6ae979ee739613a1ec3c3b5ab4b85390bac16a2abfffa553077e785f20"; 838 } 839 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-i686/nb-NO/firefox-65.0b11.tar.bz2"; 840 locale = "nb-NO"; 841 arch = "linux-i686"; 842 - sha512 = "5a2ffdb04869975fbe4252f92cc746cc8136d13720d88e0e7f1ff530765b92aab9b67672e450505f0abb9f2335643ddafe2087c98132e88bec198ab729a3816c"; 843 } 844 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-i686/ne-NP/firefox-65.0b11.tar.bz2"; 845 locale = "ne-NP"; 846 arch = "linux-i686"; 847 - sha512 = "5714a7a2d6d706833158c04254b564211ac2d729746ba483613b86728e3632480b28abacd4683abe56b3ab954a6b303ea4f8247b025a1cdfb962bf0c18664e54"; 848 } 849 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-i686/nl/firefox-65.0b11.tar.bz2"; 850 locale = "nl"; 851 arch = "linux-i686"; 852 - sha512 = "71fbea4fd306eb6e1a880f2e7e5aa4cd273f3ffad60e6b315fcc48a6455e218ba737ff2b6e39ea94d6b3ce779a71bf79a433f9f4165f760ac93df997b2ac1ef9"; 853 } 854 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-i686/nn-NO/firefox-65.0b11.tar.bz2"; 855 locale = "nn-NO"; 856 arch = "linux-i686"; 857 - sha512 = "728f08bb9f423450e779a34250b581b58160b345b4033acfe832cce1f62cf0536c243d7931d0494b41e16c3a249d149336ff7308a5eb963b8ca0ea5fe09dc245"; 858 } 859 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-i686/oc/firefox-65.0b11.tar.bz2"; 860 locale = "oc"; 861 arch = "linux-i686"; 862 - sha512 = "5be2fff7539861954b2ccf48f079b211e0b9bf68c58ae173968e96e12ed63ad8eb4f82a524bdda6c5c7a173dd9c580f3f56d8ea1d3d475e97525232ccacefcde"; 863 } 864 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-i686/or/firefox-65.0b11.tar.bz2"; 865 locale = "or"; 866 arch = "linux-i686"; 867 - sha512 = "863b0ab7e80c81c347ed87caaf72f2997434e94e42298bae7ad84c7bdfddf8f9f5a60781d4985719a6d235dd9e5017cca4541d06c29a0679ed933c26596a001a"; 868 } 869 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-i686/pa-IN/firefox-65.0b11.tar.bz2"; 870 locale = "pa-IN"; 871 arch = "linux-i686"; 872 - sha512 = "303a4802fd7ca7a0ec86dc9fb3e9ad3ff55a6a011dd6a0bdb2989e24869cb7543b354dde749f592611b5a9f438648c793122e4cdd109db6eb7908b7a98eae2de"; 873 } 874 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-i686/pl/firefox-65.0b11.tar.bz2"; 875 locale = "pl"; 876 arch = "linux-i686"; 877 - sha512 = "ae69ab89e4f23e99e1b658ca17b40670f91331946888104426d7c01439e2e19e55177f1b7ec6074a874f8fa7e86dd8ff46401ebe3d9e7c079011c2748c366b3e"; 878 } 879 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-i686/pt-BR/firefox-65.0b11.tar.bz2"; 880 locale = "pt-BR"; 881 arch = "linux-i686"; 882 - sha512 = "1296cbe67089edde1bb8b67bc1aa384cbcec1fee33d9929ef8bbf37972483ff0c789726d1ebfbc9b4efabf798f713848c206445930cfe6ab9d079b17a630e67d"; 883 } 884 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-i686/pt-PT/firefox-65.0b11.tar.bz2"; 885 locale = "pt-PT"; 886 arch = "linux-i686"; 887 - sha512 = "fea6f4fda691f6f2276dd894703de3978260ba2929b6cd67217fb3b99404622ddc09e2fa8cf1c931c8c5abf965b8a7c014dcca668e1fd1ccadc592ab97178c4a"; 888 } 889 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-i686/rm/firefox-65.0b11.tar.bz2"; 890 locale = "rm"; 891 arch = "linux-i686"; 892 - sha512 = "7ddaafd8ec0e00b5a22a49d9553597b3e6bf5a0bb2b0b011bf07d18da8480d799327b9ed7a6ad2d31ff03478003719c35fdb068e35b47fa9395158d203bb998d"; 893 } 894 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-i686/ro/firefox-65.0b11.tar.bz2"; 895 locale = "ro"; 896 arch = "linux-i686"; 897 - sha512 = "38486ff9156384dd96bda6e0e902346e9944456aba535ce2689803a0d5579d2ad559768fa84fecdc583231771d1d3b1c9a1e8b62e9e1c29f116b8b5fa3a93723"; 898 } 899 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-i686/ru/firefox-65.0b11.tar.bz2"; 900 locale = "ru"; 901 arch = "linux-i686"; 902 - sha512 = "ad6eb93a80aef56dc916770c3eadb105790804ce23bc9cd8cfcafc4b935861db231b9121e5b65d7cbb45b2d33b37e52ebe756d8920fc6ce9baf55c264a127128"; 903 } 904 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-i686/si/firefox-65.0b11.tar.bz2"; 905 locale = "si"; 906 arch = "linux-i686"; 907 - sha512 = "4b8a97584cbbc875b3b1c8814e2823b5aec9ceec5ca72da48b470287b6d2092eaf7f74d97b9a32aaea056ca28401148306b566fe9643cc349bfdeaea6bec1cfc"; 908 } 909 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-i686/sk/firefox-65.0b11.tar.bz2"; 910 locale = "sk"; 911 arch = "linux-i686"; 912 - sha512 = "661f07f750c6ff38702459ec9e87ef69183afc09f595ab624f4202aa4a5fd6f20054d8d4bcf0b9245068e0d3bc92da5bba4d21f10f6d24e1ccfe29fda0f0c5d0"; 913 } 914 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-i686/sl/firefox-65.0b11.tar.bz2"; 915 locale = "sl"; 916 arch = "linux-i686"; 917 - sha512 = "91b441e3b53878b2844a06b304d54d6557b3b29a93dc416c17b611e523afb12a105cfb5b03f6ed2a7fab427b1cf551d822c9d2fbd9c014a92457e249c18d3090"; 918 } 919 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-i686/son/firefox-65.0b11.tar.bz2"; 920 locale = "son"; 921 arch = "linux-i686"; 922 - sha512 = "153f8c33b33d62067d8a95373aa69d1eb0ed672cb5d7d7cce2d2f4a519ca6a8052856a0c9b7a90e56ce90e56758529d5da5ee4f522d1786a5f885648795e01d4"; 923 } 924 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-i686/sq/firefox-65.0b11.tar.bz2"; 925 locale = "sq"; 926 arch = "linux-i686"; 927 - sha512 = "f7f42bedae456f8cf6669097febfdd69372efc4bdf96745a62d29bd6000d0ce75d8cd1872a9b0b445fc78c158f828b2caa8a7fd71b074148be501ed32efe3165"; 928 } 929 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-i686/sr/firefox-65.0b11.tar.bz2"; 930 locale = "sr"; 931 arch = "linux-i686"; 932 - sha512 = "238e53bc9f6c07a3e81712346c101fe62592eaf60004e12391498c459bf1ad21c0a3492b53db1d423d3693353f8ad21170d4060c9f3ed48941716faff9603ac6"; 933 } 934 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-i686/sv-SE/firefox-65.0b11.tar.bz2"; 935 locale = "sv-SE"; 936 arch = "linux-i686"; 937 - sha512 = "cc96a96cc442bf7d4f443b42c8d98551117b5813751e137e4f6ba4e18e94525ffd6650341362e83fa7a21d1e1c8f343c7e2ae447800c3527fee3a6523cbb5fdf"; 938 } 939 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-i686/ta/firefox-65.0b11.tar.bz2"; 940 locale = "ta"; 941 arch = "linux-i686"; 942 - sha512 = "f65887fa12935b866884305dd66067e0452cd0744c62576fe705e07153a48fecb8900c9b119e483be1709f169f86f90b920514baae5888b711f7bff6f9030478"; 943 } 944 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-i686/te/firefox-65.0b11.tar.bz2"; 945 locale = "te"; 946 arch = "linux-i686"; 947 - sha512 = "de5c5108cd94b4483f879067acb18b9983c2488e4eaaa3a86e90efd66e123af491efb62f6619af5135a4e9609775bddc62f25773810ad0bc78fcc8cd255ceb8b"; 948 } 949 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-i686/th/firefox-65.0b11.tar.bz2"; 950 locale = "th"; 951 arch = "linux-i686"; 952 - sha512 = "592e974fb6cc53e11e9019a62643d5c799abc6aba5637afbe433ade41facbc63819999f3678230e9ace705c4036447aa562c5538a116b6b23a302df6e2cab248"; 953 } 954 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-i686/tr/firefox-65.0b11.tar.bz2"; 955 locale = "tr"; 956 arch = "linux-i686"; 957 - sha512 = "60e7a794b41251ea44684f783554d8b049a977a0b9851090181a644b08e5f0dfa5549b67e38965f773641a7f78235280c2d8ed3b4a51736fc31b2157b70c7f58"; 958 } 959 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-i686/uk/firefox-65.0b11.tar.bz2"; 960 locale = "uk"; 961 arch = "linux-i686"; 962 - sha512 = "cdc6902486102d7d49ed428f9697ec7e6c7572869486beac421d111190609ec2814cfd4c801270c1bf37336138c8d66a382da044936993df01026a8c51e7f759"; 963 } 964 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-i686/ur/firefox-65.0b11.tar.bz2"; 965 locale = "ur"; 966 arch = "linux-i686"; 967 - sha512 = "c75c27655dc70266c6b77407fad9e293775f9168fbace62362acbc34dae3620cdcaad8c637347f14e25c25d725136f1571552b51562f41e704f9695dbb399f08"; 968 } 969 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-i686/uz/firefox-65.0b11.tar.bz2"; 970 locale = "uz"; 971 arch = "linux-i686"; 972 - sha512 = "de0ebf8c3f4c180e6bf5281570e0aea71061f45403ea90b65360966955481c7735654e889fb1597811567e032ee2607aae727e42e5c5cec8c947d395ed42b549"; 973 } 974 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-i686/vi/firefox-65.0b11.tar.bz2"; 975 locale = "vi"; 976 arch = "linux-i686"; 977 - sha512 = "5cc132674ed0b141709461a9d31a0390bbbed1c8f2be6b84dfaa43c6850006c472a92bc39276d98c36d017c59cffeb0a1d058afb116b0b853e0ac3f13e6341d7"; 978 } 979 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-i686/xh/firefox-65.0b11.tar.bz2"; 980 locale = "xh"; 981 arch = "linux-i686"; 982 - sha512 = "729b04fcfa54fa3675bed9ab3e5a5d0a0ece1a0986fbca53074ac3e450121863b7bf632b66280032b43f81a196a49bf7dbe433b14a01841d5a3fe155f73b531a"; 983 } 984 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-i686/zh-CN/firefox-65.0b11.tar.bz2"; 985 locale = "zh-CN"; 986 arch = "linux-i686"; 987 - sha512 = "178240975d8c4ba6ef8006cf50af6ab08973d83c1cdfda67ef757f3ec0e8694fbcdc0651dcbec2ceafd4335954645d0cb1c5f379b556660f91b1f025a8147c8a"; 988 } 989 - { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b11/linux-i686/zh-TW/firefox-65.0b11.tar.bz2"; 990 locale = "zh-TW"; 991 arch = "linux-i686"; 992 - sha512 = "9fa665acd6d0fe9ba0a2023d89e6159db240a1aa1622de766dafd5263879c2a9566bf425af4e9fd50e2d354bc68342f5c203b772c7f3bd5e3a1a807746840da3"; 993 } 994 ]; 995 }
··· 1 { 2 + version = "65.0b12"; 3 sources = [ 4 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-x86_64/ach/firefox-65.0b12.tar.bz2"; 5 locale = "ach"; 6 arch = "linux-x86_64"; 7 + sha512 = "aaca1aa4438ca606790b1852f0fe2c4bf1c735b93c63ce61484ff93cfbcd3920b10099179b0986ebc925671e6a9566bb814c2126188bdf7874baa6df70a501be"; 8 } 9 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-x86_64/af/firefox-65.0b12.tar.bz2"; 10 locale = "af"; 11 arch = "linux-x86_64"; 12 + sha512 = "5f5413975d34db95726c442ca493f04d9d0532e701f37c98d15e81daa7535a7c81685a7e5dbea9852895165be1b5b201998fc90477907583c2ca4a3f15e62dbd"; 13 } 14 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-x86_64/an/firefox-65.0b12.tar.bz2"; 15 locale = "an"; 16 arch = "linux-x86_64"; 17 + sha512 = "4c39b51ac1bbf9485d7e218baa2297853ed2fd742a4b311247949db8b3ec733545448173da0ca1f15dd91e46929d25bcdb0ae79a7cbaeffa2b656651c88ff805"; 18 } 19 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-x86_64/ar/firefox-65.0b12.tar.bz2"; 20 locale = "ar"; 21 arch = "linux-x86_64"; 22 + sha512 = "b61e63941a04e040c100b7fc2c7ab02283cdeaccf3f1f7fd65c631ea30e44f281bfd82a37669b37b86d9637871e5c712fc4a74d37b517a136cb5af2461fd1eb3"; 23 } 24 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-x86_64/as/firefox-65.0b12.tar.bz2"; 25 locale = "as"; 26 arch = "linux-x86_64"; 27 + sha512 = "61c4c9b6d31c546ffd2238e7502604f50199c28fd69803c92c6cc93f55f7db28fc31d6598b8bb16704ee17e74b2f68ee9f687805f1394b502b2eeb410d701ba3"; 28 } 29 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-x86_64/ast/firefox-65.0b12.tar.bz2"; 30 locale = "ast"; 31 arch = "linux-x86_64"; 32 + sha512 = "964d73fc59bd13c4c026ff3d404460a6a9e31a53d365c172548e60933143923500fa56482168cce6d5651d85adf40bbed074f13059577d28e2df35a20aed149d"; 33 } 34 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-x86_64/az/firefox-65.0b12.tar.bz2"; 35 locale = "az"; 36 arch = "linux-x86_64"; 37 + sha512 = "748445aa6f2c41562b8c0547a07c320bbb50638e91d6fed8325b29c0633492087200ee1dc60fdd2dfbd4729397234d3208127d97cf9d8893b58fb3612db75d19"; 38 } 39 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-x86_64/be/firefox-65.0b12.tar.bz2"; 40 locale = "be"; 41 arch = "linux-x86_64"; 42 + sha512 = "8ca527ef41fc373603f7ed9dc35b309b047828fac0a68151f5a99dd182cb33e76c6061e303b127bc8f680252ceca82ca47a08fc195241145175c348f0c6c370c"; 43 } 44 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-x86_64/bg/firefox-65.0b12.tar.bz2"; 45 locale = "bg"; 46 arch = "linux-x86_64"; 47 + sha512 = "0bd051045c5062b4e026a76a38d190fc823d662e11c437f223f9ca09c7d06715e9281255c6fbe697fe437c1dc9e203f5f6790b288baef3b65cd5de1825f8c7d9"; 48 } 49 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-x86_64/bn-BD/firefox-65.0b12.tar.bz2"; 50 locale = "bn-BD"; 51 arch = "linux-x86_64"; 52 + sha512 = "cba5c69324b5a126b3f4d4cefd27748e5bda5cbb979e3b20f22c8370a930d20b19adbd7170231597455eb388f8fc9a53353295d089b16e6c733cba556828db8a"; 53 } 54 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-x86_64/bn-IN/firefox-65.0b12.tar.bz2"; 55 locale = "bn-IN"; 56 arch = "linux-x86_64"; 57 + sha512 = "c9739b1d893299b0333321044275f8ba80a2a13e2c9a9ff4e35777ff27d3f32a88c94368ad75c3fdbc368ac873fe18eb635060c80b158266a77f144c77f0f037"; 58 } 59 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-x86_64/br/firefox-65.0b12.tar.bz2"; 60 locale = "br"; 61 arch = "linux-x86_64"; 62 + sha512 = "10c83f9a995d6a04339879f0f8d52be81c29804934db75ddb20c5efebdeaa26bccd7c823f7991dd842a23845cc829a2255e2a57807e21023f5aed1849836c065"; 63 } 64 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-x86_64/bs/firefox-65.0b12.tar.bz2"; 65 locale = "bs"; 66 arch = "linux-x86_64"; 67 + sha512 = "3f9d85c0238402d2076595d549d5a713280b957a0a1f9b27e6de39b60372bcdea7a21e1e700d10ba716cd72a971920494d3810c4392bb142f27937a331c77d02"; 68 } 69 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-x86_64/ca/firefox-65.0b12.tar.bz2"; 70 locale = "ca"; 71 arch = "linux-x86_64"; 72 + sha512 = "bb29b1d132def46fc01e8e7f850b63a36d3e089d24cbbfa8f5ee99ffb9d7823fca85963cbe583122f36fb74336b74750f13578fa900716b5b689c3e8d4a68506"; 73 } 74 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-x86_64/cak/firefox-65.0b12.tar.bz2"; 75 locale = "cak"; 76 arch = "linux-x86_64"; 77 + sha512 = "277870937a1b6b35404437e660e8e8f7006769838c935297af0b5ce511d790593cfd4b69c0a7498a02ccd8068d635a706ae95da72d0f0a7063358ee77ea2f41f"; 78 } 79 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-x86_64/cs/firefox-65.0b12.tar.bz2"; 80 locale = "cs"; 81 arch = "linux-x86_64"; 82 + sha512 = "6e3961d9df1c89109487c2ae98e2cde159bd6d9900b0c6110e24312970cb2dd3fe80a6352cd60bed1c5be837043bfb75bed238941686479dfa5cd7c65e6eceba"; 83 } 84 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-x86_64/cy/firefox-65.0b12.tar.bz2"; 85 locale = "cy"; 86 arch = "linux-x86_64"; 87 + sha512 = "a30dafb6b732412501dc3749a22874df74a814b542a7acb08024343e2b958b94a45814203032fd66f833ff499540a500ee2516c6b328407ffe4c40acc38b4e92"; 88 } 89 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-x86_64/da/firefox-65.0b12.tar.bz2"; 90 locale = "da"; 91 arch = "linux-x86_64"; 92 + sha512 = "211da6863445cec0743eeafd22d02d53bcfb71506e4dd7f8d7fe4c602b6d74c681f5d102985f0b6c8c2481aeb26a44370a1da29cdb5de66092819e86fd1e18c2"; 93 } 94 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-x86_64/de/firefox-65.0b12.tar.bz2"; 95 locale = "de"; 96 arch = "linux-x86_64"; 97 + sha512 = "f2df03fb7cd1d8c2b06ba77282f1fb35357faa57ffa19adb3930db0f8f10de032a7c790487b356fe0981e8e42449cbba5194d3efaeb4cb47fb32de5b7e6cf148"; 98 } 99 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-x86_64/dsb/firefox-65.0b12.tar.bz2"; 100 locale = "dsb"; 101 arch = "linux-x86_64"; 102 + sha512 = "c942f341c8dda696a774b025a7102e754ed3512bf352500cb84ad8914c0ac4349befa1d84b601a97d26cabc741bc81ef974a318be00ce489e7abc9c5f34f9c62"; 103 } 104 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-x86_64/el/firefox-65.0b12.tar.bz2"; 105 locale = "el"; 106 arch = "linux-x86_64"; 107 + sha512 = "ada7768a3b55aa214560e4c83585662d1278b5cf80175802c90b1a72f6b688a4d4e7ca84ea992c233ffc9aeedbf7ec8085d57172aeac5dcb4709cbd19d31b7ca"; 108 } 109 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-x86_64/en-CA/firefox-65.0b12.tar.bz2"; 110 locale = "en-CA"; 111 arch = "linux-x86_64"; 112 + sha512 = "a45cf77fcf00be065a4b6a260b5043e48c4304314fbaa45b561c3a5d400eb96d7d83449d9959a5f12dec8a6f1c4a8d7d0816c663e8399d068adaf4ff9c8997e5"; 113 } 114 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-x86_64/en-GB/firefox-65.0b12.tar.bz2"; 115 locale = "en-GB"; 116 arch = "linux-x86_64"; 117 + sha512 = "7366cd246897fdc7fd9707c6946936b2fa69347fd152a783390fe97ea83587f20edba28fb32c3abb1f28272f6a35856f041f659f2dade8f2d75c2fa56b08a54d"; 118 } 119 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-x86_64/en-US/firefox-65.0b12.tar.bz2"; 120 locale = "en-US"; 121 arch = "linux-x86_64"; 122 + sha512 = "66fd9ef2538bd4fbe35778fa967775731227eaa490aa14827cba8126e2d4d641883e7d1404772e0eb15ef15eb6c8439f8c677fb10d442494ef70b5d6b80ac36c"; 123 } 124 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-x86_64/en-ZA/firefox-65.0b12.tar.bz2"; 125 locale = "en-ZA"; 126 arch = "linux-x86_64"; 127 + sha512 = "2b94c548479c386e4d967163e9d3399f4d10c38f5ef8dd955dae86701e4a5822e9d0731567efe9e45c6c448f0be0d052c56bf359242dec93f9ddeb18c8577bf8"; 128 } 129 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-x86_64/eo/firefox-65.0b12.tar.bz2"; 130 locale = "eo"; 131 arch = "linux-x86_64"; 132 + sha512 = "24c04518eaf63f6413e506a4e59e6fa4b9144a80a9242b638719c1812a0f107c0ec7c7951c24064843d784835f37e05102b1401f74bee9ba9267ac2fc15fe5ee"; 133 } 134 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-x86_64/es-AR/firefox-65.0b12.tar.bz2"; 135 locale = "es-AR"; 136 arch = "linux-x86_64"; 137 + sha512 = "b5e4d70432eb0c3e2a52e7d651928eae2a6a42a9b58c66cb8173daf9bd3619d3a74e35172987f3c95091ca46c212e811eb073ad3368ab41c09bcd9aff51d560b"; 138 } 139 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-x86_64/es-CL/firefox-65.0b12.tar.bz2"; 140 locale = "es-CL"; 141 arch = "linux-x86_64"; 142 + sha512 = "1e82e4ff5a2480a71ac6a1c20f2bfea41055fbe80fc40e112bae446848c3a7e67526e276eeb54a3de496790651eeedb5e1e6217fb8d6675f68c13623eb4474dc"; 143 } 144 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-x86_64/es-ES/firefox-65.0b12.tar.bz2"; 145 locale = "es-ES"; 146 arch = "linux-x86_64"; 147 + sha512 = "5d19312f384664097dbfb1903a95a7892e59d53183397614ded485b73572ddb675f9e7c84a87954daf71155749e107e9574aff64a1cb95d216616c06aa07c42e"; 148 } 149 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-x86_64/es-MX/firefox-65.0b12.tar.bz2"; 150 locale = "es-MX"; 151 arch = "linux-x86_64"; 152 + sha512 = "124c7f3ea196c1846582afb48e0fa2f016757e71e0bb0b947c44ac31bdcc812d6a04c194950d8948c996dc878ab08fbd0d01eb1745480b89a91a3f5ebae85bc0"; 153 } 154 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-x86_64/et/firefox-65.0b12.tar.bz2"; 155 locale = "et"; 156 arch = "linux-x86_64"; 157 + sha512 = "17ab8d6181ad0e80cb33952269127fe2a2444ce999a59b1b56c6a8da96d6268b5b9ff78acf14ec6962e747f1aa33058d18dad891c32d98efea6497b5c4754d11"; 158 } 159 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-x86_64/eu/firefox-65.0b12.tar.bz2"; 160 locale = "eu"; 161 arch = "linux-x86_64"; 162 + sha512 = "f2bb7d2c7f7f286e337008fd1abcceb3b3a8f2c0dc267732f6c891e0a1c3022e741f445192d68ea11ec92612b54bc6311271218df9434fb82de2798e14a00266"; 163 } 164 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-x86_64/fa/firefox-65.0b12.tar.bz2"; 165 locale = "fa"; 166 arch = "linux-x86_64"; 167 + sha512 = "076074a6c5d73157e1b4256a34248a2aafca4623559c91b657648a884d7a4946b95537c731e14297bbb5e1c978098f23e772c888d38c8909ed046bebb2970a2b"; 168 } 169 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-x86_64/ff/firefox-65.0b12.tar.bz2"; 170 locale = "ff"; 171 arch = "linux-x86_64"; 172 + sha512 = "9e94e3fe3818c7d4715d6f97fcc2f64d888b5e7162efbe055e5f2169efec019655b64948a352dfe7e65744019c18fd6f125d8aa862f2f1b8c92f93bd763fbb82"; 173 } 174 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-x86_64/fi/firefox-65.0b12.tar.bz2"; 175 locale = "fi"; 176 arch = "linux-x86_64"; 177 + sha512 = "906f0633fca34feb927b6295f2f649daf1ba091cef3b8d9c9168d248d3e81a72f4040189c68de0611652d617e4bca4bee83a9b85f9e2c1796b49b54fbbf23d74"; 178 } 179 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-x86_64/fr/firefox-65.0b12.tar.bz2"; 180 locale = "fr"; 181 arch = "linux-x86_64"; 182 + sha512 = "8be60ee83fcd3ffa1be41c789aa9288fdafcadcea2f412560d559d24bd4deda94f6e4d9cff8e677129c0513dcb6b1e9198eead2ea2eed8e51424f925e96d6045"; 183 } 184 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-x86_64/fy-NL/firefox-65.0b12.tar.bz2"; 185 locale = "fy-NL"; 186 arch = "linux-x86_64"; 187 + sha512 = "0738d9cfc0a5a065f72acb9b08a01557e01b8ed8fc063d3dbf5bac48a256351e682fae1b8cd2281d830588c4d100b176a4c3197c5683c9e95f41a66ddf59efed"; 188 } 189 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-x86_64/ga-IE/firefox-65.0b12.tar.bz2"; 190 locale = "ga-IE"; 191 arch = "linux-x86_64"; 192 + sha512 = "381f553b761b4e241d40e30fadf177bcdde8d0375beed1f750ca006a012a09e9d97f06f5e013d5cca4e79255ef0fc5aed0a73e2ecdad871f1306c4a895ff336e"; 193 } 194 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-x86_64/gd/firefox-65.0b12.tar.bz2"; 195 locale = "gd"; 196 arch = "linux-x86_64"; 197 + sha512 = "838c2c936fa9cf1879a9598196f66f738393012d07d5c59ccd5659a1c4df2ce023b337d03a8cea6e615ab332eb9046d174926e6518508fea83b5efb35fa63ffc"; 198 } 199 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-x86_64/gl/firefox-65.0b12.tar.bz2"; 200 locale = "gl"; 201 arch = "linux-x86_64"; 202 + sha512 = "c23f50cd67d50be9cd0663f756c060603dbe4a743c8053ebb3e65515dd2983994b342342e8af2af23523962ccbea370359280485266f51a6c90f5c6988383c1b"; 203 } 204 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-x86_64/gn/firefox-65.0b12.tar.bz2"; 205 locale = "gn"; 206 arch = "linux-x86_64"; 207 + sha512 = "b1d264c2dbfc51f28a15fa5746976275e1de30b2b2d311af8908f77cbfe39f0c125a9009b8ba66e20c182c0d6b4d4764d149594278028c4a90337879d7f57d72"; 208 } 209 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-x86_64/gu-IN/firefox-65.0b12.tar.bz2"; 210 locale = "gu-IN"; 211 arch = "linux-x86_64"; 212 + sha512 = "73dbe533dc9d4db2707837f915b2c1fd2acc26c464fab29e3545d9ad0908a940e993fe9d86721ba0ca287d0350152ab152158ec29d091db0013b3fbf68060f0e"; 213 } 214 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-x86_64/he/firefox-65.0b12.tar.bz2"; 215 locale = "he"; 216 arch = "linux-x86_64"; 217 + sha512 = "4fe7e5016bd62428c6654fd04fdab5019af7bf5c245a66ab22c93c7c4a0bda57a51cf868a698664455d1636ea7fbd2d9f99e9d1f8de9c8c1a051c3e48094905d"; 218 } 219 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-x86_64/hi-IN/firefox-65.0b12.tar.bz2"; 220 locale = "hi-IN"; 221 arch = "linux-x86_64"; 222 + sha512 = "ec964e714d1162320f7766678d528526d93704b40e1694181a8ee38131b0e7393c89c2cfb76c3acb182b3a86181616d47333a82a70bd75068f2d9e566fd0e430"; 223 } 224 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-x86_64/hr/firefox-65.0b12.tar.bz2"; 225 locale = "hr"; 226 arch = "linux-x86_64"; 227 + sha512 = "cec0e0981f07ec4f224bff6a561a235434c449c4cf6d1eb678e83ad2a4526ebb56374e2bb32cc1289cb0690974d5eff12ba00c83c80197db9f9f2792a698fe49"; 228 } 229 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-x86_64/hsb/firefox-65.0b12.tar.bz2"; 230 locale = "hsb"; 231 arch = "linux-x86_64"; 232 + sha512 = "81a48c59dc8c9ecb1e6a68d7e8149bd114280cf3ccbeba1353ae1c5a9e68e1516a67bdf09f06796d9071ca9f721a1cf5ee7ffb9742388475637bf3320d79ee00"; 233 } 234 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-x86_64/hu/firefox-65.0b12.tar.bz2"; 235 locale = "hu"; 236 arch = "linux-x86_64"; 237 + sha512 = "6d0adcf72fcf692d37ef30cf5870f0d9644ecab20dd764f6c159c3353cd516dae90b48947efb4df36e7443ffb62e9849c663adebc1bb1cc993105eaa0b05e85e"; 238 } 239 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-x86_64/hy-AM/firefox-65.0b12.tar.bz2"; 240 locale = "hy-AM"; 241 arch = "linux-x86_64"; 242 + sha512 = "5b30010a5075cfe39bbe07fc247ef148aba9504230353d73b1cce24d761168d63bdcc5ce2cb203d4d3a3419180c65fae5c19e48984d9a2a65205a03e8c78ac71"; 243 } 244 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-x86_64/ia/firefox-65.0b12.tar.bz2"; 245 locale = "ia"; 246 arch = "linux-x86_64"; 247 + sha512 = "7fd5ff9c00530c12113bdba81c30071084f3d10581f079064fc8d6ed8704398be4fe02bf89dbfda702254b0445bdf57617c0f4d9db7cc4015327a86470b69018"; 248 } 249 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-x86_64/id/firefox-65.0b12.tar.bz2"; 250 locale = "id"; 251 arch = "linux-x86_64"; 252 + sha512 = "75d52366933f05ce620c3e8759aadc72f1130046f4b98817320ad792c9f3363b1f21a4785ba0c85e63412f391cd225c1e55dfcb700a03c75970d8c26126ea728"; 253 } 254 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-x86_64/is/firefox-65.0b12.tar.bz2"; 255 locale = "is"; 256 arch = "linux-x86_64"; 257 + sha512 = "6d8ecd4535e1e882b9dd1ff2226d1ce14bea9a3f04f95a32cb1c2dfe03604da54e9c53bd090fc6911fa5f0c53fc97e34c198befb7ae7797926174754e5156c87"; 258 } 259 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-x86_64/it/firefox-65.0b12.tar.bz2"; 260 locale = "it"; 261 arch = "linux-x86_64"; 262 + sha512 = "a184a5c3cb93867c46d251722c22e18a1a2f68306262137e767e4ea0e1ada3b633f96a59933508c6b67cb90f60e6736fc3985b9d3d4f96dcc529e68ac1ff66fa"; 263 } 264 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-x86_64/ja/firefox-65.0b12.tar.bz2"; 265 locale = "ja"; 266 arch = "linux-x86_64"; 267 + sha512 = "3d30bce9e0136b412ca12f47992179dc2317799733623401f60f4258b49acfca7ddcd3fe8b4e6307dad7111943fc169d595528559d15608df41434e69a826b0a"; 268 } 269 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-x86_64/ka/firefox-65.0b12.tar.bz2"; 270 locale = "ka"; 271 arch = "linux-x86_64"; 272 + sha512 = "c1281f06ff467fca31b02848a79f37964a5e23ec712dc86ee99559a5a3c4d495f654b4951d3b93dec3d882331c0622535b521b3edfb0783f7e115b97069e5339"; 273 } 274 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-x86_64/kab/firefox-65.0b12.tar.bz2"; 275 locale = "kab"; 276 arch = "linux-x86_64"; 277 + sha512 = "8332d83af9b7e9b71927cf4c37f32ffa01dbab89d37fe65713203100c7d01c9b49ff916500069a3027b5699fac08392f761c6418315a40403acfb2b81e809aea"; 278 } 279 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-x86_64/kk/firefox-65.0b12.tar.bz2"; 280 locale = "kk"; 281 arch = "linux-x86_64"; 282 + sha512 = "dfdcdf0aa7e04da93659091d3127fdfd4d2d0d8dd6127b2ff342ed221c910c4533ef9ce8ead814e33b2c3edb848931dedeebbad971c4fb1f109e2aed3da2577b"; 283 } 284 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-x86_64/km/firefox-65.0b12.tar.bz2"; 285 locale = "km"; 286 arch = "linux-x86_64"; 287 + sha512 = "61cef797eb8a50153d0a419353ce73d7603e0e155016fc3d946397b31ac8d9d652bfb319fa5e43b8685768cf5442d0cc11d6f006bd431b80f5ebedd2a262dcd3"; 288 } 289 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-x86_64/kn/firefox-65.0b12.tar.bz2"; 290 locale = "kn"; 291 arch = "linux-x86_64"; 292 + sha512 = "d48d5590278ba46a951477e20e3ea3254568713fac5786893df2de24da886585bf5c665fb5844e93db55ed05cb8ac45a4c1a1d4c1d7dce60b5c0d6c652b9d3a6"; 293 } 294 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-x86_64/ko/firefox-65.0b12.tar.bz2"; 295 locale = "ko"; 296 arch = "linux-x86_64"; 297 + sha512 = "32b64bdf71e34306a3390ce8bcbde6f2760171d84389d70a8f631f61ecff65b577750afa2017ce26debf415aa652a869cae8ea79506f2c7bdf5c6d2b81ea3495"; 298 } 299 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-x86_64/lij/firefox-65.0b12.tar.bz2"; 300 locale = "lij"; 301 arch = "linux-x86_64"; 302 + sha512 = "8d2b6106519983dd641204df2c6d20a195a59a72080845827ca0b41d682aff81c30afe49a0730287c5786d720b935e57d72995ce7d98e4996bed80e4badf3c06"; 303 } 304 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-x86_64/lt/firefox-65.0b12.tar.bz2"; 305 locale = "lt"; 306 arch = "linux-x86_64"; 307 + sha512 = "739415bd7eb9487791283f8927e4c25b1735c84c75d157a079334cd68fa3692c80bf188a914c8b80525ea2b22bf91b4566c3169d15763dc4fa8332fe1459a889"; 308 } 309 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-x86_64/lv/firefox-65.0b12.tar.bz2"; 310 locale = "lv"; 311 arch = "linux-x86_64"; 312 + sha512 = "7b55930ab348dc043e24cc0ad184be5e0dc4219fceaad99ac5f4734280c635ef615bc83916f6094f26468e050e03999a78b1c4a0e3328b28e659990f1c9f7885"; 313 } 314 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-x86_64/mai/firefox-65.0b12.tar.bz2"; 315 locale = "mai"; 316 arch = "linux-x86_64"; 317 + sha512 = "83c703f487905d46ecd8e8b5a4bddbad8129e151cc274f20aeceeff56413249ed16d024187777237a5ad8d8581db8e7b5dd8cc855ae09999ff0ed027e0bdb343"; 318 } 319 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-x86_64/mk/firefox-65.0b12.tar.bz2"; 320 locale = "mk"; 321 arch = "linux-x86_64"; 322 + sha512 = "af12696923d30c4336cf964867839b543190d1d54112b93f13c32e9c1b6289aae528f08f42ac5446a0941984295c556edd1cef4a0dc24ea8cdab2ef90edfc8bc"; 323 } 324 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-x86_64/ml/firefox-65.0b12.tar.bz2"; 325 locale = "ml"; 326 arch = "linux-x86_64"; 327 + sha512 = "17218e9651896474ad174af174e72f3dbfc478dbb4b3f7aaf41e39bf39834d8e5b53b1d2c831e022a16872ff5a06cbb01b988a8ec13d5de54e6609bf3b5221b7"; 328 } 329 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-x86_64/mr/firefox-65.0b12.tar.bz2"; 330 locale = "mr"; 331 arch = "linux-x86_64"; 332 + sha512 = "997b9a56a4db0d4648f5098428d970f4549d74c547267edaa24f47666d343950752e6459f04a2abe0634f021114df3c8a1cadcdfd6ee96f76a901246d3cbdcbe"; 333 } 334 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-x86_64/ms/firefox-65.0b12.tar.bz2"; 335 locale = "ms"; 336 arch = "linux-x86_64"; 337 + sha512 = "bb39dfca6524423998cbcb8fba0be76b11b0e51d801fca9f59678bb29af84f99a281e14854bed4093143d5ce6940062652d9b64ac04634c5bf8f4e2faa3a2f6e"; 338 } 339 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-x86_64/my/firefox-65.0b12.tar.bz2"; 340 locale = "my"; 341 arch = "linux-x86_64"; 342 + sha512 = "a374c1b09e491bc6bd16d10e43aa24fee68c05292f09266fc5beba793a7fb0ac9c6a291b6e9c2b674c6ee48bb39d0114ff2727f7bcb052fe5abe4b1186e5aa5f"; 343 } 344 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-x86_64/nb-NO/firefox-65.0b12.tar.bz2"; 345 locale = "nb-NO"; 346 arch = "linux-x86_64"; 347 + sha512 = "357ff5e167797403718214118b78fd64802bd90376e3e44d2e7fed1144fa9780d6b95cbb1101fd8b1c83b89d4862d6d0df6f4b48d74eb76104f6b0e8411236b7"; 348 } 349 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-x86_64/ne-NP/firefox-65.0b12.tar.bz2"; 350 locale = "ne-NP"; 351 arch = "linux-x86_64"; 352 + sha512 = "5e14bfedd78fc1b3e41d8ea7de932d10935d471c2b83a868ef034e25183f1b62ce0260cf27b644a557708e80bedae7af961f9d1f56a1306cd0f59add56ea66e4"; 353 } 354 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-x86_64/nl/firefox-65.0b12.tar.bz2"; 355 locale = "nl"; 356 arch = "linux-x86_64"; 357 + sha512 = "7527b398ace18ed48bc9d7334c732153e5f863af9997e4e3f3a7032634d1f4c5198203aefa935d083bba5524e3f9abe0a248420d110caf0e842157a9eac95526"; 358 } 359 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-x86_64/nn-NO/firefox-65.0b12.tar.bz2"; 360 locale = "nn-NO"; 361 arch = "linux-x86_64"; 362 + sha512 = "9728f2f3c4cb2ec0146b6e7bd6c78ed3466870d3927b0befec9cf641b50a03021a7885828b0c788d45061f5762fd3949622e7d21c338a1895883ba4698cc47f0"; 363 } 364 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-x86_64/oc/firefox-65.0b12.tar.bz2"; 365 locale = "oc"; 366 arch = "linux-x86_64"; 367 + sha512 = "77d03448c9c9c7eb5db081579f72a87a10c0311c832344fcf11467b6e3608e4f0ae9c848e8ea11edcc264334f0d9ad222dbe67d7c0f1473edc4fc7a54ab0c08e"; 368 } 369 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-x86_64/or/firefox-65.0b12.tar.bz2"; 370 locale = "or"; 371 arch = "linux-x86_64"; 372 + sha512 = "0687954826fef64ba55d2a79202aa53d7fa22aa76a4cc4e15f039ac668b8aa9f549c0d2b5542dc1a8742f6de44f4916b9f507c1d003ec4d5a4117fbeb9ad17b1"; 373 } 374 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-x86_64/pa-IN/firefox-65.0b12.tar.bz2"; 375 locale = "pa-IN"; 376 arch = "linux-x86_64"; 377 + sha512 = "27a743fc3d957d75dac3a17739e6f44028e5daaf94003ebd25710edaf3ae03eecafa70a0b52a113ee50207ecd7bd7a96fe1224ffde4dfbbdb9d4ee97e4504e45"; 378 } 379 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-x86_64/pl/firefox-65.0b12.tar.bz2"; 380 locale = "pl"; 381 arch = "linux-x86_64"; 382 + sha512 = "46edd8180ac9231fcf379a4c6d08db90ff540876d8c26a3ac48a87e0eff7dc409ede50e1072d296a3e17c900af426f0645ac19d1d3d62ef418459305d25c9373"; 383 } 384 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-x86_64/pt-BR/firefox-65.0b12.tar.bz2"; 385 locale = "pt-BR"; 386 arch = "linux-x86_64"; 387 + sha512 = "9536b55f94dd725df7b59497e9c4773faace6e0229f850a1eab018524fd486a90331ea7e47974b31a700465b1c4ca4a8a4f0db2bc20eff1be6a23e26d89ae5b2"; 388 } 389 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-x86_64/pt-PT/firefox-65.0b12.tar.bz2"; 390 locale = "pt-PT"; 391 arch = "linux-x86_64"; 392 + sha512 = "81a2bd54b5c2d094a8014a4880327cc7de5e5e88e7715276fee8253368ae9d2b791c96ba50f98c733c3391c9f0d8371d748e10490b4b372248eb0427215016e6"; 393 } 394 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-x86_64/rm/firefox-65.0b12.tar.bz2"; 395 locale = "rm"; 396 arch = "linux-x86_64"; 397 + sha512 = "39187a7851831922336939600b11f24485a9ded710a2bc75dde7276387de430d71d5a52e847980a3a05e86ba0efecf43474891fc6082f534d4b4d33384b3ed44"; 398 } 399 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-x86_64/ro/firefox-65.0b12.tar.bz2"; 400 locale = "ro"; 401 arch = "linux-x86_64"; 402 + sha512 = "92a1b1da29e7a6a32a367517f037874d13db93315ec1e2b30f4be4ad7e14d40627cf4d3f128cc499f0b837eb3a453fa4db26d98a6d9a5ddf440b41966ebfb920"; 403 } 404 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-x86_64/ru/firefox-65.0b12.tar.bz2"; 405 locale = "ru"; 406 arch = "linux-x86_64"; 407 + sha512 = "57a50134ae90c479e1ab0b9f7237cb4e9398032c4242c0559f55b3b1af160e7186b67f66e684c8f1d535d4a54a28acd7ab70dc1e9bf710e0492ec15a0dfdf50c"; 408 } 409 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-x86_64/si/firefox-65.0b12.tar.bz2"; 410 locale = "si"; 411 arch = "linux-x86_64"; 412 + sha512 = "cefc26f888f9b41294ca5d53fab79e18940f79a18404e62b230fa61aaeb4893c3d260764b4274b0e53c19501766d1bef6d843f2f4c57776b9c58e285cdac1670"; 413 } 414 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-x86_64/sk/firefox-65.0b12.tar.bz2"; 415 locale = "sk"; 416 arch = "linux-x86_64"; 417 + sha512 = "af0a7334da8c5cfcec2e244e528cbbc8d0d00b5ca85069d0f8480b294c9b83d23eaed0bd7d2f990036cd66368a075d4a6e0158faca15b23545615c7e7b747c51"; 418 } 419 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-x86_64/sl/firefox-65.0b12.tar.bz2"; 420 locale = "sl"; 421 arch = "linux-x86_64"; 422 + sha512 = "be07a303150b7f401a4b353cb2ba2a3de318939fc9a041c717bcc661752eb098bec7fda837e699d14571a9cfa768ba3d6b3a91208ba9228b3347eabe83c3f863"; 423 } 424 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-x86_64/son/firefox-65.0b12.tar.bz2"; 425 locale = "son"; 426 arch = "linux-x86_64"; 427 + sha512 = "8e02e24fc34ee961a7f6ce4e819df9d9cbfbd6c2c27578615be47d207f646e6a44bcfc8c68bf7b1e04946168ac50ac96241c8002a21f1021a7e5548aa60613ef"; 428 } 429 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-x86_64/sq/firefox-65.0b12.tar.bz2"; 430 locale = "sq"; 431 arch = "linux-x86_64"; 432 + sha512 = "23dbfef5a9a1742ec09d56903dd5b7a80bbae491881b829c3098fd7d709f4b2bf3e4df0f37fbaccacc834cd3ac50685c2245df39fafa121e3f46375582a7f774"; 433 } 434 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-x86_64/sr/firefox-65.0b12.tar.bz2"; 435 locale = "sr"; 436 arch = "linux-x86_64"; 437 + sha512 = "ad48740414411c05b5199f7b84c38a2b6b72ace8971b9853d7f208841a85135d0f4fe1bdd8d7808d6507069efcac120f22cd9a06ac597f06b67beeccb88332a6"; 438 } 439 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-x86_64/sv-SE/firefox-65.0b12.tar.bz2"; 440 locale = "sv-SE"; 441 arch = "linux-x86_64"; 442 + sha512 = "b761943a043b9a2aec7ebceadfb07acd4795aa032d68d0d7e3fb4409fb0f829a003dc176093fd3322ed2843d3d72d4ac2c33bb76c466866b0600d6258103dbe3"; 443 } 444 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-x86_64/ta/firefox-65.0b12.tar.bz2"; 445 locale = "ta"; 446 arch = "linux-x86_64"; 447 + sha512 = "3379f0d35a5ba50232f7418a1eb4d58ce19c19c83cfacc85a1c6c22dc133ace5d2bdcbc9f13b2515e062e91957a8c586e07d3f9b740a98e62af2c606a64e8747"; 448 } 449 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-x86_64/te/firefox-65.0b12.tar.bz2"; 450 locale = "te"; 451 arch = "linux-x86_64"; 452 + sha512 = "c5e86e8475b06d6f92ef23dbb54151adf7fd94a5ea88936627fe75132f7cf10640a544441f5ab9faf4e6c398ee5808fc3fa1e79771264232a185f46911ab9188"; 453 } 454 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-x86_64/th/firefox-65.0b12.tar.bz2"; 455 locale = "th"; 456 arch = "linux-x86_64"; 457 + sha512 = "ef305469466635d8d015ba4439a7b58b9b5d44e7e46150262d15b8036886d33e92a5615249456b2504c4f5c45a5c1f600c8c9791588cc4950dc8fedc258749e1"; 458 } 459 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-x86_64/tr/firefox-65.0b12.tar.bz2"; 460 locale = "tr"; 461 arch = "linux-x86_64"; 462 + sha512 = "79e1c8b13f8c2f48485bd65af6f46df068631a6960e97c3b2204bdde35b2b7b083a866225b5ac70371fded36d7fc382004d4158a4dfbd9d5a5d330c20f464cc9"; 463 } 464 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-x86_64/uk/firefox-65.0b12.tar.bz2"; 465 locale = "uk"; 466 arch = "linux-x86_64"; 467 + sha512 = "f3701fb6c4b42b5dc5f97b9ce2866e9021c310b45959dd4fd8afdda15cc571c03f24dc0d1909c9e03adac867452ae619254991895c4c02b72d9b6a208262a501"; 468 } 469 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-x86_64/ur/firefox-65.0b12.tar.bz2"; 470 locale = "ur"; 471 arch = "linux-x86_64"; 472 + sha512 = "850d496ff272c783b2587bd709211541882a80982b53779527a45046c25d59441180ed9c7eaea5ac42b35aac45d25759ee800ad76ba45faebf41ad15563b3482"; 473 } 474 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-x86_64/uz/firefox-65.0b12.tar.bz2"; 475 locale = "uz"; 476 arch = "linux-x86_64"; 477 + sha512 = "41d864c23dc258749b1dede978ce13e32c5f88528c4653f5371968d1918a975dcc9778ad8ce348bb3409de0dfcc61671884cf57bacb6a4b9770d076c524cd4d9"; 478 } 479 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-x86_64/vi/firefox-65.0b12.tar.bz2"; 480 locale = "vi"; 481 arch = "linux-x86_64"; 482 + sha512 = "d3c549bab38331ed688e70fdaca2ffe07a5767c778aa74f1f91605aa9447251882b9ac6012c43a4d8c8b8c09ee9648c34d4e2c3a2ae99f8bca4a7f65c2df632d"; 483 } 484 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-x86_64/xh/firefox-65.0b12.tar.bz2"; 485 locale = "xh"; 486 arch = "linux-x86_64"; 487 + sha512 = "9e9100548db72db2eac7950c5af145f901d1a5f106039ff2436acbc586f758cbe7ba1a7da53c76c4242e9439f14ad40d4b1a46f7429c3446963f34c3208feec0"; 488 } 489 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-x86_64/zh-CN/firefox-65.0b12.tar.bz2"; 490 locale = "zh-CN"; 491 arch = "linux-x86_64"; 492 + sha512 = "9d58d63021a478071af0d2e2cee2f0af7c623288cca6dd06759175c2ce59b9384b97ff9d256f08daf457232a64de04de8cd8a8ae54c82301a1a0f8e24085a726"; 493 } 494 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-x86_64/zh-TW/firefox-65.0b12.tar.bz2"; 495 locale = "zh-TW"; 496 arch = "linux-x86_64"; 497 + sha512 = "43379234262cf6d4b6393ed6073770618b327763803b3e7669d31eda29b45d9c207387521c5742b8fe205d71553548f55047abfc3e6156f84d75f2ea4dd7a3e4"; 498 } 499 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-i686/ach/firefox-65.0b12.tar.bz2"; 500 locale = "ach"; 501 arch = "linux-i686"; 502 + sha512 = "4382880f99553d544fe888ac5ceda1ef0ba531d0262b8d702c075359f81d0e6e625fb18a2ad6b4e8f0a05769a4dfbc6a50dfef9dd629ffdc82d92a9814f606e5"; 503 } 504 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-i686/af/firefox-65.0b12.tar.bz2"; 505 locale = "af"; 506 arch = "linux-i686"; 507 + sha512 = "e1bc02a59eaddf0a9c39af6c4b2d3e864906d14de7f515646f461a3f5e4e8584bd8c00eaf6a4e276c874adcc3830ff64d6942a92bb3efcff0b4d83a210e0ac9e"; 508 } 509 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-i686/an/firefox-65.0b12.tar.bz2"; 510 locale = "an"; 511 arch = "linux-i686"; 512 + sha512 = "6e0cb8327cf786559ad94a7f4cdbb2ef455bef60390973a993c039fa942a715a9b2fb81d6aa6992d634eaa290dd3993e8a747bd4cfdbf44f8877913f93c7f4f3"; 513 } 514 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-i686/ar/firefox-65.0b12.tar.bz2"; 515 locale = "ar"; 516 arch = "linux-i686"; 517 + sha512 = "8100c0f4fdbbac28a65a32a03e3832988bd2b8849736a85e126ce104615b0c3eb626940b260e0b2658ec46e7cca13391c8b3fbec4d0cdb63ccecb4e33432aed5"; 518 } 519 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-i686/as/firefox-65.0b12.tar.bz2"; 520 locale = "as"; 521 arch = "linux-i686"; 522 + sha512 = "c2ab35646700a9ed3f35277455917c89277456b375bd2d3516dd4f10494c3710a7088ad160a88fef77c137c9f23e227571e896d10b7ed45ae79b91dd49321212"; 523 } 524 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-i686/ast/firefox-65.0b12.tar.bz2"; 525 locale = "ast"; 526 arch = "linux-i686"; 527 + sha512 = "e58e29ca285415db6b03d2be734f9c75425e5dc5bd738330672ae166ea35eef49bed5276905cd19b4c4b62a17c64d8360185bad7a59919b807aac787dec41d12"; 528 } 529 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-i686/az/firefox-65.0b12.tar.bz2"; 530 locale = "az"; 531 arch = "linux-i686"; 532 + sha512 = "207ebf9d38fc5c86969ca287504e9b5cc048e8e896d5463986e66682efdd1b7cc32ab9fce6444b3c34fb4168cfeab3f8af0c5eed6c57e04cff215136606ffea7"; 533 } 534 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-i686/be/firefox-65.0b12.tar.bz2"; 535 locale = "be"; 536 arch = "linux-i686"; 537 + sha512 = "3e2ff8885995350fb22aad1c11b2bce3d81e62aedf9978660e4b8a5a77865c8420549825d078fc4a44a7c4b9317d6ab8479d776855ce2c13655dd1df94611879"; 538 } 539 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-i686/bg/firefox-65.0b12.tar.bz2"; 540 locale = "bg"; 541 arch = "linux-i686"; 542 + sha512 = "4cae4e05dd6cbf01f0fddb61e762106fd4d34f6c9d2c5cb0bb7a57f97817e5d36bc126cdd87eb7afd1880433f30147f4a955823d9af36992285f47ba62914472"; 543 } 544 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-i686/bn-BD/firefox-65.0b12.tar.bz2"; 545 locale = "bn-BD"; 546 arch = "linux-i686"; 547 + sha512 = "88ee8e36971b6d619b9280a88b2b860c83b210ca770ef5298fec785a9a47ccf15e50066a7e3e77185de910bfbe05530c96589090f1f6baacd385b1ace04ac47f"; 548 } 549 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-i686/bn-IN/firefox-65.0b12.tar.bz2"; 550 locale = "bn-IN"; 551 arch = "linux-i686"; 552 + sha512 = "928fc0a14872b8a2dbbb3715563a778b09f203e9b933c3573dd818c8dcceadcfd3c0bc01aa961a048bef065d5ce4afddb3e04ba15a6b470e75c44394c290c0ab"; 553 } 554 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-i686/br/firefox-65.0b12.tar.bz2"; 555 locale = "br"; 556 arch = "linux-i686"; 557 + sha512 = "90f2fc4abfc8dcee13c986722d5f0aad5bd9bcb240d64f8c0e24f580de81bfa1bc6aed4f76bac479a2098fecace29f4e061208426f60f3f3642d0f8961357621"; 558 } 559 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-i686/bs/firefox-65.0b12.tar.bz2"; 560 locale = "bs"; 561 arch = "linux-i686"; 562 + sha512 = "326943958739f7c9f1d9e0529c01b9bc03441770731aad5ff300854b2dc3790652f268d208d4ec8592b67c080369094b15950550bb405d91b8447b18ab0eb7aa"; 563 } 564 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-i686/ca/firefox-65.0b12.tar.bz2"; 565 locale = "ca"; 566 arch = "linux-i686"; 567 + sha512 = "24d73a2e79d1877ccba5537ad155523eeec9f28706b98ec8c749c85464df5d1c9b437bf17dcbb63293e22026713c11fa7e24cc23b4ca909f987e6488efd180ac"; 568 } 569 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-i686/cak/firefox-65.0b12.tar.bz2"; 570 locale = "cak"; 571 arch = "linux-i686"; 572 + sha512 = "4af75aceb01531cfe3bbe883bc1b7ae5169f2b18ab91e87584a7860ae7e16701e2772235b4fa6146947cfc47b353c468f3e520c5b75dc7cf13f7c1e476907670"; 573 } 574 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-i686/cs/firefox-65.0b12.tar.bz2"; 575 locale = "cs"; 576 arch = "linux-i686"; 577 + sha512 = "6aafe83d8590d6a7775955552316728d392dbec58e87fe57db540bcdf6db3f7762bfcaa93b8b6464a6f51a351af0647fd81d2410f2bb317344971ca8ac9cf037"; 578 } 579 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-i686/cy/firefox-65.0b12.tar.bz2"; 580 locale = "cy"; 581 arch = "linux-i686"; 582 + sha512 = "aa68027ee75df05164fef25534314d0dcad184764caade99d00a4dadda531cfb8925de066108a5858b8cca0583bd197116f14d06fc3ac468a3b2e211a8f11fcb"; 583 } 584 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-i686/da/firefox-65.0b12.tar.bz2"; 585 locale = "da"; 586 arch = "linux-i686"; 587 + sha512 = "e7357cbb266465e3e02edcd6f8ad22873aeae7148e2c3ca5d3b2d294f2efc5e53cf3961698be8f65d6d49e0b7d2159a57e85d4ca85818418e54fdd27782f9db8"; 588 } 589 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-i686/de/firefox-65.0b12.tar.bz2"; 590 locale = "de"; 591 arch = "linux-i686"; 592 + sha512 = "09340d255c11dfc45a99ce620ed31099aefb22038e14bfd947d42bd4479e10be4c8e8265fab1b88b8aecaa4fcd08afacf5ba083b503c7b6b9aeaa161a2241e21"; 593 } 594 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-i686/dsb/firefox-65.0b12.tar.bz2"; 595 locale = "dsb"; 596 arch = "linux-i686"; 597 + sha512 = "13d939cd107394f7e08ffed29eb25184c28ab975d84b240ca7282b0242e7b319ab621b4a0fa22439b307d6129ad84c8fee7e0f542b82dafa9d6223a82262ef02"; 598 } 599 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-i686/el/firefox-65.0b12.tar.bz2"; 600 locale = "el"; 601 arch = "linux-i686"; 602 + sha512 = "ebf4a93e7e09f464dfacc036a99a5c544813bb8535fcf0fb2e219ef0f94c8b96f82f2fc171ee8ede407dcf41c5081e94eab1c908cb401dbfa074f1f8e283b170"; 603 } 604 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-i686/en-CA/firefox-65.0b12.tar.bz2"; 605 locale = "en-CA"; 606 arch = "linux-i686"; 607 + sha512 = "2650766715466d3a1c6ea7c55c6f14efe375df780b520f1762282e43fc80efbb1cec66c1739e959b57ef29046d9236a339de2cc4aea6815ef31318c1374e5aee"; 608 } 609 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-i686/en-GB/firefox-65.0b12.tar.bz2"; 610 locale = "en-GB"; 611 arch = "linux-i686"; 612 + sha512 = "e898893b7435acffb0ac7d7fa3c98e53db230dbf70647cd3d7ff2cf465c2dd3d6bca7edb207f879ea6f6055a077b2fba97e2a02329e445f13765abff84934182"; 613 } 614 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-i686/en-US/firefox-65.0b12.tar.bz2"; 615 locale = "en-US"; 616 arch = "linux-i686"; 617 + sha512 = "eb2fe4c5cfd230843d3ed64901753f9e54827ee6042fcde04454863a7ad455a77c0e5b530de8907019df97aa6276bf4b3d23349eb845399e1f511b612fb2300c"; 618 } 619 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-i686/en-ZA/firefox-65.0b12.tar.bz2"; 620 locale = "en-ZA"; 621 arch = "linux-i686"; 622 + sha512 = "6e8530399448b983134ebd5337e19aa85f81725e37821378559f578abd5250e47e42cee9e3628e5cc12112aba1a785bd1ff29a579e419b9105f480bf89aafd6b"; 623 } 624 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-i686/eo/firefox-65.0b12.tar.bz2"; 625 locale = "eo"; 626 arch = "linux-i686"; 627 + sha512 = "8839d19b1ac67e3c7ad870c2397c33364339791fe8bc9782f9196c6d5d21a7f6f57209d47ce30c535194eed332d3c52fdbd7bc1ffbe63692fd75327a563fa72a"; 628 } 629 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-i686/es-AR/firefox-65.0b12.tar.bz2"; 630 locale = "es-AR"; 631 arch = "linux-i686"; 632 + sha512 = "5ee2b4e3dd172dcf040a0ff1664a4da9067673a42ceec362c65aece524af1aadab5a316d0bc1c870b2d3de5198383ed704d299d753f8d66487aa264275de40e0"; 633 } 634 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-i686/es-CL/firefox-65.0b12.tar.bz2"; 635 locale = "es-CL"; 636 arch = "linux-i686"; 637 + sha512 = "01152e4f4b892f84bcb446c1b1ec972a11127107680818f29686fa8edec322992804e44ecb72e69c330354c4d3b219c49bc930ce1554c85b2271ad303403dc1e"; 638 } 639 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-i686/es-ES/firefox-65.0b12.tar.bz2"; 640 locale = "es-ES"; 641 arch = "linux-i686"; 642 + sha512 = "5dca4b01fc087fd8ae24a27de96d816ac4a5e72ffd46e196979c552e7c9a2fb4430a2ae6079e4f16d14effffa22ecf70e6719ca2f023fc9c2580e306f10cca22"; 643 } 644 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-i686/es-MX/firefox-65.0b12.tar.bz2"; 645 locale = "es-MX"; 646 arch = "linux-i686"; 647 + sha512 = "ada1b37d361f625c3f8ffbf9f1b460cf9daefa4dc79e57e4851199dfa98a9b0c7856fd430d47c1e83e2aedcf4f9a7bb97cb29d122a15519d7c43ecff5a817cb8"; 648 } 649 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-i686/et/firefox-65.0b12.tar.bz2"; 650 locale = "et"; 651 arch = "linux-i686"; 652 + sha512 = "6e04852f771c71af1fda88eeb60b4e9870c6f4aec35abb20751a0e32f03bc901c0ebfaacb2ff1fc0f3ec305ad6bb65125adfd666d14b50b76506398cf58d5e97"; 653 } 654 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-i686/eu/firefox-65.0b12.tar.bz2"; 655 locale = "eu"; 656 arch = "linux-i686"; 657 + sha512 = "99b83adfd6112183f9fdd2373d8de7fd5b878c112094f57a640a6072f6a6a9c2ae55d2765de91ea6e19471b625a04f0c531d6c2e668d513a5f6e32790513c4a8"; 658 } 659 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-i686/fa/firefox-65.0b12.tar.bz2"; 660 locale = "fa"; 661 arch = "linux-i686"; 662 + sha512 = "ab3c70f1476d46a83fb059052ce6d7d6ee9d4583c97f8554c02a25263fcde2387bf91573089e015f530263f3b207780b3356e6ef991a2e8d1baa4e78397c9b8e"; 663 } 664 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-i686/ff/firefox-65.0b12.tar.bz2"; 665 locale = "ff"; 666 arch = "linux-i686"; 667 + sha512 = "e31339dd19ad6776a12b12b8a6f6316c653feb03b283277a2085d1bdc31ce6018e20b425f6f147ad3437544c627f7a7cc9dd3ef471c3b7fa01c68ced426de427"; 668 } 669 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-i686/fi/firefox-65.0b12.tar.bz2"; 670 locale = "fi"; 671 arch = "linux-i686"; 672 + sha512 = "2c626bcf701c5c9f87f33a324fc5cdcc759da6e42982f4de3419b4f6f3878fec7335de5daa7c27c0a4500288b901301594b1c60d7a41dfb59b254eb30c546c43"; 673 } 674 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-i686/fr/firefox-65.0b12.tar.bz2"; 675 locale = "fr"; 676 arch = "linux-i686"; 677 + sha512 = "cf7134cad609fb107f85a369b91fd2e9981bd858e8a1b9f9ac0c6fd4b5a2122fc0ad8a7bc0107c3302059ed522f2a492fc582d0a260c5bfc2056efc0a7b8455a"; 678 } 679 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-i686/fy-NL/firefox-65.0b12.tar.bz2"; 680 locale = "fy-NL"; 681 arch = "linux-i686"; 682 + sha512 = "c579722fe3dd98d59c5a0f7197b799a0b57a12bd979e79e2a0524cbaf6c87d2dfe27266202e89a72ff081942b195b78a859274423403df7faf54da90820e3a64"; 683 } 684 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-i686/ga-IE/firefox-65.0b12.tar.bz2"; 685 locale = "ga-IE"; 686 arch = "linux-i686"; 687 + sha512 = "07c6e2180195c2399e972a9eaa72cbcd0739dce1248ae07a478b5aa5715148a1cabef93e28e1f6a6f3f5f7757cdf5d63c817a34d7ba8732befd8539e00777cac"; 688 } 689 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-i686/gd/firefox-65.0b12.tar.bz2"; 690 locale = "gd"; 691 arch = "linux-i686"; 692 + sha512 = "a65bb22adad02cf7a91bb7264d4b9ed8cea67fa9d56e7d5dc477e5fd6976f36116ebc41ff67f935c41049dee30bfe6990ef1bbd16d4088757facbe9bbf88b066"; 693 } 694 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-i686/gl/firefox-65.0b12.tar.bz2"; 695 locale = "gl"; 696 arch = "linux-i686"; 697 + sha512 = "ca5df13009b8b5d68235fb3439421f64363c64408bf7ff73daa90f7b744e77ea02c39be9ea32567fc99e5dc336cade477f8c9dc348e89082c71f84f8bbfa95bb"; 698 } 699 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-i686/gn/firefox-65.0b12.tar.bz2"; 700 locale = "gn"; 701 arch = "linux-i686"; 702 + sha512 = "9246f814e3c74eb43baa473616697871298ee441a7fdf4f3832a169c8b8ec269453272ede829841b2ce75632eec5f113a60a768b0c4eafb7a7ff15eb2ecc8572"; 703 } 704 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-i686/gu-IN/firefox-65.0b12.tar.bz2"; 705 locale = "gu-IN"; 706 arch = "linux-i686"; 707 + sha512 = "2ecdf5fc087eca0ed9e0c4b62731ad1747663d7fa28d868590a190affc4a5c1e1d840686bce3893c755ae6fe19e454225ffefaed9c9d7a65b7dbca640b89fcd8"; 708 } 709 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-i686/he/firefox-65.0b12.tar.bz2"; 710 locale = "he"; 711 arch = "linux-i686"; 712 + sha512 = "2fb984bc0053e2a080794b7a950d0d6ca23c4698ca9d4c75884508c5479f117710b4ea31ad6686fd7f84508f31614669b902ca5ce4991ecdb890b0b78505bea3"; 713 } 714 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-i686/hi-IN/firefox-65.0b12.tar.bz2"; 715 locale = "hi-IN"; 716 arch = "linux-i686"; 717 + sha512 = "7bfcb65b632463cb455bc0c29b54bacc47bd290ea96743a1268f5c7912b211855623424ac24f67a4bd3d3d6bf488b2843c7d57234f1938bb194a4f54d7fc0eed"; 718 } 719 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-i686/hr/firefox-65.0b12.tar.bz2"; 720 locale = "hr"; 721 arch = "linux-i686"; 722 + sha512 = "75b12792d917b71d25d3f6b0fe03ee824655b49cb2bcdc42f33f159bffa9e9c122f7b3b4d430985825ec0b11184258837cdb97b913b7fd7b803c10a57afda634"; 723 } 724 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-i686/hsb/firefox-65.0b12.tar.bz2"; 725 locale = "hsb"; 726 arch = "linux-i686"; 727 + sha512 = "d1c7119e7a0bba4c7e5d4be992139cea33e581e60748bdad9c6c798511cb8d7d84bf9e3cfe6fffb303e3454a73d72b5bf2d79e31cf4f818609dee31f7f019a9d"; 728 } 729 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-i686/hu/firefox-65.0b12.tar.bz2"; 730 locale = "hu"; 731 arch = "linux-i686"; 732 + sha512 = "34750d5a3f6ae4d2c2093b1374e8daaaf2de41a6d560f0f4fbdd7cc3ecf7670e298cf09be33de2839198a85acca65b40c2406b3d79eb29df85d2e4bd4a9225b5"; 733 } 734 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-i686/hy-AM/firefox-65.0b12.tar.bz2"; 735 locale = "hy-AM"; 736 arch = "linux-i686"; 737 + sha512 = "4be836e6e68c378ed7bbe7e22e0f8c2b11074ee88109988a1afc3fc5f72499246537f76380c1635017efb251e8540681ad30304e1bed9d4a42bfb8749d66de05"; 738 } 739 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-i686/ia/firefox-65.0b12.tar.bz2"; 740 locale = "ia"; 741 arch = "linux-i686"; 742 + sha512 = "5c4459255fa08faf284862459cf001f0f6f87b2b45c570d55e086a143d32e5fff4dd4ad44c206f66b5eefa58519de9833758dea6e4a4c036b3b26794e52b66cf"; 743 } 744 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-i686/id/firefox-65.0b12.tar.bz2"; 745 locale = "id"; 746 arch = "linux-i686"; 747 + sha512 = "9b9dab0d616d7eaa3ab9e1aca3798c650089346df2f36fe1f9078065ca736757ebb4fcaaac8389459188006a61771c98e4fb39ac427e29fdd3ad8834280df482"; 748 } 749 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-i686/is/firefox-65.0b12.tar.bz2"; 750 locale = "is"; 751 arch = "linux-i686"; 752 + sha512 = "a77c51bc679eb808b8d63051797a673da8dd8bbdde4a09dd47f3b35ea61a01c0de259eab30ca7ebe58542ae663e039b43efd37be47a711fddb0a34e245c37940"; 753 } 754 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-i686/it/firefox-65.0b12.tar.bz2"; 755 locale = "it"; 756 arch = "linux-i686"; 757 + sha512 = "c7a360aa405a74ed03766599654cb83a028e8a93d2933c4c4d3ae9bf5ab186adabb4516dda5190620e8954c2c61cc0d9ecc018951dc0f46fecf5c1f3c21ccb1b"; 758 } 759 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-i686/ja/firefox-65.0b12.tar.bz2"; 760 locale = "ja"; 761 arch = "linux-i686"; 762 + sha512 = "9523e5a4b9959571ae9d1b4c258698e1858c47b781c175468ff822f90cd04fa8d7137f46a657392fe55bb898731ef774b3b8dd560e7ddf173c0261b5741a393e"; 763 } 764 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-i686/ka/firefox-65.0b12.tar.bz2"; 765 locale = "ka"; 766 arch = "linux-i686"; 767 + sha512 = "e4283f0816aad8e54af0e29cd8b992ca4d400a59ff5bab1c66307ca333c70db9e6e1aa28473c49d1400f79c0dc67fd7530028e652ff535d9ae024e030b979285"; 768 } 769 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-i686/kab/firefox-65.0b12.tar.bz2"; 770 locale = "kab"; 771 arch = "linux-i686"; 772 + sha512 = "ad5fd5745e341041176bbd11ac067e8791c7dffd4f242cb0b861069fddb2450b0e65a1e5d0ab6c24c18ba18d8ff220b8cddcde7dacd5605d8e9714ca10bc2bd8"; 773 } 774 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-i686/kk/firefox-65.0b12.tar.bz2"; 775 locale = "kk"; 776 arch = "linux-i686"; 777 + sha512 = "97af4a3d4314d13e6cdaf3ece49d9aa8222e0a81255350055d9e0a8b880eff04035506df94d0dea0286aba62ea1584c78c8fee4c20bfef483322ef02799672bb"; 778 } 779 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-i686/km/firefox-65.0b12.tar.bz2"; 780 locale = "km"; 781 arch = "linux-i686"; 782 + sha512 = "f70ed81ecc13daaf8c27128d954684db6621ee2e527d576c77f628ee6ad4a810caecf162790ddfad0cb2d7f8776f540aaf5f1f828d06f372fd4ce72462042fb8"; 783 } 784 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-i686/kn/firefox-65.0b12.tar.bz2"; 785 locale = "kn"; 786 arch = "linux-i686"; 787 + sha512 = "a751e52b1cd8d8bd265086771a5ccbddc76fd26944a07e86ad734adffcdd91b364a1c39125b1d93d9c7db4b52a4d9ae39c0567160cbb37d407482da0b5a67bb2"; 788 } 789 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-i686/ko/firefox-65.0b12.tar.bz2"; 790 locale = "ko"; 791 arch = "linux-i686"; 792 + sha512 = "ef3fb96f71ec0d8d4678bad7813e3db00024ad3bfa00f4de8fad454f5200e7e3cd5538441fd1283e846810c8b89652a741a9870601b440e7b2824545b39f59ea"; 793 } 794 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-i686/lij/firefox-65.0b12.tar.bz2"; 795 locale = "lij"; 796 arch = "linux-i686"; 797 + sha512 = "a7cfab12ef29ff68e4fb4f60dc15aae65b6648b9e60b227cc13471103ce2fe472601aa7b702dc8f2bdb57485163f78da17ddfe0821ebf69f5995f12f55e5950a"; 798 } 799 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-i686/lt/firefox-65.0b12.tar.bz2"; 800 locale = "lt"; 801 arch = "linux-i686"; 802 + sha512 = "0740276dd1fe50192c6a99d0d43547a450873d9cf8575858f53754c1661d3bb85d7d02cc4a09639a2641eed7a687c856b30d814ed1ba923d6f765a8be027940d"; 803 } 804 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-i686/lv/firefox-65.0b12.tar.bz2"; 805 locale = "lv"; 806 arch = "linux-i686"; 807 + sha512 = "3a662715a16f2b30cdb79926b3265b791d7a7099240d193a66ce48e33da7aeef36e4efce19097b37af3e5e330a8cabcae273ce2f87bb9dfa3fd3015c061f897d"; 808 } 809 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-i686/mai/firefox-65.0b12.tar.bz2"; 810 locale = "mai"; 811 arch = "linux-i686"; 812 + sha512 = "d2f08fcecd588432210207f30166608bfab8dbf9353aa05bcc0c00e74a9a974b59d301b975d0c06e9e2c48749eabf8c8c485da8a56a4479c4672dfb0aeb85418"; 813 } 814 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-i686/mk/firefox-65.0b12.tar.bz2"; 815 locale = "mk"; 816 arch = "linux-i686"; 817 + sha512 = "586c8c9f0d80620adaa29dd308fcc28733da5d7119b27315442e0f1b698fc81bbdac059c3f2d08ed941de551ca5abc2eac6b60969ede63503e943fd8720d95c8"; 818 } 819 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-i686/ml/firefox-65.0b12.tar.bz2"; 820 locale = "ml"; 821 arch = "linux-i686"; 822 + sha512 = "7517cd5281901ba3d32dabff34dd806f7d3aeb5074f16e4f27d352f0e063a64ddebe0a6f4fc59cdb263fa33e84c374591b882bc2e8e6543bd2d4f595f29a27c9"; 823 } 824 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-i686/mr/firefox-65.0b12.tar.bz2"; 825 locale = "mr"; 826 arch = "linux-i686"; 827 + sha512 = "f533e442c3ee42fa0c1690f2887b93665aed40f44007c477f73ac4102af41da2440b96414a1fbfcd42786df09c2a72bd414893d33e1ae811e069dbb318671e0a"; 828 } 829 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-i686/ms/firefox-65.0b12.tar.bz2"; 830 locale = "ms"; 831 arch = "linux-i686"; 832 + sha512 = "72d1cb5296f2d69eab16cd3ec8e1e0291668329daba0f62a36660c8a5ad435ca0f8d3515f668fc60cd4fe4247fc29cb1139e4accf5d3fa66ea6a3406e4c5e221"; 833 } 834 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-i686/my/firefox-65.0b12.tar.bz2"; 835 locale = "my"; 836 arch = "linux-i686"; 837 + sha512 = "260e5f5564146e316876ec2df886d3e59839475a2c2ad1aa122c9344f7be5cbc4d54434b14788efe1922a3d4c7216bd7735f91300f51c294f197a0ea95cdc394"; 838 } 839 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-i686/nb-NO/firefox-65.0b12.tar.bz2"; 840 locale = "nb-NO"; 841 arch = "linux-i686"; 842 + sha512 = "19ec8c0dfff78abe703c032fb4f13552aa85ffa7febe837d093ff2f6fef80399d0b462eaa2f5aad7ad84774690b04f735d65dd8e2f8d74cd233b38e204af43eb"; 843 } 844 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-i686/ne-NP/firefox-65.0b12.tar.bz2"; 845 locale = "ne-NP"; 846 arch = "linux-i686"; 847 + sha512 = "4d709f5500327c8706a530853696ca23e5dc8cfdd66604f3f73e8951f9e490e4b381e89c303276c0f363ac2882aa18cfaaebf56677385ff8d6e0ef94198aa588"; 848 } 849 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-i686/nl/firefox-65.0b12.tar.bz2"; 850 locale = "nl"; 851 arch = "linux-i686"; 852 + sha512 = "25207e8e66246e8fe5a16f4602c5ba3b424e0873634089cbd4758d6e59c3413ff685224f31c7686ef7759a71c332e80661f1b6d2e961425af7fbd21dc9c823f4"; 853 } 854 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-i686/nn-NO/firefox-65.0b12.tar.bz2"; 855 locale = "nn-NO"; 856 arch = "linux-i686"; 857 + sha512 = "b1394ec957b18782f4b47315a035186f94ffce9af626f9449494063245c54deeb571c9f840e18493994da84e871eb7d5abd585054c87cd8922457db8ebf56098"; 858 } 859 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-i686/oc/firefox-65.0b12.tar.bz2"; 860 locale = "oc"; 861 arch = "linux-i686"; 862 + sha512 = "460076314af3db9e501b5316ea55165e747d1edf621f23d8429129cd155fb92a11d7774908745ad6d06253bbfc445cc57a07d14421b83bf4bf71762eefbc4cff"; 863 } 864 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-i686/or/firefox-65.0b12.tar.bz2"; 865 locale = "or"; 866 arch = "linux-i686"; 867 + sha512 = "e5c45be724efbe252a7bbf4e0ef8e7f62086a5469097ca230050718fa57158c4bac224bfaa554055f05acc4565ce7e7c2d7c274da744948e59feae2f4541a803"; 868 } 869 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-i686/pa-IN/firefox-65.0b12.tar.bz2"; 870 locale = "pa-IN"; 871 arch = "linux-i686"; 872 + sha512 = "362655112e436188c81bed46fe58064b909f1fe9f30d8b1f6c0f11739470156829ab76ff05c60de0ca9e69924603b93db0288161ea1b79ffcff2b0efd12120fa"; 873 } 874 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-i686/pl/firefox-65.0b12.tar.bz2"; 875 locale = "pl"; 876 arch = "linux-i686"; 877 + sha512 = "2192b299c48b74c154198c29fb07b10562af080b5200bcba9da6855e29812587dc5750788ae30735d5d3c8dd9d2ec52006c44ef5f4195f58aacf645a705ea39e"; 878 } 879 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-i686/pt-BR/firefox-65.0b12.tar.bz2"; 880 locale = "pt-BR"; 881 arch = "linux-i686"; 882 + sha512 = "d3cce88cef29643963c6dbb5e6ffb35e4d54beee70d97f00a2a9a8dd5611d57efe7bd84efc6ad2408edf28ce35fe71016eaffab833896948d78c17d9603ae278"; 883 } 884 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-i686/pt-PT/firefox-65.0b12.tar.bz2"; 885 locale = "pt-PT"; 886 arch = "linux-i686"; 887 + sha512 = "3d20bb42522ab982d4f0d12f33cfe652bcc57f604db75b71a04bdc429fd177660a7bd969c8681784f55ac50e6b4e5eec4aaac87bfc7dc7ef7489adc903c007cd"; 888 } 889 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-i686/rm/firefox-65.0b12.tar.bz2"; 890 locale = "rm"; 891 arch = "linux-i686"; 892 + sha512 = "3bd1a044d6a1fe133d17ca8a9968cad4e9384f821d7abf35c3d3a8d5c4f6b9f47ceb7627bb888b336cd4ae147bdc95b7f5909676d9d65de8e1cfd978b531634c"; 893 } 894 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-i686/ro/firefox-65.0b12.tar.bz2"; 895 locale = "ro"; 896 arch = "linux-i686"; 897 + sha512 = "d66eb188299fbcf7d37001aa6164fc3912f0655bb262aa88f291e787241b1b689db83657a4be84a51d8fb2704d3075c32033b3a9693cc56d79dcee0c1b825678"; 898 } 899 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-i686/ru/firefox-65.0b12.tar.bz2"; 900 locale = "ru"; 901 arch = "linux-i686"; 902 + sha512 = "f59e7ed927c5313e3f272bc524da4281efb7feae46bf275ace08d4383821f7d32193eb719c72ca9873847272ec373097f731fea7a0ea324057c2b83edb283e68"; 903 } 904 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-i686/si/firefox-65.0b12.tar.bz2"; 905 locale = "si"; 906 arch = "linux-i686"; 907 + sha512 = "a871e5f2aec31f60226b336b4628a422c6a7fbbdbfbca083207c6bbb495b582ae616c4ef22dda7947a995d26f441ba6ebef069505de92fdc4350bee9b6e47211"; 908 } 909 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-i686/sk/firefox-65.0b12.tar.bz2"; 910 locale = "sk"; 911 arch = "linux-i686"; 912 + sha512 = "a9aeee27f7474b92f54c70bd818d50f7884253524613b36213cb376c9023c1664e31ccfcfcd0fbf232275262067ef10a79038ea2b98fd2925793cb8f26756e3a"; 913 } 914 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-i686/sl/firefox-65.0b12.tar.bz2"; 915 locale = "sl"; 916 arch = "linux-i686"; 917 + sha512 = "c1dd4f330171a534dae4c85c87d9ecbeb00115a208caa4cde8e30a5479a899662fda0198700144a38cc21ea0eb42085312095ce46f6548a2a182000434862efc"; 918 } 919 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-i686/son/firefox-65.0b12.tar.bz2"; 920 locale = "son"; 921 arch = "linux-i686"; 922 + sha512 = "b6bba5fb1ff51a83530e14b39b377805f562470e115dc8b1da741b938e3471e635df1748c1aa6f5f7a52cd29277606157b7054a711144f2d672dc750bee55a13"; 923 } 924 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-i686/sq/firefox-65.0b12.tar.bz2"; 925 locale = "sq"; 926 arch = "linux-i686"; 927 + sha512 = "5bd4e1e3003f656b83188a9fc457938b9d6a4e19823176d9cf472cea4ef2233627e9092d91be55d1c92c36e57339335ed0e6e202a2da5c32f62f36e5cbd82a23"; 928 } 929 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-i686/sr/firefox-65.0b12.tar.bz2"; 930 locale = "sr"; 931 arch = "linux-i686"; 932 + sha512 = "0ca72f7429da10559e66b947b2dac5382d3a910645fedf94f6c97f5116d6ee7d42ba239de0cd2082b5ce623b4b67175ec82dc4a7a1c6f203aeaceb2590d1d23b"; 933 } 934 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-i686/sv-SE/firefox-65.0b12.tar.bz2"; 935 locale = "sv-SE"; 936 arch = "linux-i686"; 937 + sha512 = "8a7b5ed5cf372666280da49c8002a23542f809940e3220a3d37385b3487958fdfe318d4683d0e3007f10de268fb1344f5e4267771ee26f9593692ce8fe5a38fa"; 938 } 939 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-i686/ta/firefox-65.0b12.tar.bz2"; 940 locale = "ta"; 941 arch = "linux-i686"; 942 + sha512 = "0f1af7b374260ce286d7f510076ca9fa210b00519db1271c0d2c243814c2ada0cb7490492cc21cbf0b7bbdc6c32f707cb1c8607113ffd6678fbdba7b223b5cef"; 943 } 944 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-i686/te/firefox-65.0b12.tar.bz2"; 945 locale = "te"; 946 arch = "linux-i686"; 947 + sha512 = "7bc2f045878b68e44c2c2c0ffe24011e46a8aabbbba47caa7d55629960230d9ca7d99775899132ec171747c488cafb5080b6b9bbe01c0e53737bfb281f7fd1c5"; 948 } 949 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-i686/th/firefox-65.0b12.tar.bz2"; 950 locale = "th"; 951 arch = "linux-i686"; 952 + sha512 = "e341e0b03322f7df198e6e9b748e9b296dec3c5dc58021dea18440ca5c7df92625429f1eb38559d3743252550da5126282d73c5220a49c33bc209c4b7769230f"; 953 } 954 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-i686/tr/firefox-65.0b12.tar.bz2"; 955 locale = "tr"; 956 arch = "linux-i686"; 957 + sha512 = "aea3ab0002884da768847b3596954c0b912863c70a194f6636729498992baf5971f45f3fecde839e501c5d1d1ac4d7f3dbef1c0f3c0eb113b1d77fe6d5cd85b1"; 958 } 959 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-i686/uk/firefox-65.0b12.tar.bz2"; 960 locale = "uk"; 961 arch = "linux-i686"; 962 + sha512 = "0f2a4a001c683101fe53e84e1e88083c42b44586c331c121b7f72497d8e68998bce0fa1a6d9ac134da7a380fb1b2e78dcd12ae097f3b33df5accd67f52c717bc"; 963 } 964 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-i686/ur/firefox-65.0b12.tar.bz2"; 965 locale = "ur"; 966 arch = "linux-i686"; 967 + sha512 = "b7161a7d3a398615963907a4340c6405589b64d2d39b5a3a1032a2d11ffdb4b2d3248a1615292782cd766f9b5ebdc6e055685a85ba5c1bfcf94953c4973e6372"; 968 } 969 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-i686/uz/firefox-65.0b12.tar.bz2"; 970 locale = "uz"; 971 arch = "linux-i686"; 972 + sha512 = "fdb287a21830aa499892629a8f3bcd6355c090aec4787953789d8ed106537de4eecafdeed627033e542652c542467fad1f42ea6a1414d4d5e4cdac31f0231cd7"; 973 } 974 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-i686/vi/firefox-65.0b12.tar.bz2"; 975 locale = "vi"; 976 arch = "linux-i686"; 977 + sha512 = "6603aba34bce11aec31355ff5f09c07b6c72acef52006217ea407a8d9377ea70df44c323eee0bf3ab622beea298e3fea8e674185eb723773ec43069bda404b22"; 978 } 979 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-i686/xh/firefox-65.0b12.tar.bz2"; 980 locale = "xh"; 981 arch = "linux-i686"; 982 + sha512 = "c225ece9270cad69a36f1c73556dd841aa82696b0f7ef59ac71dedf69be8468c7ad5463af4eaf65e91dfcc9b1bd855929c6a4b66c9d9fe6aadfd873663f56013"; 983 } 984 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-i686/zh-CN/firefox-65.0b12.tar.bz2"; 985 locale = "zh-CN"; 986 arch = "linux-i686"; 987 + sha512 = "dc36ab62716c5eda3b189f2d29e2abc60a2dcac9391e4de19fa7205d24a6bcca6cb8fd3656a6a7c20c9c74f80aa7604cb1e4fe8df4ce65b49dd26e35edc24881"; 988 } 989 + { url = "http://archive.mozilla.org/pub/firefox/releases/65.0b12/linux-i686/zh-TW/firefox-65.0b12.tar.bz2"; 990 locale = "zh-TW"; 991 arch = "linux-i686"; 992 + sha512 = "9ba31d621ea4679f8e2a82218152f2d4d4473e22e4ad728b48aa8a363193e48d0f8639e9073e6381559a64fdd2c6d43afcc560bfe56501ab915357080f81920f"; 993 } 994 ]; 995 }
+397 -397
pkgs/applications/networking/browsers/firefox-bin/devedition_sources.nix
··· 1 { 2 - version = "65.0b11"; 3 sources = [ 4 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-x86_64/ach/firefox-65.0b11.tar.bz2"; 5 locale = "ach"; 6 arch = "linux-x86_64"; 7 - sha512 = "676491fbc13496868111abba7e2615a2c32b021624f2df31c880876ef411586b1b304d48aecfe2949b42a4f5edd3002ceeed587f6c3ceac51675e4b6ab83cdba"; 8 } 9 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-x86_64/af/firefox-65.0b11.tar.bz2"; 10 locale = "af"; 11 arch = "linux-x86_64"; 12 - sha512 = "b19d107e160d1231a520b8da6530078282099112b91163971e4c6f535ae4ce7828c9ca435e6c09570788efdb64531712ad1fc48f298c3dc89ac53099cfd92511"; 13 } 14 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-x86_64/an/firefox-65.0b11.tar.bz2"; 15 locale = "an"; 16 arch = "linux-x86_64"; 17 - sha512 = "c972878867e293079ad4fd4d8718cd93ee7fcb1142ed334f2b76b203d2a0b2601a7c33d6e43e4abb9b6d668c6c0a168e00b19aa5a2fe42f0aab7030dbcbf6c68"; 18 } 19 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-x86_64/ar/firefox-65.0b11.tar.bz2"; 20 locale = "ar"; 21 arch = "linux-x86_64"; 22 - sha512 = "5d72ac8bf4b970b4acf57146364f8bcb1f526666fa2834ec344b2187950372cf79318ccca6cfeb5ae98d0558e24ce217a1664b66a64d7f2a136c9fd2f8060ee7"; 23 } 24 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-x86_64/as/firefox-65.0b11.tar.bz2"; 25 locale = "as"; 26 arch = "linux-x86_64"; 27 - sha512 = "3f3344fe3033f1ae1023038e659bd279b3b7a88163385717d670799b826faf79882c29ab8d32d2cd786ea677ff0e5eef7bc726d26fcce69c73f35aecd8a1d3c5"; 28 } 29 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-x86_64/ast/firefox-65.0b11.tar.bz2"; 30 locale = "ast"; 31 arch = "linux-x86_64"; 32 - sha512 = "0254b5fa5427e68678d81e6505329cc166920ee48498d845636134774981e7b0431805ce532ed72a7c415549a9df21e97eea23046bb678294df25f9dcae89a8f"; 33 } 34 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-x86_64/az/firefox-65.0b11.tar.bz2"; 35 locale = "az"; 36 arch = "linux-x86_64"; 37 - sha512 = "b8ea00f733fc57ebb75f088cd43e6256a69dcab254ea929fce159c128389bcbc4bb2deb75f43c3d0dbb20a632f0b007440007e74eb320f773f623db4125fa620"; 38 } 39 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-x86_64/be/firefox-65.0b11.tar.bz2"; 40 locale = "be"; 41 arch = "linux-x86_64"; 42 - sha512 = "b0cfe76930db7c23d16eb02bd3ddd0540de3790d0ef70d8650fbef1d6dade2cba094e2871ddb0d00c802f43a1e5062dfa83f4f661a12650862a022343712c4bd"; 43 } 44 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-x86_64/bg/firefox-65.0b11.tar.bz2"; 45 locale = "bg"; 46 arch = "linux-x86_64"; 47 - sha512 = "c548f0e62069743864054e70c933576e1eb314b3586dd4feb47e94889c2573f72396bb3f986db9790a8db96cf89b268b879539c616bce193c6e53179e8647f56"; 48 } 49 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-x86_64/bn-BD/firefox-65.0b11.tar.bz2"; 50 locale = "bn-BD"; 51 arch = "linux-x86_64"; 52 - sha512 = "d2f511d6dcd3dbe87225674676fba5ad9d967233013e58f349b26fc735228accbe21448f6e36d83e95a0295b3209300f24b2795eb6f5bf63189fccee503d621e"; 53 } 54 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-x86_64/bn-IN/firefox-65.0b11.tar.bz2"; 55 locale = "bn-IN"; 56 arch = "linux-x86_64"; 57 - sha512 = "bd7cc090ffec4fe44a85a1d5c03249bb17944472e1b584eb1baf3434dd2b7c4eb748e3b805441e255977be5ed0dd30bc4c66a7543cbfeb8b07f022795ca45542"; 58 } 59 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-x86_64/br/firefox-65.0b11.tar.bz2"; 60 locale = "br"; 61 arch = "linux-x86_64"; 62 - sha512 = "f939e72b652cdda4d384e3be51502760b9f22fd2c87f66831e01dfb690094a9e9f354c26f3fd70bdb8ee9d690aa8fc50993cc16d8d6f14808f511bf1437a016f"; 63 } 64 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-x86_64/bs/firefox-65.0b11.tar.bz2"; 65 locale = "bs"; 66 arch = "linux-x86_64"; 67 - sha512 = "fe8a0846167ffd84d81ab0c42679d3647bce1444855b90fe9bc4f1342533d90a8f2c63cdb9da5cfe3712f11d981db357350b67d1bb9830ff51e5d83158b2ea7d"; 68 } 69 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-x86_64/ca/firefox-65.0b11.tar.bz2"; 70 locale = "ca"; 71 arch = "linux-x86_64"; 72 - sha512 = "d025a4c3e04b14f88d66e590eb2fbc09e794210b579ebe1ea0bc271e852d73ed89a8b9762f377d6223ece95fd6207d077539e0c8d8f11ea668c5569b6fcdb35a"; 73 } 74 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-x86_64/cak/firefox-65.0b11.tar.bz2"; 75 locale = "cak"; 76 arch = "linux-x86_64"; 77 - sha512 = "48fd8b26ebdb3f1961400a8f8c570b925dfcf05b1bbce402797b71077aed82638c6f10ad38d73a11964e820568393aa16339d5834d685ff450be30306c176493"; 78 } 79 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-x86_64/cs/firefox-65.0b11.tar.bz2"; 80 locale = "cs"; 81 arch = "linux-x86_64"; 82 - sha512 = "c3249d5ef8030e6a37cbacb3a3276371f399b403513bf2870f60a5b52b4f2c21daf06d07e5021e090f0183ebbf4b4cdd01f7f3f4842c37065c237a0f412d7f8f"; 83 } 84 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-x86_64/cy/firefox-65.0b11.tar.bz2"; 85 locale = "cy"; 86 arch = "linux-x86_64"; 87 - sha512 = "ec64fd5789324af6536598aeda2e9dbc8e9066a8eb8970d40fdbbfd444c810ec3c4dba2ae610dc5afe1fc0e20a20899593bed92b164febf491cfc7f7a30ec22e"; 88 } 89 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-x86_64/da/firefox-65.0b11.tar.bz2"; 90 locale = "da"; 91 arch = "linux-x86_64"; 92 - sha512 = "87b91f8b990a656f8d820faf04826791ea778be1397f042be196f6a0342c00ae78aeaac7044e32de97c9e76ab78e960751f2336be4edb11d983a736711a6569d"; 93 } 94 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-x86_64/de/firefox-65.0b11.tar.bz2"; 95 locale = "de"; 96 arch = "linux-x86_64"; 97 - sha512 = "0ab8cf8319157b1271508c4be57cbdad2042f7a1ceafb62e488188957b96e6e5e54f33cdf33e70e92fde561c64668b87d05f65c9cd6738d1f690dc9e5452ae78"; 98 } 99 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-x86_64/dsb/firefox-65.0b11.tar.bz2"; 100 locale = "dsb"; 101 arch = "linux-x86_64"; 102 - sha512 = "550f875286291b0a4e8d8564e0b2da8e79348ff91fc7e325c4713ecc95472316eaf7d2bbdaddfc2dcc30f8d7e695a35aae9db7ba776d9002c5658926605843c7"; 103 } 104 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-x86_64/el/firefox-65.0b11.tar.bz2"; 105 locale = "el"; 106 arch = "linux-x86_64"; 107 - sha512 = "9cd49ca4e53c64bd6086340a1f967ec387effd9af8759b244e49d4edb0b0c1a39dd4e6d8e4dac78da24b25b4931b43fae288efbc2a7f1f3e00463cb1a67d78b5"; 108 } 109 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-x86_64/en-CA/firefox-65.0b11.tar.bz2"; 110 locale = "en-CA"; 111 arch = "linux-x86_64"; 112 - sha512 = "8903cbbca9b5c883586dcbf2e3556bf523c56be97d4f32dca3b04f0705e9915b2c176a03b7ebf88f7f80cd5d75a2b517bc60d3dcfac1891f67a88714fd0a21d5"; 113 } 114 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-x86_64/en-GB/firefox-65.0b11.tar.bz2"; 115 locale = "en-GB"; 116 arch = "linux-x86_64"; 117 - sha512 = "52905db983d781b8ffd149dcc93580a96433501ead363ea0323ff9fcc3a72ba31838b4a8fc8611edb72b595b06b2bc2f0833e94f0a0a1ec8c6582d2da20eeaa1"; 118 } 119 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-x86_64/en-US/firefox-65.0b11.tar.bz2"; 120 locale = "en-US"; 121 arch = "linux-x86_64"; 122 - sha512 = "9ba18c18c0de0050d35bf77e22c56bae278a0505f59a638fe053327442ad5f396d1aa9535f2866031da87b2e9025384581828633afb4b86ed5e98e5312ca1401"; 123 } 124 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-x86_64/en-ZA/firefox-65.0b11.tar.bz2"; 125 locale = "en-ZA"; 126 arch = "linux-x86_64"; 127 - sha512 = "ad774e423a51160fdd19f1e812f256e4c8b4feb75abf0c15ac3513c9d37cab2a611f876aeb6e22f828952e3e8f8063e205bb2afc7a57552604e3c6240dbeb761"; 128 } 129 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-x86_64/eo/firefox-65.0b11.tar.bz2"; 130 locale = "eo"; 131 arch = "linux-x86_64"; 132 - sha512 = "9cbf6f7f5dd193f3f5bc029ca3d1c4eb2298524345157c983a654fba1d94d66ea0ded8c077453d29e29e26b78ecf289941f2b3e3c7b6c90f4ece4d929c2016a2"; 133 } 134 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-x86_64/es-AR/firefox-65.0b11.tar.bz2"; 135 locale = "es-AR"; 136 arch = "linux-x86_64"; 137 - sha512 = "0fd78ece0d34bd47490c17620a57570e927a5c042c4c02cd3d5c7cc2a0a27ebab73e45ac085df4198dc8d0a4a037f4ac079d9c79409fd96ff4b89858facf2b9b"; 138 } 139 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-x86_64/es-CL/firefox-65.0b11.tar.bz2"; 140 locale = "es-CL"; 141 arch = "linux-x86_64"; 142 - sha512 = "cc349ef194c31930320be786461bc6e641f89803c0166756eccd0dbc5a10f2d8752b21d7606f092f5abbacbb37a7fe619b58612d68bb3f70f07862180aad9858"; 143 } 144 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-x86_64/es-ES/firefox-65.0b11.tar.bz2"; 145 locale = "es-ES"; 146 arch = "linux-x86_64"; 147 - sha512 = "2ed94f912767b7fa705c1d6b56c1940b315841b0ca109cbed4df71c6795b61dcfad922b7f661f188db812aedf21f7bc0a1d60477dd562d08ddce527e52e4fffc"; 148 } 149 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-x86_64/es-MX/firefox-65.0b11.tar.bz2"; 150 locale = "es-MX"; 151 arch = "linux-x86_64"; 152 - sha512 = "3121c9de6d64e537998ce939df9ec1cc469861019782e9a5589377147c4bfd2791014bedd2f9ca457a85037ee7d2e58e38a746a6935350445b3099bcf7ea6482"; 153 } 154 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-x86_64/et/firefox-65.0b11.tar.bz2"; 155 locale = "et"; 156 arch = "linux-x86_64"; 157 - sha512 = "3802370d78e09a3f820aa35ac17fedcf61f50569ffad075f40366a920215b6ae4c7e26db17abfc9e8597c3989ec3430281ae70e0d6f9a83848f432f6acc19701"; 158 } 159 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-x86_64/eu/firefox-65.0b11.tar.bz2"; 160 locale = "eu"; 161 arch = "linux-x86_64"; 162 - sha512 = "daf67c1c4e889cd1e9f9fa5cf7d519cc00156acbdcd8163c4240fae7644b249fc249f42d121ebc9bc8001be7ec3f9228883aeebff989f3ed7475f7079127cb0b"; 163 } 164 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-x86_64/fa/firefox-65.0b11.tar.bz2"; 165 locale = "fa"; 166 arch = "linux-x86_64"; 167 - sha512 = "4139a346fbf95c70cc21d40b744a2048a606c6c44bed4b914eeac4c4a5f94669a14e1fba4495c67af33827b694c81d7597bbfcb8bfae7cde224a33a2eadc5e97"; 168 } 169 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-x86_64/ff/firefox-65.0b11.tar.bz2"; 170 locale = "ff"; 171 arch = "linux-x86_64"; 172 - sha512 = "082daed6825f83001e741dbce2378d99337d1760b05674534a46e1ddf06b4ec1d27d06efbd5306f779df13cca4b4e1a1642a56cb45c3ca091e6cc3de8a19b96b"; 173 } 174 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-x86_64/fi/firefox-65.0b11.tar.bz2"; 175 locale = "fi"; 176 arch = "linux-x86_64"; 177 - sha512 = "9ed9c1bf36ee9325028ed6a81ed0b215efc16e5b6aac7d25679141c3d49b51730b36b5ec2cd96a1d8d2f50e46cc183c3f634407947f26ed700be24bf7720e2d7"; 178 } 179 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-x86_64/fr/firefox-65.0b11.tar.bz2"; 180 locale = "fr"; 181 arch = "linux-x86_64"; 182 - sha512 = "7453d933fd753295631e69ffe42847699d443014b11a896b1bae0153436cb6fcf19372cd73b31f7fa35e4a3585fe1f95b6c577efbc5c59c2a9a7f52613ce79ac"; 183 } 184 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-x86_64/fy-NL/firefox-65.0b11.tar.bz2"; 185 locale = "fy-NL"; 186 arch = "linux-x86_64"; 187 - sha512 = "8e3f4d8ff95e5d5ebe4633b328acebca6007dbc7ea8f6f74410d6f899f927e5c9c299910dc8c6a20fa316127c1ad4b2fcf126b5b4c66c245d13559e65e083335"; 188 } 189 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-x86_64/ga-IE/firefox-65.0b11.tar.bz2"; 190 locale = "ga-IE"; 191 arch = "linux-x86_64"; 192 - sha512 = "1346efe81aa61af6e07a8ad32fbd36a8aa3e2c952059abf5dfa94b1f1678e50016144b0b5a9cfcc30ebb433bb2d2bba0abbc2100632a36d736c1bf1f88dfd071"; 193 } 194 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-x86_64/gd/firefox-65.0b11.tar.bz2"; 195 locale = "gd"; 196 arch = "linux-x86_64"; 197 - sha512 = "f1382299b40257fb936a7b0b9a7e031b743c042b3b940b4d11c5f24cc6233ee701b327798a2e60aadc42be013ff3fdd64353c765be637c94b12b663c3de3ad7e"; 198 } 199 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-x86_64/gl/firefox-65.0b11.tar.bz2"; 200 locale = "gl"; 201 arch = "linux-x86_64"; 202 - sha512 = "6a35dae9c962888cdc190331567197d33ee0f36b6f536eaaeb947c5499f9b949fcd1dd55ca473bd83d5c9c0073607914bce87af7a99012264d66254164cf4da4"; 203 } 204 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-x86_64/gn/firefox-65.0b11.tar.bz2"; 205 locale = "gn"; 206 arch = "linux-x86_64"; 207 - sha512 = "d70a0838378da6873c23631279a0d96514a2919bb21725fc29bb21e222020e709652a487a283457203c4d5dd3b604cdf5a4710a2abab96970d8f508f8a2af9e5"; 208 } 209 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-x86_64/gu-IN/firefox-65.0b11.tar.bz2"; 210 locale = "gu-IN"; 211 arch = "linux-x86_64"; 212 - sha512 = "ce30bca8fcaec89c96eaad91b136c21f909773aa8c05939d00804b2583c742d64c7a86f8bc85291623de37db81113fd8200b5123c964835159045cc6b60e1c6c"; 213 } 214 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-x86_64/he/firefox-65.0b11.tar.bz2"; 215 locale = "he"; 216 arch = "linux-x86_64"; 217 - sha512 = "a064c0dd413c6337bf5c534d3aeabc8275610e61f6a7ab9d1fb23dd55770ca7b138431da91b8959b5d84b6b4026812ad222ffcc2ee744d1f7f27a3a404b9060b"; 218 } 219 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-x86_64/hi-IN/firefox-65.0b11.tar.bz2"; 220 locale = "hi-IN"; 221 arch = "linux-x86_64"; 222 - sha512 = "0f07659e35b46f1deb2fdc65a5efbf81062c1adc5a256bda56b6d87f39f9027a59dea0e2e538703f491721479fb28e4f720a8da556f8b2aa0e8e9733cf74ed09"; 223 } 224 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-x86_64/hr/firefox-65.0b11.tar.bz2"; 225 locale = "hr"; 226 arch = "linux-x86_64"; 227 - sha512 = "30930c155115b5f093d876a8761a3887dbfc9be4d7bf1a23454759d5f3bc0d912865e69eaa2fdb05c05d52852ca7e4e0207fcefbec10b95bb6d96eed81f33286"; 228 } 229 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-x86_64/hsb/firefox-65.0b11.tar.bz2"; 230 locale = "hsb"; 231 arch = "linux-x86_64"; 232 - sha512 = "78566ec1e6b373aaef0f1cd796cdf28b90d9f8fab466567939707eda1d3911c771356977a296086a2a73206c50ae72f91c6911e96363f3a868463d6885fd01fd"; 233 } 234 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-x86_64/hu/firefox-65.0b11.tar.bz2"; 235 locale = "hu"; 236 arch = "linux-x86_64"; 237 - sha512 = "0905488c2e3ca39afa4028643bc8e808129f1401eeac268a29b83997a46e50acfb0888d363e9392f8bbe9f919927945be8b46a6bb9fc25b0891c3655a0d3765b"; 238 } 239 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-x86_64/hy-AM/firefox-65.0b11.tar.bz2"; 240 locale = "hy-AM"; 241 arch = "linux-x86_64"; 242 - sha512 = "bf13b32cbf7b3226d3a5f1342aaf4bf1d34e073f48170d738058444456a23620c7a003011f8d9816cb1928d86589cf7fbac5911ee64de80c307a6f9cd284b2f4"; 243 } 244 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-x86_64/ia/firefox-65.0b11.tar.bz2"; 245 locale = "ia"; 246 arch = "linux-x86_64"; 247 - sha512 = "4d535b4abc5433390a9ddd14c45cdd06965bc0d168263c6d8734e4d054ea85634b9907633827de5b0a13ae2a3339f79d9f51c06620798223318da95eb084073c"; 248 } 249 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-x86_64/id/firefox-65.0b11.tar.bz2"; 250 locale = "id"; 251 arch = "linux-x86_64"; 252 - sha512 = "00de0b4222b15b4f70b23e98d31a6a181314bfb04eced0456c24559df9f7bfaa36c4930b3a60ca499eb4bb915757d3a12b1987c470860072a9387f5f92a04af8"; 253 } 254 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-x86_64/is/firefox-65.0b11.tar.bz2"; 255 locale = "is"; 256 arch = "linux-x86_64"; 257 - sha512 = "f3302b8f25c4cc51e5226a1f4bbc97ba712f353861c3e6e6764900bc224c2c28ac1e69c2e21f0a548777036874da9b00635d9e819c03feaf79b27f86f930480b"; 258 } 259 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-x86_64/it/firefox-65.0b11.tar.bz2"; 260 locale = "it"; 261 arch = "linux-x86_64"; 262 - sha512 = "7f3cc499453235ba4fe7cd9772efbf387696356d07d7cb3a2c2f1f04efc2efff42b55a166416f53bbb9786b3f6a34d86b5ffaac528b8c5ac14c54933cf75bf70"; 263 } 264 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-x86_64/ja/firefox-65.0b11.tar.bz2"; 265 locale = "ja"; 266 arch = "linux-x86_64"; 267 - sha512 = "1e4b2d6442d2a5e66888392fb0490660c33d0bf7a2497d4ce727d89158fc448a1e138e5fc63c60f96d0f24b38a5e45a15427ffef74a5c555816e8eaf2dcfc1cf"; 268 } 269 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-x86_64/ka/firefox-65.0b11.tar.bz2"; 270 locale = "ka"; 271 arch = "linux-x86_64"; 272 - sha512 = "ca8e978e7b5d7b852c8698f5459d3caafdfb86b7826de31c62ccb191051a77a97f9c8683603f27117abf64bd06fe5b72c2a776f24b642f708fc30dc5f2d17a3c"; 273 } 274 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-x86_64/kab/firefox-65.0b11.tar.bz2"; 275 locale = "kab"; 276 arch = "linux-x86_64"; 277 - sha512 = "90982c521aeda12da690dc5e406ba44b37183f8d02fa87d77ee3c86d22e0189b664e83e4c463c83db14774079543f00a667d42552c1a8e1211b89f299a90f0b0"; 278 } 279 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-x86_64/kk/firefox-65.0b11.tar.bz2"; 280 locale = "kk"; 281 arch = "linux-x86_64"; 282 - sha512 = "4a0fdb24e17c7ea56b6c5b055acabaf42de91402c022f895e09eb1af1a414ee6530bf237569fef596ec274de64c1c07af9dce52f802c4d29aa3a3fba229348fa"; 283 } 284 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-x86_64/km/firefox-65.0b11.tar.bz2"; 285 locale = "km"; 286 arch = "linux-x86_64"; 287 - sha512 = "f5cc5dd3eeb54749fd3243348d1d9da9c45e25fae6fa9d80de17084b05b8e1e4f4775a88df731623a9cd7260c4ebe7d39b9d5b2191a41949946f9d6a58ce62b5"; 288 } 289 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-x86_64/kn/firefox-65.0b11.tar.bz2"; 290 locale = "kn"; 291 arch = "linux-x86_64"; 292 - sha512 = "cd95b3c600cef8ad61a70e37716e44d41be7426cf3b92beaaa19b0d917eee6f9c19e4dda22fa4790810e2885cae7c66664a24ac37079f688f7c6ac136560df5b"; 293 } 294 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-x86_64/ko/firefox-65.0b11.tar.bz2"; 295 locale = "ko"; 296 arch = "linux-x86_64"; 297 - sha512 = "faf1687e45871ffe6810c53a54e02fb13e62ce871639fd8a865027d1620b7bf834d6f0e63a2a4137167af054ae2e511cc1abb2937e2c5b547d42f460a5f9c586"; 298 } 299 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-x86_64/lij/firefox-65.0b11.tar.bz2"; 300 locale = "lij"; 301 arch = "linux-x86_64"; 302 - sha512 = "cf2fa1dcd0db50b5a21090f0ee8396212f4125b1569a71514b2a514596b952ebe8a8a6d496540d7217289096d7bc79a7b619d47816f32a5e4ee05ef10a1c11bd"; 303 } 304 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-x86_64/lt/firefox-65.0b11.tar.bz2"; 305 locale = "lt"; 306 arch = "linux-x86_64"; 307 - sha512 = "a0baaaddd7f17b6d2654b377f94cdeecf1ba3426ed040956aa805dc4ae18360d978e1a4355719bca1e3e17acb87d128ca5f4ed934e07315d806a01b85ff89fac"; 308 } 309 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-x86_64/lv/firefox-65.0b11.tar.bz2"; 310 locale = "lv"; 311 arch = "linux-x86_64"; 312 - sha512 = "ffb3e9e97f98e38ba7e99a95a59b048dcce42a555197eee74c41c6d77788523798af76323a9195723949e1201a94a182edf5041471f9a05daaddab526a4b26c1"; 313 } 314 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-x86_64/mai/firefox-65.0b11.tar.bz2"; 315 locale = "mai"; 316 arch = "linux-x86_64"; 317 - sha512 = "779b0bc2e706d8643de7c27b71ba01c7cba5ba473c0f24d6d1e8c27d4c300e30252cc720a2f07e411e6a2ec8e523c2f20475cf805cd97c6bae91bc991c38873f"; 318 } 319 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-x86_64/mk/firefox-65.0b11.tar.bz2"; 320 locale = "mk"; 321 arch = "linux-x86_64"; 322 - sha512 = "d688be8ffca06532325389afe5debc4e4c6088d9ff7e451c701b436bf3dfdf22503a031c946ec07a5b767760c295382f2952b9cba7edbb2884962f8749038a3d"; 323 } 324 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-x86_64/ml/firefox-65.0b11.tar.bz2"; 325 locale = "ml"; 326 arch = "linux-x86_64"; 327 - sha512 = "8e66ce1cb1a4c53df09cc29c7edae8b4e775ad7eec257bde45a4bcca05685b9bcbb379ceac49a35087c2ba8dfc27c429e7e38a39e33a255986623e142997eb78"; 328 } 329 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-x86_64/mr/firefox-65.0b11.tar.bz2"; 330 locale = "mr"; 331 arch = "linux-x86_64"; 332 - sha512 = "33f1ef3c6768c526f059025f7791aee6b245379cc9c82a90b3be94b84ebf8c1cbc7df7f5fd650a681d766505fb282cc4430081f1915efb3165fc70fa9d40d66d"; 333 } 334 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-x86_64/ms/firefox-65.0b11.tar.bz2"; 335 locale = "ms"; 336 arch = "linux-x86_64"; 337 - sha512 = "0fdb50dd643b82e48253c88a2f335c08ab14c11baf2a689c4efc01792f9dabda4bdb9d03c4372d88e98b71e8de5d17f3dc42b329af705b2e85ea39d5eb918c71"; 338 } 339 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-x86_64/my/firefox-65.0b11.tar.bz2"; 340 locale = "my"; 341 arch = "linux-x86_64"; 342 - sha512 = "77cb8960fe40bbb31cbc2dbe01028552ae782a635ca333de4356099bccf0e6f270cd193198cdd0eb524644e6ae2a740f011ef32b83c4a056f6eb8e6ef9de138b"; 343 } 344 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-x86_64/nb-NO/firefox-65.0b11.tar.bz2"; 345 locale = "nb-NO"; 346 arch = "linux-x86_64"; 347 - sha512 = "9948d85b903925aa51eb8e277985b61a7c59a1a8bf4432335c6242ddc44fc44899ad17c705af7b9de81805166b4eda60f4583fd6b443c53b87c441253ed1460c"; 348 } 349 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-x86_64/ne-NP/firefox-65.0b11.tar.bz2"; 350 locale = "ne-NP"; 351 arch = "linux-x86_64"; 352 - sha512 = "b6622b716f58512c6320eaef7255079ad1bdd1fc377036b869e28044d4e681332e222c19b978a5df482109382c199092d4a055c978cbcb8067492f1f80deaf35"; 353 } 354 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-x86_64/nl/firefox-65.0b11.tar.bz2"; 355 locale = "nl"; 356 arch = "linux-x86_64"; 357 - sha512 = "6233bd8a68755d2d2dc3b212a45db0da8e1abc401289013f4e2d0284431e8b7e6aa1bb0cd05da7c370fa46fa5290c3649581ffc34d0b601fcddb8f0e7ce78718"; 358 } 359 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-x86_64/nn-NO/firefox-65.0b11.tar.bz2"; 360 locale = "nn-NO"; 361 arch = "linux-x86_64"; 362 - sha512 = "6327af0c909d597ef2bf0942d982fb233e9cfdd2baa2791144b277498c717fef4ab0b699cdef5730fe740b22634dcfc909cadd5e6e16a5961b216aa5e702d0c9"; 363 } 364 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-x86_64/oc/firefox-65.0b11.tar.bz2"; 365 locale = "oc"; 366 arch = "linux-x86_64"; 367 - sha512 = "9a40647f4e10645b3296ebf665fb8532f0fe4e5c72e10649600486bde1345c49aac14023215c46b695a22373fa8b3ed0e9156ab09727c83ae8173ebc2f6d67ff"; 368 } 369 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-x86_64/or/firefox-65.0b11.tar.bz2"; 370 locale = "or"; 371 arch = "linux-x86_64"; 372 - sha512 = "0e210c487bd3b35f6b0cd8e9b093fd815d225a62876170c84b82bc8ca060874e33f3e8c34145b1c6208316e2d6f5336878fc2ab316f7816a69403a4a3c0790cc"; 373 } 374 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-x86_64/pa-IN/firefox-65.0b11.tar.bz2"; 375 locale = "pa-IN"; 376 arch = "linux-x86_64"; 377 - sha512 = "4ab4cf233659f74066bdb3e4a1fde1c8c320677023c5dd2ab47b19ca2d831d8b4a07d3decef7c56cc34954d887a0ed9fd958935ef196afd805ba176952ba0dd2"; 378 } 379 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-x86_64/pl/firefox-65.0b11.tar.bz2"; 380 locale = "pl"; 381 arch = "linux-x86_64"; 382 - sha512 = "5b507a4e85b4349dc665445a532bc9affa0e5ddd1b17daf5f7a7cb41f62a64a8d99e6ca7a6d0d7d70c054bd2c6a8ad450d2f584406a753b8a363acbb87399539"; 383 } 384 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-x86_64/pt-BR/firefox-65.0b11.tar.bz2"; 385 locale = "pt-BR"; 386 arch = "linux-x86_64"; 387 - sha512 = "96161187292d52730eec4701c3f9f9613f228e8e5f3f3dd7b1061aae98d8ae8359906d426a8b3b61a1eb6572bdc45fde2b28479fd5281267255c6ae0bf10df99"; 388 } 389 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-x86_64/pt-PT/firefox-65.0b11.tar.bz2"; 390 locale = "pt-PT"; 391 arch = "linux-x86_64"; 392 - sha512 = "add4e3f6e5f3aad8a84387e4e75e4dae27f0fb37093792b6b1b7cabf48707deb198106a9f3814dce14cba026b56331a4562734f0a6fa6a5e9024f4419e7265a6"; 393 } 394 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-x86_64/rm/firefox-65.0b11.tar.bz2"; 395 locale = "rm"; 396 arch = "linux-x86_64"; 397 - sha512 = "ce4958a242e25e916faf2691fa8398b9e070ad2c9297cfafc0db963f4b1ece55a09dbf703eb90bdd215c9bbad70d5a835e401019190a9a04a3c7ea281c6fe25c"; 398 } 399 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-x86_64/ro/firefox-65.0b11.tar.bz2"; 400 locale = "ro"; 401 arch = "linux-x86_64"; 402 - sha512 = "2eec2d9a0b62a9535319e6477e78040c7bd2bf97077cd915c6faad44268c28962662e548a318c833f4cbf5a5e6cbf24d75c0d132268d7c3debeeed665e058084"; 403 } 404 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-x86_64/ru/firefox-65.0b11.tar.bz2"; 405 locale = "ru"; 406 arch = "linux-x86_64"; 407 - sha512 = "b66d1c65bd37dcfc34a245e6a94c2275d8d99735e79492ee6f8c09e38d4da815974ddc8aec8333526d924ed9ec5dc27b58835ac52442fd1f4724b4d482655543"; 408 } 409 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-x86_64/si/firefox-65.0b11.tar.bz2"; 410 locale = "si"; 411 arch = "linux-x86_64"; 412 - sha512 = "b7e1cd9cb0222df5c159b798a216c534ce26a100bf58530954b43e12113cdfff105f941c0d984e29296a9d50f1bcb05c2ffceec00b9f2e2bebf6c325437c5ef7"; 413 } 414 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-x86_64/sk/firefox-65.0b11.tar.bz2"; 415 locale = "sk"; 416 arch = "linux-x86_64"; 417 - sha512 = "1903384198deb7b1faa88280270a82f851c07718f8db8f55d21b0f8d0d648aecae9aa0f242f9575e40f37c137aaccad900d0d7c8401884ec53e958bd2f831788"; 418 } 419 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-x86_64/sl/firefox-65.0b11.tar.bz2"; 420 locale = "sl"; 421 arch = "linux-x86_64"; 422 - sha512 = "378ca2adf54af2df20890ae7cd0ba537dc89c8400085a774577553a677510a0b82150666783b59fde0f809bcb964d86319da9971f04a7aa5d7abdebce212e9bc"; 423 } 424 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-x86_64/son/firefox-65.0b11.tar.bz2"; 425 locale = "son"; 426 arch = "linux-x86_64"; 427 - sha512 = "f884b267639d0862b75042b3c2869361da6d02d952d638f195bbd3fdf11468f95aa07a407ac6091d3266831a03ee5f20ad088d401bb662e78edd2aec826ecc8f"; 428 } 429 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-x86_64/sq/firefox-65.0b11.tar.bz2"; 430 locale = "sq"; 431 arch = "linux-x86_64"; 432 - sha512 = "30aff4d5699c8d3671bd11e65da270b69e144ff7f6ca1a1392fe8d48a6de15fb0d3f336a0cad19db355fef95b5b749956a1a7726b1683691f0d8728cc987a400"; 433 } 434 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-x86_64/sr/firefox-65.0b11.tar.bz2"; 435 locale = "sr"; 436 arch = "linux-x86_64"; 437 - sha512 = "c25fdcb6eb66c70e37df05b4f243dd400a077b9a136fec4893668c6a494a82386717e1d439da00d275300c3b59bd295892e4b239df4f0961cfd447fa706e1d57"; 438 } 439 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-x86_64/sv-SE/firefox-65.0b11.tar.bz2"; 440 locale = "sv-SE"; 441 arch = "linux-x86_64"; 442 - sha512 = "273e0830807550ca11a695c56b6b720b775a1506b6ed1e59deae6e905b92760630c6cd5514a0e47ac0b25cab0315783f3fce40f1996394113ea28b490608c127"; 443 } 444 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-x86_64/ta/firefox-65.0b11.tar.bz2"; 445 locale = "ta"; 446 arch = "linux-x86_64"; 447 - sha512 = "86022f8e94446f3661fc8862634f7c25c2e62578eaa85b2e38c4eb8153781afb5521cb5ff20c1c8dd108f8769891ac4ec6d479dd0edbe656d45496a643b7f6f5"; 448 } 449 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-x86_64/te/firefox-65.0b11.tar.bz2"; 450 locale = "te"; 451 arch = "linux-x86_64"; 452 - sha512 = "ff8e2ed9016e545cf030cc0fa2fb72629cf3970c5db44f9e743c188458cbc091f84b6f067bb10424da6173f84e8b70f7617a06b481856b19a43e1d949a3dde4d"; 453 } 454 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-x86_64/th/firefox-65.0b11.tar.bz2"; 455 locale = "th"; 456 arch = "linux-x86_64"; 457 - sha512 = "807c0d15fbbcd51f660efdbe0fdb852d61006e9c74340e90214f75a364166e6b47614d04ad9b2bc89ca46c40fe2fd675e95d956f4fdb7163ac24f52ab9cc96dd"; 458 } 459 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-x86_64/tr/firefox-65.0b11.tar.bz2"; 460 locale = "tr"; 461 arch = "linux-x86_64"; 462 - sha512 = "c3d0425cb59f7d1e053b2d2cdf093147c5debba6d35192f2b44103d57a76be0d4bce558a41c8db7542bf72a93f4a8ae9054d32ec9017cd8f77cdf22362ca3c01"; 463 } 464 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-x86_64/uk/firefox-65.0b11.tar.bz2"; 465 locale = "uk"; 466 arch = "linux-x86_64"; 467 - sha512 = "d3e178e6ae6ba61dc4c65ec721890b5b3c7c45db17e89fc85150089c0df23824abee8c437d6894912b615bb3b237c69038182d0be990b4b03ba5cbe3f625163b"; 468 } 469 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-x86_64/ur/firefox-65.0b11.tar.bz2"; 470 locale = "ur"; 471 arch = "linux-x86_64"; 472 - sha512 = "b8136f4883df6d699bbb1986b1ef4d46142f6f549959f4cd008c3a9bfbc88bd7c6b8d283e23ee6941d5a2dba42dc9df9846899ae4159a77edc0d14d84faff6bd"; 473 } 474 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-x86_64/uz/firefox-65.0b11.tar.bz2"; 475 locale = "uz"; 476 arch = "linux-x86_64"; 477 - sha512 = "ccd15d7528ba6460a40726245e34fe5b75d4d0d002a485ab7459694383df7f7a63e5f426951a3a857133da33bcee31cc72e8bfba8bf37be4dbcfc0ec25720cfd"; 478 } 479 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-x86_64/vi/firefox-65.0b11.tar.bz2"; 480 locale = "vi"; 481 arch = "linux-x86_64"; 482 - sha512 = "7ff08fd166ee606c8ad656e1821c24bcdee42addae5cb4ec2c99ee64bc62ce7992fb0b89500ae78a435012674a190c4a372535111d0e7a69a1f0f3747161ad3e"; 483 } 484 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-x86_64/xh/firefox-65.0b11.tar.bz2"; 485 locale = "xh"; 486 arch = "linux-x86_64"; 487 - sha512 = "f1776de7a30f21c82f0507d4334974625e86acaededcb74b3ea9060558fef35ba5d26b3e40107af86f13f39794ac9bf7b4ea071ef872688b66e58b0c8d1a8ef4"; 488 } 489 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-x86_64/zh-CN/firefox-65.0b11.tar.bz2"; 490 locale = "zh-CN"; 491 arch = "linux-x86_64"; 492 - sha512 = "06b9603ae99544b6e0ebf98d7df29f9ac25913c0274c6484d68a3ce5345f00281f2647e165ef8a655591932bef79995d2c51722c814e09836502f5110ea6e3e0"; 493 } 494 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-x86_64/zh-TW/firefox-65.0b11.tar.bz2"; 495 locale = "zh-TW"; 496 arch = "linux-x86_64"; 497 - sha512 = "9b04d5772b1add41426ebd099da6d029e83086833c6410493b6ff53ca6d7a8ea1565ed73c3a4c13286c26ce882ccb02258ab1c91c3d9c4f32c7f45699b17d430"; 498 } 499 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-i686/ach/firefox-65.0b11.tar.bz2"; 500 locale = "ach"; 501 arch = "linux-i686"; 502 - sha512 = "f8a1dbd9706bb6028be6bf458929a74e4e7022c8a434c2af6accd421e0c4a38db993daf1e70f296a54011d09c6ce32899ff9c9991104f69c6318ee2a52662194"; 503 } 504 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-i686/af/firefox-65.0b11.tar.bz2"; 505 locale = "af"; 506 arch = "linux-i686"; 507 - sha512 = "77784c35f7ccb214a6660728ef6d2acf15a8d2a9c2e11ecddcb538c63fc5c9b4264b1f6962282f5687d864035ebc68bf3fdca8d4d6fa2b65734f08a8c91ce7cc"; 508 } 509 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-i686/an/firefox-65.0b11.tar.bz2"; 510 locale = "an"; 511 arch = "linux-i686"; 512 - sha512 = "1bec5e91e1df97e978a0991a9bbdc812b9e8d17f0040e2011855d468d1ef3236610d34703b79bb34be67655224645a7a66ed348e41296e791466cbe8628ea48f"; 513 } 514 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-i686/ar/firefox-65.0b11.tar.bz2"; 515 locale = "ar"; 516 arch = "linux-i686"; 517 - sha512 = "3b6c4a271f25d55fcfb05ab190c6176640e423c9bd16f540290ad882bd37afccfb66de47e7ec3cc278dcc0c5a9b580bbe41e278c16dba4b3fe3c07d2c135506f"; 518 } 519 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-i686/as/firefox-65.0b11.tar.bz2"; 520 locale = "as"; 521 arch = "linux-i686"; 522 - sha512 = "2e7981abb8dbdae73f76fa229528f396f097025ce8e5b60cafac23e96f20625d13aba7117e62fa2437434dd48ce7caf952ec50a360c22ed79d7d2c6c61a1e3ef"; 523 } 524 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-i686/ast/firefox-65.0b11.tar.bz2"; 525 locale = "ast"; 526 arch = "linux-i686"; 527 - sha512 = "82a87898cb6462655b657db5ee4cb7c173441f01673d4d3ac5351e8c58f6d209037afc92186a840a518f862c4dd85d2f471c91e5127cfd4b818fe7ae2e5ca093"; 528 } 529 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-i686/az/firefox-65.0b11.tar.bz2"; 530 locale = "az"; 531 arch = "linux-i686"; 532 - sha512 = "e1650a4ae98126fdeb39ce6d76a53505ad93703cfc9ee6bb9b7f7fa6765082d70877f3b8e6f2fdcc967cf6f39f449b46a17bf71cc52515e38da7bc229229d362"; 533 } 534 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-i686/be/firefox-65.0b11.tar.bz2"; 535 locale = "be"; 536 arch = "linux-i686"; 537 - sha512 = "3ebb1eb72a8c78d4ed30821af75122927f17a81e4865c8ee0fa04d419845d8f66792a7fd83f8bbf89c2928b52675b6031db15b8931f85c221c2a3ef3ab54dd7c"; 538 } 539 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-i686/bg/firefox-65.0b11.tar.bz2"; 540 locale = "bg"; 541 arch = "linux-i686"; 542 - sha512 = "4b6d536d3851fe5cdb9cdfdd0dac4d1eb28df34b61ef9b25a6184d61722a84118f526f97c97f1de30c8f7904cbd778a9a587ea119c5d4b54ee980e7eb66dfe00"; 543 } 544 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-i686/bn-BD/firefox-65.0b11.tar.bz2"; 545 locale = "bn-BD"; 546 arch = "linux-i686"; 547 - sha512 = "26d4325723861ac0e4f321ef8a88c2de8bfc1519c7835084249ab87d3a0b2d3036755273a373d4e3fe04a947bcca96e42519b76c2b674def077e41699538cec5"; 548 } 549 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-i686/bn-IN/firefox-65.0b11.tar.bz2"; 550 locale = "bn-IN"; 551 arch = "linux-i686"; 552 - sha512 = "41b2b4bccd610fa80e8a5e666706b53f168d29408d25522d998ea3c29ffd361376df2418a8e4619cd9e85600146fd24036693b53f19913650edcd9267d0f169d"; 553 } 554 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-i686/br/firefox-65.0b11.tar.bz2"; 555 locale = "br"; 556 arch = "linux-i686"; 557 - sha512 = "08b08f60c2f6c92fc1d80d04a9e0e0ee63881c7c78369c05196cd5f0e6d81ca2c04bfe15a98adf815474f76b22a05b3ee921c763633b0885fe2fa221787bb6fc"; 558 } 559 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-i686/bs/firefox-65.0b11.tar.bz2"; 560 locale = "bs"; 561 arch = "linux-i686"; 562 - sha512 = "4adaa4a23ddc7d6fa4d3f9ef4d74fca29cc5a69d6f933454be5124b672a109d46148b543582d86926551022482543ed285ad58a3462315ff55311ace04a6dde1"; 563 } 564 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-i686/ca/firefox-65.0b11.tar.bz2"; 565 locale = "ca"; 566 arch = "linux-i686"; 567 - sha512 = "c655c6875ea040e9485be1c02d10feb810b3f32b45713b61b2f2c5646d419f49672f876a3e227fb93e2af16ba77d88b3b4382c3e421c1f19a3e4baa79f262b6a"; 568 } 569 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-i686/cak/firefox-65.0b11.tar.bz2"; 570 locale = "cak"; 571 arch = "linux-i686"; 572 - sha512 = "6f66416cc027e676e555968e950ce4b01581b5a1ba8c60ac7b887e78f8717cbfb71dd93c80cbd4ad615e8c33685fbc1f3ec77b770a5c9de8c0e3de4fee3cbbb5"; 573 } 574 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-i686/cs/firefox-65.0b11.tar.bz2"; 575 locale = "cs"; 576 arch = "linux-i686"; 577 - sha512 = "404753e1a1cf1568b6e7d45ed90e599f951f69f471b55f0eca54f782cf39cd925a8d8844e61db1f9d12811844b618ecbc24d2bbe241e24331a38f167642a6796"; 578 } 579 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-i686/cy/firefox-65.0b11.tar.bz2"; 580 locale = "cy"; 581 arch = "linux-i686"; 582 - sha512 = "6baed406d9777c30d6bdf91ebdb49929b13ddd631ac1891db22ce69838d02153809abcc5a24088fa0f1066ed978a74d37cf6aef3c62bce44a8a4214bdd750f17"; 583 } 584 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-i686/da/firefox-65.0b11.tar.bz2"; 585 locale = "da"; 586 arch = "linux-i686"; 587 - sha512 = "f8c802efc74f56c170ed2d9e0528ab2d0c9a9c4c89dc853e7758f3fc892517e4566536150527c452101fc602c980df744a1afc0df8eae9e021899559ad34a3aa"; 588 } 589 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-i686/de/firefox-65.0b11.tar.bz2"; 590 locale = "de"; 591 arch = "linux-i686"; 592 - sha512 = "dacfc0d7392247d2f37d9d8845512485f8853b92af0c28dd69a41e6470a0c8cbf36dc53804811e843ce60cb42e873c8850560f32389b1e67c1579264f88d220e"; 593 } 594 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-i686/dsb/firefox-65.0b11.tar.bz2"; 595 locale = "dsb"; 596 arch = "linux-i686"; 597 - sha512 = "a0530ea6db3ac9b405ca41d9b412fd292e401aa2ffc85117d78c6ab8c0dc83bebbee3f238843799a5afdf46a6609b268b96ae8c3e277a9d40e644c96e49c57d6"; 598 } 599 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-i686/el/firefox-65.0b11.tar.bz2"; 600 locale = "el"; 601 arch = "linux-i686"; 602 - sha512 = "005f4ac8c9d920fad1bcad4f5b616453e33e6bfc949eaa8af8302bb4801546abab901dda901d007d3f93240e967583e8dd1dd00b223bd896e5bab96d463338e0"; 603 } 604 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-i686/en-CA/firefox-65.0b11.tar.bz2"; 605 locale = "en-CA"; 606 arch = "linux-i686"; 607 - sha512 = "bb54d182088e2c85e33bed4e29b47e5e549511a7985d747c9cd58df211aee5dbdd371c32e2049b77dc58d955dbdebafd2a79cb7ce36a1d2c18b88b9f6e668dec"; 608 } 609 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-i686/en-GB/firefox-65.0b11.tar.bz2"; 610 locale = "en-GB"; 611 arch = "linux-i686"; 612 - sha512 = "a86e4c521c00f7294bfe141ddf8979d90240b783f41343a89f19af19f7bd9e5ea9ce3b5e3b519538913b133342e95cdda11f8235c806bbb01a1dd4d2dd4e0cf2"; 613 } 614 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-i686/en-US/firefox-65.0b11.tar.bz2"; 615 locale = "en-US"; 616 arch = "linux-i686"; 617 - sha512 = "d4aa22cfc5e716f0d31718b36a4251d7c7bf4780732fc512767dea32086a5de4d3da7ff24da100300502e5c9ae3c9f61381505157a6503af3cb40867b3002600"; 618 } 619 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-i686/en-ZA/firefox-65.0b11.tar.bz2"; 620 locale = "en-ZA"; 621 arch = "linux-i686"; 622 - sha512 = "ca1a5e04a0f0be40d28d7ae39d59aac150744f303380238ddd9986fa92463b3ed5207faebc9c65dc5da60ae1aa58f2eb09a6c3d0dcce236e685a80b6a088b87f"; 623 } 624 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-i686/eo/firefox-65.0b11.tar.bz2"; 625 locale = "eo"; 626 arch = "linux-i686"; 627 - sha512 = "2fc3c1c22f87bf10c8967372f9aba56db75070ad2804ee45da4fcfe42b613072ba822733966c204ff521cedba59cc93bea814a67797017d06322025cb1f18d9b"; 628 } 629 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-i686/es-AR/firefox-65.0b11.tar.bz2"; 630 locale = "es-AR"; 631 arch = "linux-i686"; 632 - sha512 = "522ff91bd93f295ae27685e61015d7382edaa0dc2eb2d91353b4ca5db474ff3e76547d938c7822389884fde33357a95b7b8a8e3ac47cd8b942024fe6f854b3d0"; 633 } 634 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-i686/es-CL/firefox-65.0b11.tar.bz2"; 635 locale = "es-CL"; 636 arch = "linux-i686"; 637 - sha512 = "a269ea19c468fc53d577ce5cde0a509fa1288b54734a7bc25ba18db523c35795b1ee901cb85e0383ce97bb472c315acff7030caa2fbbe78abe2bd5f6694b5d3a"; 638 } 639 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-i686/es-ES/firefox-65.0b11.tar.bz2"; 640 locale = "es-ES"; 641 arch = "linux-i686"; 642 - sha512 = "8f5e60b8ae56bfdd1573b28209b808ead17f7ebc9f0d6e59dcddac9a4276ce133a9fa0fc6380567b69befc1639a330c9653f1ee8ef867843dfae4985982c0f83"; 643 } 644 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-i686/es-MX/firefox-65.0b11.tar.bz2"; 645 locale = "es-MX"; 646 arch = "linux-i686"; 647 - sha512 = "95cc84937e8a475d09df4cb9398c1d086b4077439230f11102d83472bdc2b5e5b001719efd68a5195bae9ee39b60b7d01588f3295fdd7977cda5d12d187b26f7"; 648 } 649 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-i686/et/firefox-65.0b11.tar.bz2"; 650 locale = "et"; 651 arch = "linux-i686"; 652 - sha512 = "cdd4adceebc55df21a50a6328ae094f9c4aeff66e5678cc55dbb23a3653d080281dada69ceb1749533335c29ed507e7227521b97638e1ef35795a3d5f3d80b85"; 653 } 654 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-i686/eu/firefox-65.0b11.tar.bz2"; 655 locale = "eu"; 656 arch = "linux-i686"; 657 - sha512 = "05616abf9f27f9f1f15d1ea446ef93ed164524decfb2368da6736b63b483714e3ec721f046255eb305a592672bfdd0c8a7726f198610aca87b0eeda32bbf09e4"; 658 } 659 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-i686/fa/firefox-65.0b11.tar.bz2"; 660 locale = "fa"; 661 arch = "linux-i686"; 662 - sha512 = "5fc56d77ad80882717c40e7c5e9fcbb74e02d7dfd09438ce85c858c8aedaf4037992db5a1d3320c96980e191e91be42a8d2af617cbe2f718ac107a1fcee5fa6f"; 663 } 664 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-i686/ff/firefox-65.0b11.tar.bz2"; 665 locale = "ff"; 666 arch = "linux-i686"; 667 - sha512 = "97b26e6d14a54bc25203962de2650108f93c8704b4fc67f3732fdc50807fb57c3f18646bb287e3da8d91e46e551af6093bf9031abc2b493a00ad0d192ab0ba8c"; 668 } 669 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-i686/fi/firefox-65.0b11.tar.bz2"; 670 locale = "fi"; 671 arch = "linux-i686"; 672 - sha512 = "1d75d5bd8611ff1f007625c3925c7cf1fa2b7cf3c819ba8cfa1c7c4d8f956908cb4becf2bb5857c3d43ccf8aa80edba29c585a17f75892792a49b4926cd73acc"; 673 } 674 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-i686/fr/firefox-65.0b11.tar.bz2"; 675 locale = "fr"; 676 arch = "linux-i686"; 677 - sha512 = "f863f24969a37e1b26faf89c2ccacba19acc4784b595bdb7f39849bb294e08129790bc4db65ae52f90d185be43d0814f9983953b34e8fe7bea2b53435ac40474"; 678 } 679 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-i686/fy-NL/firefox-65.0b11.tar.bz2"; 680 locale = "fy-NL"; 681 arch = "linux-i686"; 682 - sha512 = "0804073997525eafc1d09588beaca9b33207c60db298ebf2165f5e4f0ce717c2e1522da2ef7e4485218a089d4ca96a22716ed99101b9151d9da2eacc38377a8c"; 683 } 684 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-i686/ga-IE/firefox-65.0b11.tar.bz2"; 685 locale = "ga-IE"; 686 arch = "linux-i686"; 687 - sha512 = "e7b949090f33074fdeac72b0cb5fa84810c28625e190fc9740785ea11659a98220d8fddaa33df9016528f8bdaa255f56bd329af0bad31ebbe32cecb0198fff56"; 688 } 689 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-i686/gd/firefox-65.0b11.tar.bz2"; 690 locale = "gd"; 691 arch = "linux-i686"; 692 - sha512 = "e88d0dcdc0132766228ca750691371f5a1dae73b6faa9fd9f68d50763a5bef477158ef8bfa478e60fa85cf8f2e2e52136ab6e2cf2231a37a0e93718312203621"; 693 } 694 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-i686/gl/firefox-65.0b11.tar.bz2"; 695 locale = "gl"; 696 arch = "linux-i686"; 697 - sha512 = "fecc9799999edaf3f8cf2a7c883cfdc2437ac5baa4d1ca3491401eb08467007b18d671b32bd3b24435e59ee7764451cdfd3ee34722c5a8a298abac62f9bba90c"; 698 } 699 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-i686/gn/firefox-65.0b11.tar.bz2"; 700 locale = "gn"; 701 arch = "linux-i686"; 702 - sha512 = "bd5860801cf202994bf1351ddcd532574aaac4f1b88225c2144f94031ee295e8b71f7f5011214c9adc904d40f841ec19f1881bfffd112a3bdaeffa5a21b15e2f"; 703 } 704 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-i686/gu-IN/firefox-65.0b11.tar.bz2"; 705 locale = "gu-IN"; 706 arch = "linux-i686"; 707 - sha512 = "011d4a1b9f006265243faa08c0b3fa9fda406b8a7bc3c066e2518dc635629dcc6cb42785dfe627db7e3f17fa5ffb609fc199b7972d4b15e089fa851d8654937a"; 708 } 709 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-i686/he/firefox-65.0b11.tar.bz2"; 710 locale = "he"; 711 arch = "linux-i686"; 712 - sha512 = "eadb0143a28eda6912053d6fe7d528467b606d9aadcde75e28dbb40d5c005ba20caca36747d364850276128b5d491f09805b5a743667848d2b6cfdf9ec33656f"; 713 } 714 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-i686/hi-IN/firefox-65.0b11.tar.bz2"; 715 locale = "hi-IN"; 716 arch = "linux-i686"; 717 - sha512 = "0e66c0852895a95cc18fb17ad34d251b594c9f6c6606079022e78e1af8861662360fa2845b513e4d4d383b3190e76b979b18ab39175c5a5c6ef5c5985470328f"; 718 } 719 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-i686/hr/firefox-65.0b11.tar.bz2"; 720 locale = "hr"; 721 arch = "linux-i686"; 722 - sha512 = "b883ea1ef7638b495e35be3542a55ea7ef5ed1f972f96732fb59e094a75badaebdf04e86bd6bc1af0940a0b98351a780674250e00a8e9bffb1570d9e7aac5f77"; 723 } 724 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-i686/hsb/firefox-65.0b11.tar.bz2"; 725 locale = "hsb"; 726 arch = "linux-i686"; 727 - sha512 = "0ad0b245817cfa8a99e666ad3f1186efad82c246dcc30fd9025a0f269aad36f65de5327c1033a85af17c7cadcefe9dd68f477108784d21c7f47efb8b59611271"; 728 } 729 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-i686/hu/firefox-65.0b11.tar.bz2"; 730 locale = "hu"; 731 arch = "linux-i686"; 732 - sha512 = "b7d4c1f808b38f8ef6013546ceeb1452eecce288727d0c6e881027584a3edf6b1cdaa888bcdb1dd6dbc16d4ce919818b226d4a9a9131adf82d4efe27b00cd578"; 733 } 734 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-i686/hy-AM/firefox-65.0b11.tar.bz2"; 735 locale = "hy-AM"; 736 arch = "linux-i686"; 737 - sha512 = "bc77edfc03807112e07abe3a6f8460627749853b3660c5eb9d7bf6233588eea084edd6077f368030a70a992a9af3fd7f59228c27b900f7e1cd974b105844f088"; 738 } 739 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-i686/ia/firefox-65.0b11.tar.bz2"; 740 locale = "ia"; 741 arch = "linux-i686"; 742 - sha512 = "2e6d5a0bdaf6c47b1e3275f1784f7189e2155ef4863935364682b3bf1240d83dc6a0b71870b68db33709888a3b40ac4925f1d89856b8bcdaa7afc471f1554070"; 743 } 744 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-i686/id/firefox-65.0b11.tar.bz2"; 745 locale = "id"; 746 arch = "linux-i686"; 747 - sha512 = "b3fe1cc5a31f1b9745599fab425d24b96ef29037ec42694850eeb42536af53ae517baeceb616076eda68580b7d8551ddcf2a8eacb150fc47124388593670a81c"; 748 } 749 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-i686/is/firefox-65.0b11.tar.bz2"; 750 locale = "is"; 751 arch = "linux-i686"; 752 - sha512 = "feb57755f08d1d436a5832548ca242dd24400855499195e9bdc2e9266e94eec03f799e9182a5b17227156ec803d35047c9a928b2d2b54b2efe34cada93f98658"; 753 } 754 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-i686/it/firefox-65.0b11.tar.bz2"; 755 locale = "it"; 756 arch = "linux-i686"; 757 - sha512 = "6e3f7be97d35e50a6d64d44f31375e7d3b1e43ce7d806d2289d93b20a5e7de0bc7bb0842b119d6a79d4c3c5bfa5ed80f697b51b23f3fca532f315ac3b7292d61"; 758 } 759 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-i686/ja/firefox-65.0b11.tar.bz2"; 760 locale = "ja"; 761 arch = "linux-i686"; 762 - sha512 = "326077baf0adff3d6aca8fe6ca691c0b6c8e5ce2f60e0eff6cf240e0c1e0a5415f5b779b1a6ec3c93a9be93a93fc436f7d06cd55c87ca7c8c6247cf22b8b6604"; 763 } 764 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-i686/ka/firefox-65.0b11.tar.bz2"; 765 locale = "ka"; 766 arch = "linux-i686"; 767 - sha512 = "020e3be45342c548c4c3f3941b7e5abcd02aaa50531e162b28905ac19bc72b3dbd8ae42584c7365f206ef7e7d1b085569c2d66010141d7ad4c646ad804798bf7"; 768 } 769 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-i686/kab/firefox-65.0b11.tar.bz2"; 770 locale = "kab"; 771 arch = "linux-i686"; 772 - sha512 = "9bf4b3cbc7c63aec8d12684abcae5a065566c096048de521de180fcac58a9d3b7b5479d49e72bc1745109eb6d86430a4d0676f517c98741b8f4bd260836d755c"; 773 } 774 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-i686/kk/firefox-65.0b11.tar.bz2"; 775 locale = "kk"; 776 arch = "linux-i686"; 777 - sha512 = "d1bc275a20a6881581da5c2f0d6974ea2c89202a18ee3c0a18cb99b97245b751e56b26f1b4f00b8887f590ee3042a6cedb21d2c11dded8bbcd04215ea356b3c5"; 778 } 779 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-i686/km/firefox-65.0b11.tar.bz2"; 780 locale = "km"; 781 arch = "linux-i686"; 782 - sha512 = "fa758726002a85fcb1d5a1e3218d641b1c32ad20d14b64f74e85f737ae7f1e77e2f56cc4f707a238b1fa02d5afb37b6b5a7a380539d908e5bbb4b0054e932b12"; 783 } 784 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-i686/kn/firefox-65.0b11.tar.bz2"; 785 locale = "kn"; 786 arch = "linux-i686"; 787 - sha512 = "3ced6c9fe64e00865f3db229be8ba50810cb1eb572791375e2f32e80d632044f83c285836ae37fb395e35224ecc88b23f29a77996975a66756f5d0468c584611"; 788 } 789 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-i686/ko/firefox-65.0b11.tar.bz2"; 790 locale = "ko"; 791 arch = "linux-i686"; 792 - sha512 = "78b99cbebefcb805066f89d97299b83c8482a3a7d0923636dee0d46efd559afb09537525c31b6a64f434982aeb2c695edf25f5b7bfc7859c4d150080782f5b57"; 793 } 794 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-i686/lij/firefox-65.0b11.tar.bz2"; 795 locale = "lij"; 796 arch = "linux-i686"; 797 - sha512 = "cb5900ca93902d3e49faf6f47c60fe24f80a7dca59931686c56d84d75d86bb42ce532b660ffa5d31b8ff2cba53ff0a263a0199f9231051ff374b4132e3877bde"; 798 } 799 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-i686/lt/firefox-65.0b11.tar.bz2"; 800 locale = "lt"; 801 arch = "linux-i686"; 802 - sha512 = "6eb5561fde3afdd01aee4de96bf09096841aa618d4e30079a7e78c169c63f17868169b63022a92bff0445597ebb0c386359c37fbfccef19781ad4d4ce86e7fde"; 803 } 804 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-i686/lv/firefox-65.0b11.tar.bz2"; 805 locale = "lv"; 806 arch = "linux-i686"; 807 - sha512 = "06794fad7072461cd58f004ba10e4cb7c0b40342062f562481d8748294da9eb1daebaceb037d9ec62a1adf35525123e69e17d1d8341c91b7a92f455a482b068a"; 808 } 809 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-i686/mai/firefox-65.0b11.tar.bz2"; 810 locale = "mai"; 811 arch = "linux-i686"; 812 - sha512 = "3df52a9a64d3f521fe8c6e1af0d8062e74c86e8c9bcb8f11968d0e1a9278720dd87d8ffda2fd17ee1c94a8eda3dc6d3b594f37bc46b6ccc657d53cf02c071c46"; 813 } 814 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-i686/mk/firefox-65.0b11.tar.bz2"; 815 locale = "mk"; 816 arch = "linux-i686"; 817 - sha512 = "5544ec41332241d68422b558008e1ee59227cea6a6916c925cded1ceb97068020d91d745253614af799f3792254138bd62f487b788cb32b5bc2f32d4d348ce25"; 818 } 819 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-i686/ml/firefox-65.0b11.tar.bz2"; 820 locale = "ml"; 821 arch = "linux-i686"; 822 - sha512 = "e20f9b203e386ddb37f40ced401ac5c9b698c2ce4f128f87570aacd4b414d1bf1d7e97b485f1c475beb5004b1121521ac4e1efd31b34f231840fdc5c1f28a60a"; 823 } 824 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-i686/mr/firefox-65.0b11.tar.bz2"; 825 locale = "mr"; 826 arch = "linux-i686"; 827 - sha512 = "e6ee72891dd64ed94f54a8d59500709cf8126e8a574c80985f7dd96eb645c299e6ea04e5e41b142451f4e8a985d456706f78841a35bb9e961f663dd255d9154a"; 828 } 829 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-i686/ms/firefox-65.0b11.tar.bz2"; 830 locale = "ms"; 831 arch = "linux-i686"; 832 - sha512 = "9fb7b62bcaca731ae078def1c6795cd7f941198453e49ac52992818d304d7f82a06cb396ab974e69d339ca540c834fef5e66b02ed2b33a9df5548d7886969064"; 833 } 834 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-i686/my/firefox-65.0b11.tar.bz2"; 835 locale = "my"; 836 arch = "linux-i686"; 837 - sha512 = "8b3b8658d7a491fb5f8824ace789a383a9254ae3b2da8b267e5f7e71df7b5de3518c1608e16a7f2e0c9359226e4e8b83edf7ed9a312c0d8a54f33dec1345e920"; 838 } 839 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-i686/nb-NO/firefox-65.0b11.tar.bz2"; 840 locale = "nb-NO"; 841 arch = "linux-i686"; 842 - sha512 = "94b27abe32740f2378a8740a98a48074a4944be9d513599c7dcc58992ca4d0821738865dcd94bae4386779ee65d9d00e040548d6ebdae71974695655a2890c80"; 843 } 844 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-i686/ne-NP/firefox-65.0b11.tar.bz2"; 845 locale = "ne-NP"; 846 arch = "linux-i686"; 847 - sha512 = "d60fd789c7a9db361c8a39e2e1d1f7320da5148fb0c89b371c434e7e8323b176aaee59178b51cc6410e283839d043440a19ea991b94bbb28585a0a16a43e50e3"; 848 } 849 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-i686/nl/firefox-65.0b11.tar.bz2"; 850 locale = "nl"; 851 arch = "linux-i686"; 852 - sha512 = "4d9230b5a518617fc60956e77a9cef863568e220a33fa579175662a87fdb694c1b78f158a3ddd17e250479cc9c92c8926c77144ec55db2dd70298bda2e73451e"; 853 } 854 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-i686/nn-NO/firefox-65.0b11.tar.bz2"; 855 locale = "nn-NO"; 856 arch = "linux-i686"; 857 - sha512 = "c183e0ec8b04f0f9a369397a836e8dcee964ea11aecd92d1c3e2cce4ff10c51d749b85b41233a6d7094896e45f11e81b99bcb9b91fa60184e2bf57dc16f817e4"; 858 } 859 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-i686/oc/firefox-65.0b11.tar.bz2"; 860 locale = "oc"; 861 arch = "linux-i686"; 862 - sha512 = "9f61a0fbbe2eaae1b218a5bea57ce79a75452bec995d95d5670c59a897429a01cbe60803237457853a2bd900fd4945d76a898f853b2c87dc142a29f3c1b01d3a"; 863 } 864 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-i686/or/firefox-65.0b11.tar.bz2"; 865 locale = "or"; 866 arch = "linux-i686"; 867 - sha512 = "65cee4624566e1024a5995d66799b0c846d9f04d931b6205251f888a0e9683e7dc997f48fcfd7768b34433ee3d3fa04c513f08dd3814069c22dbf488627a406a"; 868 } 869 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-i686/pa-IN/firefox-65.0b11.tar.bz2"; 870 locale = "pa-IN"; 871 arch = "linux-i686"; 872 - sha512 = "93ca34b0f1ce268cb196cef8dfbff54035b34c4fbb6e982eef87e5e51d8f99e69e40708593cd74fd3f2794be7231d73309354d878bb48900855b21d56e7a8978"; 873 } 874 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-i686/pl/firefox-65.0b11.tar.bz2"; 875 locale = "pl"; 876 arch = "linux-i686"; 877 - sha512 = "b02bd094970841311cf3aa8626d9e91badb750c762ade70d2aee92009da66ef6fc4b7b14660c3572e8bd45239e28acff3fac56999b9e5995430078736f3340c0"; 878 } 879 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-i686/pt-BR/firefox-65.0b11.tar.bz2"; 880 locale = "pt-BR"; 881 arch = "linux-i686"; 882 - sha512 = "965d775ef036393a9525eb7448ec45422479e50343ff756401fa48b3af3a57450dca729bc926ea0b1bb1503fb0a8d3332e93950adbd502c5521ab0e8456e6c5a"; 883 } 884 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-i686/pt-PT/firefox-65.0b11.tar.bz2"; 885 locale = "pt-PT"; 886 arch = "linux-i686"; 887 - sha512 = "4648ba158655cf82cab4a0f4245afeafc2e0999ce972cf7119dbe19b37b407a36562ba4d95b2859bd015842bf8d4432f00b7240a1337288378d92f63f8749840"; 888 } 889 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-i686/rm/firefox-65.0b11.tar.bz2"; 890 locale = "rm"; 891 arch = "linux-i686"; 892 - sha512 = "4894463178e1cd569b20b2d94863eb8f89517eb8f16c2650662bb822de38a5b9f07f72b413ac872bc87a83416aa917802eecb4d15fb90336169b9ac102209f65"; 893 } 894 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-i686/ro/firefox-65.0b11.tar.bz2"; 895 locale = "ro"; 896 arch = "linux-i686"; 897 - sha512 = "091ea97d7ae35484dfc7b3fb26b9ba1452001a70b87aec9a5ce74d241f55653e541475a75d097d1d4524b804d6c7cfa15fad64421a639cade425f74b9501c7d6"; 898 } 899 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-i686/ru/firefox-65.0b11.tar.bz2"; 900 locale = "ru"; 901 arch = "linux-i686"; 902 - sha512 = "ea88c3ae959a361dd41adbb77c37530d02a0b599612e62ee435443eb5a783c19146c97a46b2dd6a1ddd6b6b2e3b3f7b42c6cc4829facf30b0d7c586fcd06ae76"; 903 } 904 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-i686/si/firefox-65.0b11.tar.bz2"; 905 locale = "si"; 906 arch = "linux-i686"; 907 - sha512 = "ffdebba332ddc0e49b30c3b79d58f70b37945b5af37383791c6b950686d44384ad3d45a626fa67243515a315a8d91533088c121c223c1970233a10d01086339f"; 908 } 909 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-i686/sk/firefox-65.0b11.tar.bz2"; 910 locale = "sk"; 911 arch = "linux-i686"; 912 - sha512 = "f5210e01bc281c91ca950686d8c945cc0ba3dff131fb65e2b2e91bff4569b419f343718055cb3b7ac831bcbcf1fa9de4ede7c208733034e39771dc04dae1cf5d"; 913 } 914 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-i686/sl/firefox-65.0b11.tar.bz2"; 915 locale = "sl"; 916 arch = "linux-i686"; 917 - sha512 = "15e9d8b0f59b0bc81de468bf0c42c5353857d7cad3077dd9fd0814a7a788d7b6c097495707752919f85176a5efa32fc2b9d8f2d8d7b36da5f220efa3f497546b"; 918 } 919 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-i686/son/firefox-65.0b11.tar.bz2"; 920 locale = "son"; 921 arch = "linux-i686"; 922 - sha512 = "8bfe98ab86256366329a8b4330077d8823df724a9a3156558c9685e02e7773c4a82f967e3312f1d239cf9f942f07774f4aab8a24e1e61473bc6d12d939098b7a"; 923 } 924 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-i686/sq/firefox-65.0b11.tar.bz2"; 925 locale = "sq"; 926 arch = "linux-i686"; 927 - sha512 = "b64505368ef8b6950b32adb6089d648252a9e278077010eaa0cd382358aa3d56d580cde87e756aafa857679a8cdffaa3d27e7fafa4e8e232e68dde5fcfe4b18f"; 928 } 929 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-i686/sr/firefox-65.0b11.tar.bz2"; 930 locale = "sr"; 931 arch = "linux-i686"; 932 - sha512 = "1af64aef1cf79c57d1e445e54b7940a5dd2603542958017a17dfd63c73452ef98a27b6d0f9314146414d099b4c3fddac73f67155d9fba4cf79f2a698adaff5c5"; 933 } 934 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-i686/sv-SE/firefox-65.0b11.tar.bz2"; 935 locale = "sv-SE"; 936 arch = "linux-i686"; 937 - sha512 = "5e0b5faad1ed6ffe010f5317a7e19ee27684fc6aa661426ee2a7b207a795ea557c292df12b6ddd513e49bb907a7fab61784ffa8a0e91377768782e8753d2b12e"; 938 } 939 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-i686/ta/firefox-65.0b11.tar.bz2"; 940 locale = "ta"; 941 arch = "linux-i686"; 942 - sha512 = "b83d43e7c74567f9d1fc0c0d23ca257bbb395c26f89686a16a83eba864f182ee93dd10f13ce672bb00c5679133b5b19884833025edb70eeb786b484d209c25c3"; 943 } 944 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-i686/te/firefox-65.0b11.tar.bz2"; 945 locale = "te"; 946 arch = "linux-i686"; 947 - sha512 = "7b9f765b38aff82be642f54ec03762519de8ac564e5513a7cee888f030f71e022318fc3e66a014ef25c70ebf9dec0dfa8eec21395e884fa7a9db40b4a798bf1f"; 948 } 949 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-i686/th/firefox-65.0b11.tar.bz2"; 950 locale = "th"; 951 arch = "linux-i686"; 952 - sha512 = "f9352dcfb9ea3e651dccc1fa523a3383837928bce05f097aacaa8e50e0211d0207d4ddebaedb686dd425becabf5c800a6f026e6914737536b5b93b1c06e6609d"; 953 } 954 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-i686/tr/firefox-65.0b11.tar.bz2"; 955 locale = "tr"; 956 arch = "linux-i686"; 957 - sha512 = "7bdd7c378bb506443c81cc375193d303abc6256e07b91e3f0e76103a966c29d29ae1ce8e39d246da1a2d7ae6aa4df71787512ccdb0d277c607dc1c6bc47ea436"; 958 } 959 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-i686/uk/firefox-65.0b11.tar.bz2"; 960 locale = "uk"; 961 arch = "linux-i686"; 962 - sha512 = "fc83c8cad9ecf3ac052ac8a049af8eb13726fb95eb66767dde41819dc96544f4d3020ee67047ad69fa29c81f9fbae73c6669168526c845d284b43aaec0a1abfd"; 963 } 964 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-i686/ur/firefox-65.0b11.tar.bz2"; 965 locale = "ur"; 966 arch = "linux-i686"; 967 - sha512 = "aa76258da31bb46ecb171bd7c29ec92a0fc0b06fdef81212416a0f7be911025c567d7edc7e3cd147e949cb2c4481e092f6c37fc6a5c041967bf5aebc7db41e9a"; 968 } 969 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-i686/uz/firefox-65.0b11.tar.bz2"; 970 locale = "uz"; 971 arch = "linux-i686"; 972 - sha512 = "465df0aaba1960ac66286319de797ee45961ec4900f95315211b514ac16c2374ca297430e74f49144c0b2803f3ac759e141f53edefb22397706e13ad6775d7dd"; 973 } 974 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-i686/vi/firefox-65.0b11.tar.bz2"; 975 locale = "vi"; 976 arch = "linux-i686"; 977 - sha512 = "37eeb9d604aaf9aaa07ab067004fd82722e1c38f664f9050f2dedc23825edf4c3d379bc8e6f12da30a4af8a301e0bcf50404c3961f177543432d3c302356100d"; 978 } 979 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-i686/xh/firefox-65.0b11.tar.bz2"; 980 locale = "xh"; 981 arch = "linux-i686"; 982 - sha512 = "62a0f3e0ecd6a7155b02b7ce65b20b9dd6fdddb640bc53460b79ae4d4bbe834c9815aa5e6af23a193b6e0310526f1e31e7b1a5217013a5accde44a899bfe2a6a"; 983 } 984 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-i686/zh-CN/firefox-65.0b11.tar.bz2"; 985 locale = "zh-CN"; 986 arch = "linux-i686"; 987 - sha512 = "71668c21909454e55c380ee1f90fe15e7496f5945c6add026f2642d98651aa08dbf6f8b0068626a2fc780921308c41f55e2355f5a1b988fcacfc49a677d8e352"; 988 } 989 - { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b11/linux-i686/zh-TW/firefox-65.0b11.tar.bz2"; 990 locale = "zh-TW"; 991 arch = "linux-i686"; 992 - sha512 = "8935b49adb4b1503ddc96bdbc5f8e3f2eff927839d854c7a067aac7704a0456d29cff3e2ed0d5fc1fe8191dae4cf97ddd14cd6d24da42763bb0005f8f76b59e8"; 993 } 994 ]; 995 }
··· 1 { 2 + version = "65.0b12"; 3 sources = [ 4 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-x86_64/ach/firefox-65.0b12.tar.bz2"; 5 locale = "ach"; 6 arch = "linux-x86_64"; 7 + sha512 = "c7e801aeea4a4f70df2f9e574e0fed987a29b5ecd04f7fc37414aa61e8df388e788a038f446f4aeecde17720adba3ffa2c7925116c7c04ae5741e03315a25cb6"; 8 } 9 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-x86_64/af/firefox-65.0b12.tar.bz2"; 10 locale = "af"; 11 arch = "linux-x86_64"; 12 + sha512 = "07c169ce9c27d2a22968699e3b1e7564a3e24066f568ce2aeb6e6c28874452ff21a350d7f2553f5b308d5dc33beda0951e08f4b48e74c6522fa53b5e2fb42acb"; 13 } 14 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-x86_64/an/firefox-65.0b12.tar.bz2"; 15 locale = "an"; 16 arch = "linux-x86_64"; 17 + sha512 = "ced9cb1bbd8944e6d96b4479296d0d12ea52dac8fae80e60db53313ae9d37744fe0846a3d81c3331e6cc52d404c2ff2e2e4c0b14acabcacabfca375531009135"; 18 } 19 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-x86_64/ar/firefox-65.0b12.tar.bz2"; 20 locale = "ar"; 21 arch = "linux-x86_64"; 22 + sha512 = "88492e88cc77be2b6251d9fbc7e667d9eb930469a9148a0c455fd03b0c4488a79a2b522428fbb774319bba8f2c99aa9eaba11b64ab35d90312b2439abc6b0ad8"; 23 } 24 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-x86_64/as/firefox-65.0b12.tar.bz2"; 25 locale = "as"; 26 arch = "linux-x86_64"; 27 + sha512 = "6c98c4b2a6f22f5e433164999c00a4d2c42f7722131e7219548742baf6884218606aa237d415ed3803b6ffade3d6afd04a36edd63ccad1b61ad51df6bc9a9843"; 28 } 29 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-x86_64/ast/firefox-65.0b12.tar.bz2"; 30 locale = "ast"; 31 arch = "linux-x86_64"; 32 + sha512 = "789804535ba52c81eecb2954dfafdf36ee7287c2b0670688b6bf6fc47424484dadf4bfb54c72f81fc5449d4f5678348015a81783f901cba9e656c0eb6ddff60a"; 33 } 34 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-x86_64/az/firefox-65.0b12.tar.bz2"; 35 locale = "az"; 36 arch = "linux-x86_64"; 37 + sha512 = "b82e9a99dfb5eb4a73f88873e26d1ffeb7dc1f63d183d5e8cb7b678763ac101cc790739fbdc73cd84883c63368085472105d4ab15fc6938d006b89891762b0d5"; 38 } 39 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-x86_64/be/firefox-65.0b12.tar.bz2"; 40 locale = "be"; 41 arch = "linux-x86_64"; 42 + sha512 = "cec5411ba065f3bac0b62221bd4dc04cb142d919149c72c74aa544fab4de6bb8cf7c7366ac491891884d8e93316210a77c410aaed37aad149b1553f3d6069adf"; 43 } 44 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-x86_64/bg/firefox-65.0b12.tar.bz2"; 45 locale = "bg"; 46 arch = "linux-x86_64"; 47 + sha512 = "120b3408bfaba89bfe883abacf8bf8a2b4c49bbc39f50f8fbbaffb99b588c004a2d45f0da67445d1fa1955d956b5ceea0a60ac9f56a5be8cb911a698b877a28e"; 48 } 49 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-x86_64/bn-BD/firefox-65.0b12.tar.bz2"; 50 locale = "bn-BD"; 51 arch = "linux-x86_64"; 52 + sha512 = "0ea135cd16eae0b7fc0a73779db4c0c619daa66fa5182e955f9e28bcf074732d0465d17366ea91cf6a15a5725b434abf8e8f727b4f29cf43883c5b4fda62a377"; 53 } 54 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-x86_64/bn-IN/firefox-65.0b12.tar.bz2"; 55 locale = "bn-IN"; 56 arch = "linux-x86_64"; 57 + sha512 = "713f80a23ee5ef4e4dbea6da71a1c494877b152289eb432d72fd8a14f430b8090adca8fef8fa487c959896dc40601d268a93c8365f9d4f834f204b2395b6585c"; 58 } 59 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-x86_64/br/firefox-65.0b12.tar.bz2"; 60 locale = "br"; 61 arch = "linux-x86_64"; 62 + sha512 = "46e1e67e770c0df98e13e78a4bee20b572914c1ce2456a1d13bd8f3483ae9fe32edb39c7f6ed50699aaaef70054c3d484dd4ed5c0cd5ab2fe0848cc6efb259d1"; 63 } 64 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-x86_64/bs/firefox-65.0b12.tar.bz2"; 65 locale = "bs"; 66 arch = "linux-x86_64"; 67 + sha512 = "4c96b842720e038d03c762207737e73cbbc374d8cfc36ea938518549524f2a0b52b4f68431973ad4f2ac6a6761644e37a8905adfbc83747f9150d84351f84c55"; 68 } 69 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-x86_64/ca/firefox-65.0b12.tar.bz2"; 70 locale = "ca"; 71 arch = "linux-x86_64"; 72 + sha512 = "a663b0ad52de947eedc0a6a58ad8a281005b0b053fdf044427cc7513b1ada110161ba3f8c14b4bd205142ec9f18a46888f61050c77b4998cf2174c6b33047c01"; 73 } 74 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-x86_64/cak/firefox-65.0b12.tar.bz2"; 75 locale = "cak"; 76 arch = "linux-x86_64"; 77 + sha512 = "d0fcb9fb6c02b88ad6ac87df7765be517ac83c1e3e20ecbca44316ae3dc5cd2b62ea25337c10d076c5a46a279a9a03d400448a75420653ba90171448cb1b72b6"; 78 } 79 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-x86_64/cs/firefox-65.0b12.tar.bz2"; 80 locale = "cs"; 81 arch = "linux-x86_64"; 82 + sha512 = "5475781a23bba12a2d1cf54d257688a7d7a809b57ccceb456ba7c475d22ead4c9671b1dd8975b1d227db19540eb69bb38d7b83eb0757bee959796066706e7870"; 83 } 84 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-x86_64/cy/firefox-65.0b12.tar.bz2"; 85 locale = "cy"; 86 arch = "linux-x86_64"; 87 + sha512 = "65ad65951386b8ffac30095e3a0f435505fdf716273a94840462fab3a18558366359ec40a09aad4ee35925ad1b1c15de954460f0f4f173aedb35d5b545c6b50e"; 88 } 89 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-x86_64/da/firefox-65.0b12.tar.bz2"; 90 locale = "da"; 91 arch = "linux-x86_64"; 92 + sha512 = "de24f2e713b9166170f8b3ea1f4fdef3eb4155d2612b30b669db5357a4a31134cc1337ec9f6418b81ed6eca5869551c7a6641d52f26cd2cb732ce88ffd6d6083"; 93 } 94 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-x86_64/de/firefox-65.0b12.tar.bz2"; 95 locale = "de"; 96 arch = "linux-x86_64"; 97 + sha512 = "358632e42f6a0e6075385fdad197d7a8ffb130ae6c7fc7fb2c476cae3e2ddaedb88d824c00ef46d9c93de404c1d5828f9f82b21a406ba1838b8619195394f422"; 98 } 99 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-x86_64/dsb/firefox-65.0b12.tar.bz2"; 100 locale = "dsb"; 101 arch = "linux-x86_64"; 102 + sha512 = "6036cf0e5d9fd996a5180b48773543f88ff50ddfb0fc647dcce42362fe5451e247a97029d7d7ea5151dcbb8fbf08d56aa74a726a512cb887ca102b858eb5b478"; 103 } 104 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-x86_64/el/firefox-65.0b12.tar.bz2"; 105 locale = "el"; 106 arch = "linux-x86_64"; 107 + sha512 = "254722f83e96d53f25cfac42fa3f692c2b1eae5ba491b08783001ba2b2c2a3047e98bf966c72636ce6d659f7acba9b746446b4f9c6acd633ebef9fb733201a4a"; 108 } 109 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-x86_64/en-CA/firefox-65.0b12.tar.bz2"; 110 locale = "en-CA"; 111 arch = "linux-x86_64"; 112 + sha512 = "4c7d46eef86b826bc401e57489d8dd8ae341ed2227df63985bff4720c17d62756524198a276a85b5f502d9860cfb7e0e1c38199aa9c597b36f1ea446c88e5f81"; 113 } 114 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-x86_64/en-GB/firefox-65.0b12.tar.bz2"; 115 locale = "en-GB"; 116 arch = "linux-x86_64"; 117 + sha512 = "388d97940d3d6984cb7e8e7c17c6f9dad081c92baad0542d95fb4df87ff6654113d30950c525c9296b86665132cae2dd45d076af77449785f1a832cff9991083"; 118 } 119 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-x86_64/en-US/firefox-65.0b12.tar.bz2"; 120 locale = "en-US"; 121 arch = "linux-x86_64"; 122 + sha512 = "82d0604b331d6f6ec9581cd7a70dd940e83ca6c568f5f33cc859deab456079721bea67ca65dd98e72141ec293e178088295d9287c952e000bd73180ea58daef0"; 123 } 124 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-x86_64/en-ZA/firefox-65.0b12.tar.bz2"; 125 locale = "en-ZA"; 126 arch = "linux-x86_64"; 127 + sha512 = "6e35e2da95b3932d48d9b3cbffc6488c7bd153cdec0884f861692d5564a0a7330cfe1147d9bd295e9aaf51438ed731e7c137a656f78c89f1e1b1d85416a5ee88"; 128 } 129 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-x86_64/eo/firefox-65.0b12.tar.bz2"; 130 locale = "eo"; 131 arch = "linux-x86_64"; 132 + sha512 = "bfbdaf20b9cf0e0680b87dca2a694d8976345e51e6e9831f48667e75c2ef9984db896cdad2697d376cccb44e14cb04c83116d4db0ed976ef7959cc02503043e1"; 133 } 134 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-x86_64/es-AR/firefox-65.0b12.tar.bz2"; 135 locale = "es-AR"; 136 arch = "linux-x86_64"; 137 + sha512 = "0f22cd03b7300d8eee536871c65cd971a44dd174e81d0df0f63a41592ac510e11169a81f921940470485a76f15f21c99a176661c6f02413c0ca2b76e75ac69fe"; 138 } 139 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-x86_64/es-CL/firefox-65.0b12.tar.bz2"; 140 locale = "es-CL"; 141 arch = "linux-x86_64"; 142 + sha512 = "13bd1026abc920d1008ceb3f3c6339fda19e6ed1d03d58bd89065d458c03d7b2c79171612e1a753c7abc9d0e51c5a157e45162ebfe71276e1d0f01cfcddf1595"; 143 } 144 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-x86_64/es-ES/firefox-65.0b12.tar.bz2"; 145 locale = "es-ES"; 146 arch = "linux-x86_64"; 147 + sha512 = "4c0d0bad3563348b7ceeb30a3c4c268c346eb5c763276d969a3f2a264aa56c490f94e9c56ba062d1719508cf58fc5c692156764b1d7ca3a1d5ea28ac805ef950"; 148 } 149 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-x86_64/es-MX/firefox-65.0b12.tar.bz2"; 150 locale = "es-MX"; 151 arch = "linux-x86_64"; 152 + sha512 = "8f21e8bcb369ad789ef99837be9de893e703664245870033f9c1cb2754e94887c67d5189bac7dbe39c5425a00d83067872ce73834d39538821a2d8c42e0309c1"; 153 } 154 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-x86_64/et/firefox-65.0b12.tar.bz2"; 155 locale = "et"; 156 arch = "linux-x86_64"; 157 + sha512 = "09dcfd8b9b0802c52b91b3bfd58c317457a7edcdd9ab971dbc6e464e683a3c3823c42461c3b64fad0786b2dac9aebd757d492925f5a4539f9792e1b11a331564"; 158 } 159 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-x86_64/eu/firefox-65.0b12.tar.bz2"; 160 locale = "eu"; 161 arch = "linux-x86_64"; 162 + sha512 = "6d3d88639bd0b871d5125c67b50657e504babde9753e243712187fc4b7ba5fcd2a5b0bc6bebea35e7541fae09a41a07f87056d5553317881dbdea5597b46e2ff"; 163 } 164 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-x86_64/fa/firefox-65.0b12.tar.bz2"; 165 locale = "fa"; 166 arch = "linux-x86_64"; 167 + sha512 = "e10eb40eb36f5f7a81ba7207582d6960ef32253617ae8e4a11c9356353dbfcca335236d156b4f1d5389af0f3051b3c27f52080e5702d51eb3da1ec1bc836c46d"; 168 } 169 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-x86_64/ff/firefox-65.0b12.tar.bz2"; 170 locale = "ff"; 171 arch = "linux-x86_64"; 172 + sha512 = "3f67396e007f83be8449a211844199d3da7d155f5c99b7ed11913fbeff311ca044de18b085499f2ef4ac24fb5b262377862dc6d24f1729666ed326c2809a5311"; 173 } 174 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-x86_64/fi/firefox-65.0b12.tar.bz2"; 175 locale = "fi"; 176 arch = "linux-x86_64"; 177 + sha512 = "f0de82451da119354100ce03ac95b07df2222729afd9a0387ebecbc4e81877f65a8409c873e1862bb2439ac30b50f3c1fb736e37b1a61626ff43cd5ad47fd8ab"; 178 } 179 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-x86_64/fr/firefox-65.0b12.tar.bz2"; 180 locale = "fr"; 181 arch = "linux-x86_64"; 182 + sha512 = "e4bdc80e78de8ce5fe6bb51aa9588bda38be4020bc76c527d8121a8a3fc203fa6f2c2330d4dfdeab00d7d3ffdb61183aa9df37a5422f1241069b47ff707babee"; 183 } 184 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-x86_64/fy-NL/firefox-65.0b12.tar.bz2"; 185 locale = "fy-NL"; 186 arch = "linux-x86_64"; 187 + sha512 = "bbae2b56ee702abce48f57200d2e08d99fed7f98b683867fdd3249a43963662ac4b2696c0afc464033651204eb7ca05d063092122b584f8378017b4617f91b31"; 188 } 189 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-x86_64/ga-IE/firefox-65.0b12.tar.bz2"; 190 locale = "ga-IE"; 191 arch = "linux-x86_64"; 192 + sha512 = "83d67d99dc5980f8c33ca05fb1547a34c3920c807057f890379b9610e95d4268bde884ca44e7fb0365eaa92d73a28d0b441fab235cece72e5b40620a576ed819"; 193 } 194 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-x86_64/gd/firefox-65.0b12.tar.bz2"; 195 locale = "gd"; 196 arch = "linux-x86_64"; 197 + sha512 = "8e977fb7ac9d1c796452cd505659c29abae899960395dbe722ca643accd5a0963e9b4ac173b33867f464b4718629504bbb2a558df337a52ff8885ffd2774f4a0"; 198 } 199 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-x86_64/gl/firefox-65.0b12.tar.bz2"; 200 locale = "gl"; 201 arch = "linux-x86_64"; 202 + sha512 = "cc5a64944feca2851c2db6f75d7344f795c3866cb156a3da7a5e9fcf76a4202438c7bf6ae5fee0aac969c072e865650cf691b3e46542006516b1fca83605b9d3"; 203 } 204 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-x86_64/gn/firefox-65.0b12.tar.bz2"; 205 locale = "gn"; 206 arch = "linux-x86_64"; 207 + sha512 = "1ab24e52663c8e796955173234957242f83bb06c57ff1434dcadd2e1528688734181ac2d538ffb72b82cb6ac44a8e71ec9d0fa2f97ccd7496659a932aabc6936"; 208 } 209 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-x86_64/gu-IN/firefox-65.0b12.tar.bz2"; 210 locale = "gu-IN"; 211 arch = "linux-x86_64"; 212 + sha512 = "26b405fe69fed8899210d87ee2836b042b0f9efdb5a24205f3118cb2b21f47809b0d56f35764cf4d5ac3087b6f6fa94130605606065d470a7053d993929416cc"; 213 } 214 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-x86_64/he/firefox-65.0b12.tar.bz2"; 215 locale = "he"; 216 arch = "linux-x86_64"; 217 + sha512 = "88b3b401b0252f37798f6f2b63ee08ac70266771554fc7c2f6a5bb9e2546ba84ad2bef7f80917e422209bad5b7c8cfefc702951273a050c86fb254eca177e1bb"; 218 } 219 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-x86_64/hi-IN/firefox-65.0b12.tar.bz2"; 220 locale = "hi-IN"; 221 arch = "linux-x86_64"; 222 + sha512 = "c35bf188b8edf09c31e0e3ff09b5b63e07e4ee47e48348f245240efefad22a06b6ca726cc11d8a47cc4a02740da44500b24ed4ef9a30084f37066bbe94121993"; 223 } 224 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-x86_64/hr/firefox-65.0b12.tar.bz2"; 225 locale = "hr"; 226 arch = "linux-x86_64"; 227 + sha512 = "d3b425ac0d2e9db099bdb8b45e076874f6e709fb5080261dc1a70464c43c9e4f1336f355077f1882e89916a782aeb1a55909d6240e6023e42c1c5a3fde567679"; 228 } 229 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-x86_64/hsb/firefox-65.0b12.tar.bz2"; 230 locale = "hsb"; 231 arch = "linux-x86_64"; 232 + sha512 = "5d63e6fb0363f590910ce1320ae41329f83046eb7bc771581918e8f2ac0ff983be21156d594683bb7955e1d669a07cb97fb28c2b4558d3b48aad1448f5414191"; 233 } 234 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-x86_64/hu/firefox-65.0b12.tar.bz2"; 235 locale = "hu"; 236 arch = "linux-x86_64"; 237 + sha512 = "d82b7af86f8a8e60931445168d8f0daca6c724bea529aa1cb78cf1adc0b792be6b17e2df9c4ec2feb2aafd2a5cebc19753c0b5b29e48b1b58968b81da0aa21e8"; 238 } 239 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-x86_64/hy-AM/firefox-65.0b12.tar.bz2"; 240 locale = "hy-AM"; 241 arch = "linux-x86_64"; 242 + sha512 = "b9cfa46b4ca5846bfc6618ba0d98877c6afced77809c9e80e60a82e0b0880166fdb43e3c1691007c18948f7c973ebca4132f20db6a2f5a22dd21666ef104c279"; 243 } 244 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-x86_64/ia/firefox-65.0b12.tar.bz2"; 245 locale = "ia"; 246 arch = "linux-x86_64"; 247 + sha512 = "842b70614fc5c304656d3a9fb601d0b80406c5896fbd2144c1d9d06ca30a62ef3295cf75fd09bd62839c9afd7ce9515df42c4085428d7d24ad8c568f5a3ac129"; 248 } 249 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-x86_64/id/firefox-65.0b12.tar.bz2"; 250 locale = "id"; 251 arch = "linux-x86_64"; 252 + sha512 = "363617654eb6346f1fd4a024aab72e49aa5c7d3941a64d784b34c12a3635ac3288b19bffaaa88dfdc91a4c715a0ae2f1c32a10b60bd7b3005746ae602c00cd28"; 253 } 254 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-x86_64/is/firefox-65.0b12.tar.bz2"; 255 locale = "is"; 256 arch = "linux-x86_64"; 257 + sha512 = "40eeeb450ca9231b3c33aa8d2278539f45c0430a77cf408e256fb71b8136a90e1151f5ad9a49713bb95ddf0781a1f18605bdbb61e166ec70eb85b22d0fe17bfb"; 258 } 259 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-x86_64/it/firefox-65.0b12.tar.bz2"; 260 locale = "it"; 261 arch = "linux-x86_64"; 262 + sha512 = "1e824b452862054960984da350ac5801cc284207c741cf575f894650021d40d8dfe6e9bdf7572a667efe0eaa1725c488b057682c29987375fe5c77fe8763014e"; 263 } 264 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-x86_64/ja/firefox-65.0b12.tar.bz2"; 265 locale = "ja"; 266 arch = "linux-x86_64"; 267 + sha512 = "e7e65abcad00a6ecb3cd4e834c53c4fdb5e16b00ba89a523ed372ba62434522e0750f9f357584a40791ce8d84abcc657acd2f95d9107fc5b408df1f6fb0ecce2"; 268 } 269 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-x86_64/ka/firefox-65.0b12.tar.bz2"; 270 locale = "ka"; 271 arch = "linux-x86_64"; 272 + sha512 = "1efa10f156769c102016899ed38560994f27ad504e5e5d855b94ff9e187d09699fd1be3c8eb76d8a33a4f6c4ec2d1ac3bc27cae6c31b1324e004ed0de9774e1d"; 273 } 274 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-x86_64/kab/firefox-65.0b12.tar.bz2"; 275 locale = "kab"; 276 arch = "linux-x86_64"; 277 + sha512 = "94dbac9a6b727e070bd5793361b257d8f228afa62305e3ad32170f42fb2a9db051d896d3bbb8ed33678279d663e1886ebfcfb8794487df247da7ccf9ee267756"; 278 } 279 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-x86_64/kk/firefox-65.0b12.tar.bz2"; 280 locale = "kk"; 281 arch = "linux-x86_64"; 282 + sha512 = "40acb798dea66ab06b589c0036532bc24573e0897d139c572fec3aaf6bc706cbd949d71ea3024757cf3dd4b24f683ac9fd0a3b804b765d66ef7177b6ee5dae56"; 283 } 284 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-x86_64/km/firefox-65.0b12.tar.bz2"; 285 locale = "km"; 286 arch = "linux-x86_64"; 287 + sha512 = "ebcec79617a9ea875f0bd4ce7dec7a9425d5508cd50b8c49325fd8cd871f26e4ca0d6f20541a566b521c02309b59549fd47820f5dc76dc13fb47f5c7ee5f46ac"; 288 } 289 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-x86_64/kn/firefox-65.0b12.tar.bz2"; 290 locale = "kn"; 291 arch = "linux-x86_64"; 292 + sha512 = "1d3e9834bd3a27954ba250ff9ccf81f3a2ffc24375aeb343664db0e9bd055b109b7d278574ba1066377965791b1ca88c942c09069caa891076f1345486842c5c"; 293 } 294 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-x86_64/ko/firefox-65.0b12.tar.bz2"; 295 locale = "ko"; 296 arch = "linux-x86_64"; 297 + sha512 = "8d58aa4124e9aa60fd67db61630f34913e2039c4a17378dbc0d67b640e45c1fadee2df62da6f2107424845049e7c0b8006e1ec7b0cca3fbb6ffcbf8d29e0db3d"; 298 } 299 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-x86_64/lij/firefox-65.0b12.tar.bz2"; 300 locale = "lij"; 301 arch = "linux-x86_64"; 302 + sha512 = "a4955bb46ac15db37cb9ff15c55f47a4c46681ed312c350ccd5c4fe69a838412f662f4569581c71f334151c953a65d07ecab612f69baaa749c1f1027548ef52a"; 303 } 304 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-x86_64/lt/firefox-65.0b12.tar.bz2"; 305 locale = "lt"; 306 arch = "linux-x86_64"; 307 + sha512 = "b4c5716acb23b2ea44df6443a6c1640844abe730d763c5f0d83d88b52394caa47fe1b827809335fc4066cf39a5413b221b225a63efd35825fea940aaaeb41ca6"; 308 } 309 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-x86_64/lv/firefox-65.0b12.tar.bz2"; 310 locale = "lv"; 311 arch = "linux-x86_64"; 312 + sha512 = "f4f4d58ac03fd03f09a8ee8f48334f75ce1b95d08b972f7f97074a18e0b3019b089b024a63644e914e28de256be157e7a4238e4d090a46dc50a08c1e3198ad01"; 313 } 314 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-x86_64/mai/firefox-65.0b12.tar.bz2"; 315 locale = "mai"; 316 arch = "linux-x86_64"; 317 + sha512 = "490192f444f8a166b0acbf49daaf94da4729c6db09f2eb2583a2b62b6ba7ab0886c11d6d1320a304c5b8cb36a792578efdab86c828674d246a0dcf91cae73a40"; 318 } 319 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-x86_64/mk/firefox-65.0b12.tar.bz2"; 320 locale = "mk"; 321 arch = "linux-x86_64"; 322 + sha512 = "dec7c4bba6a6910d7da8796616e5bd7303a698d7f68587bda30c2354e22e655ea5018b4b95e40b188b29980332dbd73ed14ea82c9588d76726ef24e284557ab9"; 323 } 324 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-x86_64/ml/firefox-65.0b12.tar.bz2"; 325 locale = "ml"; 326 arch = "linux-x86_64"; 327 + sha512 = "08826ce9fcb616d25975defa0a72453ecb95bfed09bdd057168480bb8ae942002e062c0e89ecab4636cad2d7ce3f2da0d475b9728e281512eed866ee673e36cf"; 328 } 329 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-x86_64/mr/firefox-65.0b12.tar.bz2"; 330 locale = "mr"; 331 arch = "linux-x86_64"; 332 + sha512 = "5e84f9db6fa32712e28d74b904dd831534054909886d54cf3a7bcb89ffdd992f2ebf8aee0ae63acda3acc88d825efa48c1bd3faeb217d5c99ae45f02a1f90eb3"; 333 } 334 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-x86_64/ms/firefox-65.0b12.tar.bz2"; 335 locale = "ms"; 336 arch = "linux-x86_64"; 337 + sha512 = "c69151fb0b0868df66b1f542ff21860df0ebcc2d242959109516459f5a22c518e3b9795dab38b632123aaca9eab7a008edce24ec23f08a675e95becf717e50d4"; 338 } 339 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-x86_64/my/firefox-65.0b12.tar.bz2"; 340 locale = "my"; 341 arch = "linux-x86_64"; 342 + sha512 = "946019d6f35e7e165311eac6917932dc38d599683101b7f7f1ef60eda93b03483813e47d1058e32f3594da888678495338f2fd8d329db2e822a5efc0ad0fb8aa"; 343 } 344 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-x86_64/nb-NO/firefox-65.0b12.tar.bz2"; 345 locale = "nb-NO"; 346 arch = "linux-x86_64"; 347 + sha512 = "cd697ef15bd15f7ecb513f5fce4925c99eb5a29e7c8054e995619eeb531877452a8d95d2bf01d11f8191b7cf63fae4001c0b60301693db326f33172a4efc2f12"; 348 } 349 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-x86_64/ne-NP/firefox-65.0b12.tar.bz2"; 350 locale = "ne-NP"; 351 arch = "linux-x86_64"; 352 + sha512 = "8646dff10e1f2c82cd40142d3861c95961f2cd5d77378fdf4c0a742938bf19421de060f09bb54b24ca242d59eefe8e34ed2bd852dba0c40a292c2155218549f2"; 353 } 354 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-x86_64/nl/firefox-65.0b12.tar.bz2"; 355 locale = "nl"; 356 arch = "linux-x86_64"; 357 + sha512 = "c7ff1575b3bac59d0277110d822015a9f6481df1f3448ec7bc636b2ea3e34d834c44d28d65aeb652077fb442dd16b98836249ff81c10988933ade48a01a65343"; 358 } 359 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-x86_64/nn-NO/firefox-65.0b12.tar.bz2"; 360 locale = "nn-NO"; 361 arch = "linux-x86_64"; 362 + sha512 = "3be1d6b74067bf85b0a3b22edfb15e7e27dcfd95d35c984ea16cfd3c779aa0bec3412e5e68252ec0847529b047c180d64a841c1338f9984ad4e4d9acfd03c478"; 363 } 364 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-x86_64/oc/firefox-65.0b12.tar.bz2"; 365 locale = "oc"; 366 arch = "linux-x86_64"; 367 + sha512 = "58504b3a1ebd8529ce021b5b103be958e92810dd6233d630f7a08030040dd3b17aeecf1a6f369915692b976c3945efe2c5f53dae706380d79f676aef68da893b"; 368 } 369 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-x86_64/or/firefox-65.0b12.tar.bz2"; 370 locale = "or"; 371 arch = "linux-x86_64"; 372 + sha512 = "af7160a70f2e58ce076e7ed80ebc3f501278ca9691da4d841b9c318fd98db84c71f6123e496c39f7fba6143b63c5af9c405f55d91ac444d3061053c7a71c481e"; 373 } 374 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-x86_64/pa-IN/firefox-65.0b12.tar.bz2"; 375 locale = "pa-IN"; 376 arch = "linux-x86_64"; 377 + sha512 = "b225309523f373c910047fe406f1f175541139f134a360cd5ba45c10d0dced48e4c4e9559a5d5426c204847d022761277a930f629c2b5d8423ac25ba2278fc75"; 378 } 379 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-x86_64/pl/firefox-65.0b12.tar.bz2"; 380 locale = "pl"; 381 arch = "linux-x86_64"; 382 + sha512 = "494763cbc7f82ef25aa188dedcf12c978c4bea27ff3f7eef8932e9cfb01a5da7a8bf57af082393b678a42ce2f05ff9a9b2c7115836518992c1039bfa88fd2b3d"; 383 } 384 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-x86_64/pt-BR/firefox-65.0b12.tar.bz2"; 385 locale = "pt-BR"; 386 arch = "linux-x86_64"; 387 + sha512 = "09c5897be07476d28c7c0d1e20d563c42fd8bddb7881c917b1e2324a97532cdcb3ccecdbcc0e05724fc3c335a952388890875833c6b912e37481bac340f01629"; 388 } 389 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-x86_64/pt-PT/firefox-65.0b12.tar.bz2"; 390 locale = "pt-PT"; 391 arch = "linux-x86_64"; 392 + sha512 = "873b40dc446ae0e9553c734cc5bbd01c3d22353ec8f423f480ee4b76db0072c080661a0e6e54cd525eb080cdb82db021e7cec5e36493ad0025a511d90b21288a"; 393 } 394 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-x86_64/rm/firefox-65.0b12.tar.bz2"; 395 locale = "rm"; 396 arch = "linux-x86_64"; 397 + sha512 = "0285805e0b8895bf55d95ec7faf6a73304d84fa178d92d1f97736bcf55895c3bebb01cc09685401c4b1eb35b0a7d4394cf966cb3dbcc4fe8da4ba00fb16ac38b"; 398 } 399 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-x86_64/ro/firefox-65.0b12.tar.bz2"; 400 locale = "ro"; 401 arch = "linux-x86_64"; 402 + sha512 = "e04f4a3adc72452f9d5d4b72d1a1f0b50a87f10de9e89394488121aa457931c3c883e3cb8ff946b795e231c0794cde2801d125135a19c3d2394ae5432fea349f"; 403 } 404 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-x86_64/ru/firefox-65.0b12.tar.bz2"; 405 locale = "ru"; 406 arch = "linux-x86_64"; 407 + sha512 = "4b34f77af0971c71a6b9450b97cfcd917ff77ab62a414478558b00624c80c5a0aa3d056a08c3ec22fbbcbde3b44760d811d755236d26ca61b9209334cf0a63d8"; 408 } 409 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-x86_64/si/firefox-65.0b12.tar.bz2"; 410 locale = "si"; 411 arch = "linux-x86_64"; 412 + sha512 = "497da3fb71ffc3a7087d7f89f7e4c2b0a9d055c45edba53b958d035ceebe850798938dc0820180b579cead9d6e427f8f2fc9f745d50e09310f44671267a9d4cd"; 413 } 414 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-x86_64/sk/firefox-65.0b12.tar.bz2"; 415 locale = "sk"; 416 arch = "linux-x86_64"; 417 + sha512 = "552034c470dac93b2e14123be3311c8f85542565f9866a53de076e9ba139119c685ea5fadf925dcd7577549bf005db6e0a62579b099e68f94edbf80ba3f10c1e"; 418 } 419 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-x86_64/sl/firefox-65.0b12.tar.bz2"; 420 locale = "sl"; 421 arch = "linux-x86_64"; 422 + sha512 = "cb913f19b87afb875864cf5c3576884ee014f91e4637700fc9a9bbb8977854d2c45287ed1dadda8f4226ca284f8d8cd5d63dff6c7102b6ff649f0a4be3227bf5"; 423 } 424 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-x86_64/son/firefox-65.0b12.tar.bz2"; 425 locale = "son"; 426 arch = "linux-x86_64"; 427 + sha512 = "018ccf133aa6685a6d4274b151588cc32f6984a5972345d22a46be577d3324579d30d451b5f051689803b5873ee5fee5621c5334a19a53675e780b1544fd6f1e"; 428 } 429 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-x86_64/sq/firefox-65.0b12.tar.bz2"; 430 locale = "sq"; 431 arch = "linux-x86_64"; 432 + sha512 = "c68e74947b673484f51d3faf3972bb8fd5fd50062748b5ed8c9cb186101fb9371f3e3ebb2e8efc092fecca062fb0a486e3429cd48b811379295c566cfd2d2b42"; 433 } 434 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-x86_64/sr/firefox-65.0b12.tar.bz2"; 435 locale = "sr"; 436 arch = "linux-x86_64"; 437 + sha512 = "ec938d25b063cdb8a2a31ecb8c897a6793622b4f861c9cf77fb518dc68b63128e418021301fee61bb11f2447e4c3aac9403b9cf03b36c1a42cffc3457076e9a7"; 438 } 439 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-x86_64/sv-SE/firefox-65.0b12.tar.bz2"; 440 locale = "sv-SE"; 441 arch = "linux-x86_64"; 442 + sha512 = "f0bdc72f160e1b1d58f4d64db2109b707d8196badc8220f33f6e9d14e2533d574f89ce47071d1d6b9cdd7fd7d7a138f36993a94dca10eefd9560a921d94c2747"; 443 } 444 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-x86_64/ta/firefox-65.0b12.tar.bz2"; 445 locale = "ta"; 446 arch = "linux-x86_64"; 447 + sha512 = "671f5a3b4eac365a690703135acafd001b3faa9cb1fe35f42a91ba63414aba7ba189c97b25ea401c619d2766e0fa3ecce32d2b12a65737dba978d46638158b08"; 448 } 449 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-x86_64/te/firefox-65.0b12.tar.bz2"; 450 locale = "te"; 451 arch = "linux-x86_64"; 452 + sha512 = "bb2d714947225feca40f74a42fa20cee2570425daa9094b561f2abc095b75fb131fc76be301b02da71ecfd2ed4431cfe98a87fc660d7c2a0cf842e41dc494bae"; 453 } 454 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-x86_64/th/firefox-65.0b12.tar.bz2"; 455 locale = "th"; 456 arch = "linux-x86_64"; 457 + sha512 = "f3bc15cd570f97e939b556ebd64d91e98920133da8dd968f7fdea3b4a55c8e822a329b64dcf20125566b375124b7241a4358d9905c77e86c0149eab8f65cf566"; 458 } 459 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-x86_64/tr/firefox-65.0b12.tar.bz2"; 460 locale = "tr"; 461 arch = "linux-x86_64"; 462 + sha512 = "3fa5aa80803e16f3ff99ed0d70ee1190d6387edec55f7d0d761175b3ade00b3818998d0809999288624d4f31a6f877a2db5c322f0388c7138dd4c2184b334254"; 463 } 464 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-x86_64/uk/firefox-65.0b12.tar.bz2"; 465 locale = "uk"; 466 arch = "linux-x86_64"; 467 + sha512 = "c0f8a0fb9c0df67670fa79f34b0c3821f9e79032f06c9a28d2033ade5e4770f65fc85f4254d19e70a54752936d6073c6934994cdd4a11b8b062538ca61c6c079"; 468 } 469 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-x86_64/ur/firefox-65.0b12.tar.bz2"; 470 locale = "ur"; 471 arch = "linux-x86_64"; 472 + sha512 = "288274a05c693559d86eefb2b45452cf4c6647c2a186f2a8949baabe20304cb1f24d1da085c87e548c93a95cfb1cd679fbbfa558033d410963d16c295c4ae71e"; 473 } 474 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-x86_64/uz/firefox-65.0b12.tar.bz2"; 475 locale = "uz"; 476 arch = "linux-x86_64"; 477 + sha512 = "7c929df39c64eed75980075e904831670ee64143cfdb3fa46e16a193aa7ca1bb19417b00a7b5be8d0be2595de1d009b5d6ed1cc73a1e8e87cd215ba261dad412"; 478 } 479 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-x86_64/vi/firefox-65.0b12.tar.bz2"; 480 locale = "vi"; 481 arch = "linux-x86_64"; 482 + sha512 = "029d538127c2fbabed83e7188d7c9d8fa08f3639bfddd9a01eb82e3b7cb4c434a65474c4c7d82127ac617f11a1da8cdb68acb7505c38998b02015f5b47b7ae35"; 483 } 484 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-x86_64/xh/firefox-65.0b12.tar.bz2"; 485 locale = "xh"; 486 arch = "linux-x86_64"; 487 + sha512 = "a0fd7427fd23d5a684eaff577d85d3118da3f6671cf586b61de7b55644c2ce8e70dec4f51fe6fe9ff9bbafa0223db8def7fd2f1f48c2c7ca04f98fdebcc1b40f"; 488 } 489 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-x86_64/zh-CN/firefox-65.0b12.tar.bz2"; 490 locale = "zh-CN"; 491 arch = "linux-x86_64"; 492 + sha512 = "3dc4daacaff323a201dc9bfbbe2f63bf521b6a490e4a6f002ff22cc92e70c3dfda9d29eac28e24e0f3f882be52cd9b9215a6bb3e27dfce7919470949276fa7a2"; 493 } 494 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-x86_64/zh-TW/firefox-65.0b12.tar.bz2"; 495 locale = "zh-TW"; 496 arch = "linux-x86_64"; 497 + sha512 = "0e18039777a47ce1e17a952a3aaf98b83481ed17c2e09a733e7391941950c3f3c2f60cf3d9b0f9ac63cc83bd0bbe1c9a241f7e2461fb885e2179c2a1ceceb7df"; 498 } 499 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-i686/ach/firefox-65.0b12.tar.bz2"; 500 locale = "ach"; 501 arch = "linux-i686"; 502 + sha512 = "69bff893b544293c87887da8f52f818e93a6d291da920e6cea03d22d71babd4eea5c6184453830d6b2b97f43368aacb5070bebe6825c45eb0f9acfdef3015a06"; 503 } 504 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-i686/af/firefox-65.0b12.tar.bz2"; 505 locale = "af"; 506 arch = "linux-i686"; 507 + sha512 = "64bc955d5846dd9e82270caa3ef8db4979e454bba51339cb9e113d3315d1dcd8c5e8f0b5a1d61585a4b4c9fa24fd60a1397be0a6d346e17894283594330cbd98"; 508 } 509 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-i686/an/firefox-65.0b12.tar.bz2"; 510 locale = "an"; 511 arch = "linux-i686"; 512 + sha512 = "2ef36422330248be03b53624f9a5a37640583535e9e501180b0113d6e6df60243f2f43c500535866edd921769f5b5a3d541b14550e71502977ebd1b940e0de9e"; 513 } 514 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-i686/ar/firefox-65.0b12.tar.bz2"; 515 locale = "ar"; 516 arch = "linux-i686"; 517 + sha512 = "b43b69bd6e906b949d0dec23875b2cd0a1c4fbf0d91168778b40a577c6dab0f2c59a49afd6389b0b3e185714925c58b0241c92a351c52d5d3d399dec3fee688a"; 518 } 519 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-i686/as/firefox-65.0b12.tar.bz2"; 520 locale = "as"; 521 arch = "linux-i686"; 522 + sha512 = "f577513523e8c69652cd066b3a8493ac3192b5082ae384ef7438d0450128f5c2a6f1415ff772c12257c557f71077f22ba71a383a2e58343f86492125f58496aa"; 523 } 524 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-i686/ast/firefox-65.0b12.tar.bz2"; 525 locale = "ast"; 526 arch = "linux-i686"; 527 + sha512 = "2baf8f299f7d13cb8e9fb32b07226d456071141dbaefa1b1938447bd3d27175584890a2106210793700de3c1286093d7b2035fbf3bde492752ff68528a4b474f"; 528 } 529 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-i686/az/firefox-65.0b12.tar.bz2"; 530 locale = "az"; 531 arch = "linux-i686"; 532 + sha512 = "22b66595b68075751ada453c797d8085eac18dc7e5a835ba586948ef9fbdedc6b25a6244e1f53842efc561cd95ce7ae456cd57259b252ada22a85dad19a71a7c"; 533 } 534 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-i686/be/firefox-65.0b12.tar.bz2"; 535 locale = "be"; 536 arch = "linux-i686"; 537 + sha512 = "6fa393ede2b47db3013d7e111cb74a90dd8186dabdf1f19cf33550a7b7bf21e3b5addb3a0d7ce85313b4a5d445b395f30060e27b6c6148879b57ca95f8bfe1ae"; 538 } 539 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-i686/bg/firefox-65.0b12.tar.bz2"; 540 locale = "bg"; 541 arch = "linux-i686"; 542 + sha512 = "b6576340d149e3760b2f62f7829be660d4edb3ca108b9c16a9b787f64db74ddb9352f12ea5fe868a85db0f9e2ae58a891ecac99a959059f269011cbf79cce093"; 543 } 544 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-i686/bn-BD/firefox-65.0b12.tar.bz2"; 545 locale = "bn-BD"; 546 arch = "linux-i686"; 547 + sha512 = "0d31a3031a557c395953695ee6bf46202cf7736af2f122c08e1ae008c6ff27051f2c2501ee54db4068cb382d77584669fef979a06e3bbff8dc635c6f8830299b"; 548 } 549 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-i686/bn-IN/firefox-65.0b12.tar.bz2"; 550 locale = "bn-IN"; 551 arch = "linux-i686"; 552 + sha512 = "a3c50d18fe5cc1b44effb8799552419d2382d27c804aafc02b8cebd2c973512098a8c54c807e46da302c511185e355f31b4a34f59a5e6b8c81df475d9ccc6fbc"; 553 } 554 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-i686/br/firefox-65.0b12.tar.bz2"; 555 locale = "br"; 556 arch = "linux-i686"; 557 + sha512 = "f346991f2b028fb90bfc02c7bceeac192185a02fd3ccd5188769f26b63ba2716dadd1ef6fa01778d400ec82f7f6a2e2b0eb49720481fd56c31135740e27751b8"; 558 } 559 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-i686/bs/firefox-65.0b12.tar.bz2"; 560 locale = "bs"; 561 arch = "linux-i686"; 562 + sha512 = "481c9f545f62976373070b7bf1dcb92815feaedf6864a73316c9bcd05fb442ebbbb3dd337f943568044e3919af3e7d0f0a2ebac543622c7c34ea438f5709bf72"; 563 } 564 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-i686/ca/firefox-65.0b12.tar.bz2"; 565 locale = "ca"; 566 arch = "linux-i686"; 567 + sha512 = "42766478f0ea47053033937db4ab448008328189d10b3b440c34a71709edc7cb56655b5eabdc00cf56a5283aa2804130ceb66123d170d810176ac80c138316c1"; 568 } 569 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-i686/cak/firefox-65.0b12.tar.bz2"; 570 locale = "cak"; 571 arch = "linux-i686"; 572 + sha512 = "e24a34cdba5d6a05ce9b4dd606ad1e2a3481f9711f78527ed20031fccb2138ebbae48c49f97c34ff83196c11d60179b36b6501477d9aa8fd505dc5e23bed9a68"; 573 } 574 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-i686/cs/firefox-65.0b12.tar.bz2"; 575 locale = "cs"; 576 arch = "linux-i686"; 577 + sha512 = "46dd71ae684c4d814da2e59162a3aa5a7f87b9025d1a2b2a9d2e22c4436a1410905f0b2a44887e6bd34cc6687974ab038f0e163dc7b2b6275122bc7d9e01505e"; 578 } 579 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-i686/cy/firefox-65.0b12.tar.bz2"; 580 locale = "cy"; 581 arch = "linux-i686"; 582 + sha512 = "911c19d27cfc298a8486b1b67865044e085973fecb09123182b7c2cae554c2995e56192e1ada40a6738d932f4aeabc51622d37ee81110895c9424e575b2ff820"; 583 } 584 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-i686/da/firefox-65.0b12.tar.bz2"; 585 locale = "da"; 586 arch = "linux-i686"; 587 + sha512 = "ea0dcc2df43f635a08435aafb6f754b6ec1f763f8e0547b07ff9cf7700f28a5b5be8e86321cead17e284920d973461299611a5e0e83ae0b9dc31432b23c75597"; 588 } 589 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-i686/de/firefox-65.0b12.tar.bz2"; 590 locale = "de"; 591 arch = "linux-i686"; 592 + sha512 = "bae8ff236ec83b00eecbf0474fcaab69d78a3bbdf1444796dc84a142c7d9f4478a756d9f0def3a02c24887e109fe3e60fcc30e4d1a11967d8e4df65906ef353c"; 593 } 594 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-i686/dsb/firefox-65.0b12.tar.bz2"; 595 locale = "dsb"; 596 arch = "linux-i686"; 597 + sha512 = "f9cce8fc09ba3958478f26ef41c4e4c4dd0e4923f50fe5855c8d1e2bae767590fe7a8554563afff7f88487c4cef4fc274fc31b0d894d3a2400674d125f95f7e5"; 598 } 599 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-i686/el/firefox-65.0b12.tar.bz2"; 600 locale = "el"; 601 arch = "linux-i686"; 602 + sha512 = "41e7b425158423602caebcf306ee103c05ba8fa9d3451fc3da1d4b33d033871f9bf8a9f7acc6de470a3d769419eef6e2ac240f64eb0d69b8ef85e009f43af845"; 603 } 604 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-i686/en-CA/firefox-65.0b12.tar.bz2"; 605 locale = "en-CA"; 606 arch = "linux-i686"; 607 + sha512 = "72468f1184254089dfc4828b4d1fb7040bb49291596e8aa87acc22964bcf257ef2151bf4739d6b6214e6a5202e784073f65deb00a7fd99c76d02d5c141d36a21"; 608 } 609 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-i686/en-GB/firefox-65.0b12.tar.bz2"; 610 locale = "en-GB"; 611 arch = "linux-i686"; 612 + sha512 = "a7e448e931a0c28f42f098d2f68d19f305a5f7499d191183bb1bdc003b5bd5066a068f317485f58c3b42626061c0fccc58f0aae7fbd494214a548473d9f1b7f2"; 613 } 614 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-i686/en-US/firefox-65.0b12.tar.bz2"; 615 locale = "en-US"; 616 arch = "linux-i686"; 617 + sha512 = "3397b8c25419c89617bc1fe9b8da9df1d679d120c31aeaaf429c9bb9b9071bbb20faa05014c1295265588ddd0ae6b0138dba912d6ae03c68e6d26080ff294f4d"; 618 } 619 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-i686/en-ZA/firefox-65.0b12.tar.bz2"; 620 locale = "en-ZA"; 621 arch = "linux-i686"; 622 + sha512 = "c027a51a04f9801fc9f11f2a1c61af271cf134624ab167044a8675738215c571021ec06e39d7164fa4778b70655e452b7b4c65b8d5d4651a2a7cdd7215f32a19"; 623 } 624 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-i686/eo/firefox-65.0b12.tar.bz2"; 625 locale = "eo"; 626 arch = "linux-i686"; 627 + sha512 = "419e9ae84f80253d7479c486da59b7645715125a9aa8a6f73a746440e397562cdde4e6a374ab03ed10f86fff76c35688a7de67b7906fc98545a66efefc8e7fac"; 628 } 629 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-i686/es-AR/firefox-65.0b12.tar.bz2"; 630 locale = "es-AR"; 631 arch = "linux-i686"; 632 + sha512 = "26b0eff4f5aed261490f11f9972f7c7d44d39136fa3d8ccc1169473c05bf6b05fd11c94d3bf4a69312e17bf96a962f8fc88ffe948ded6e5f391fee95cce553e8"; 633 } 634 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-i686/es-CL/firefox-65.0b12.tar.bz2"; 635 locale = "es-CL"; 636 arch = "linux-i686"; 637 + sha512 = "e42115ed94fea6ffcad85717559d8d746360280b6931925e45d79a755f1e4e3a2fc098dea7be9f424aee499a108944e73ca80d7dab5448357b1cb10fc14cf968"; 638 } 639 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-i686/es-ES/firefox-65.0b12.tar.bz2"; 640 locale = "es-ES"; 641 arch = "linux-i686"; 642 + sha512 = "522ea3cae483b441822dd8381ce7571a82f3dab0feaf676737f72f90ecf2485e33e0ac2f253da798342b8dd678f9f6e9170de8838aeb5fc80fc4db605425cc04"; 643 } 644 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-i686/es-MX/firefox-65.0b12.tar.bz2"; 645 locale = "es-MX"; 646 arch = "linux-i686"; 647 + sha512 = "2b1d387d3560989a64008870e0f72b4d40e8dc44a159e77a30becdd2a8a6c3ae2250706da539af40be5e09b5ffad32e7b9a14c60d31c2fb53e88982c3f543d49"; 648 } 649 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-i686/et/firefox-65.0b12.tar.bz2"; 650 locale = "et"; 651 arch = "linux-i686"; 652 + sha512 = "c103ef7f2a9841d637aa73a1221123eb74114d40e10f016318b0812aa81a84f095088639cbd29ad3f90e111ee290eaf9ae66121eb5c834cb9ad47b75fffb5098"; 653 } 654 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-i686/eu/firefox-65.0b12.tar.bz2"; 655 locale = "eu"; 656 arch = "linux-i686"; 657 + sha512 = "e84aa261030ff28104f7b5abe7fa82f7bba9d615313ddeba9defe434783e659d945edc50985da057a5c084155c44c0b60f596dfb3611b5a6cc49b012e39db9d0"; 658 } 659 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-i686/fa/firefox-65.0b12.tar.bz2"; 660 locale = "fa"; 661 arch = "linux-i686"; 662 + sha512 = "438b76020645d5d21c36ffb29ce796db825c6cdc25f96f141e0ed16097cf13e57670e9b8cf5a0a00837b983dd01b24fbe18a8ebfd754f7b017667a9e1708676c"; 663 } 664 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-i686/ff/firefox-65.0b12.tar.bz2"; 665 locale = "ff"; 666 arch = "linux-i686"; 667 + sha512 = "b39f5ad96d8da28ec8f7fbd47e34294b7b25ee5f0497339a29f4675230cd08f12909b2ae9cb8ffdec7eb18ec00487aadc809f3bc919e10ca49fab02ee9da3a1c"; 668 } 669 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-i686/fi/firefox-65.0b12.tar.bz2"; 670 locale = "fi"; 671 arch = "linux-i686"; 672 + sha512 = "bab8b6e3aa6713f687cb06a12f8ed22c2e95cd85183d55fe9d595cdd50755d48c686118ad6793fe15b80ff84f11fde79604bcbc2977a229d2f81c2640f3c4341"; 673 } 674 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-i686/fr/firefox-65.0b12.tar.bz2"; 675 locale = "fr"; 676 arch = "linux-i686"; 677 + sha512 = "d648afdbe7dd41fdba3ebe66362d8495724ac036445e5b3f19a22701cbe1550528b41b67fe76c91b1f19543126b8bc089e672a38cbc41746f83e187b70cf183d"; 678 } 679 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-i686/fy-NL/firefox-65.0b12.tar.bz2"; 680 locale = "fy-NL"; 681 arch = "linux-i686"; 682 + sha512 = "e22a95c4800e20d36e9e5e2ada1c9b4f4219b86ec0305d1385ffffdcfccd4699350772e551696e2d140ce7d552ca0844c1dc276f06bfdf6df9d461f2d855d7e7"; 683 } 684 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-i686/ga-IE/firefox-65.0b12.tar.bz2"; 685 locale = "ga-IE"; 686 arch = "linux-i686"; 687 + sha512 = "da6dacdd003725b222b9259c317512fb3baf5a12e8ddc062987c732844a41599cedec60c0d9a5f55abd3ae7d57dad460dd785563458a16b59c785d7cef3e0b8d"; 688 } 689 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-i686/gd/firefox-65.0b12.tar.bz2"; 690 locale = "gd"; 691 arch = "linux-i686"; 692 + sha512 = "a1a2f83ecbdebc77deaa4d954262f6f5a1750830200c41c5c72dc7e762499fe3f17c71702d5821c755c9d4998fc09509a2a3628e9494440027add0da8a7c8e6d"; 693 } 694 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-i686/gl/firefox-65.0b12.tar.bz2"; 695 locale = "gl"; 696 arch = "linux-i686"; 697 + sha512 = "d00463385dd0d09cce650775a9a6e9f92de899f4ae3c8354b0c7c8ceb00c0cf8d5dea934a173ee3801bc7696297deb0270aea8644113128c4d2ace6f5e54f7ef"; 698 } 699 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-i686/gn/firefox-65.0b12.tar.bz2"; 700 locale = "gn"; 701 arch = "linux-i686"; 702 + sha512 = "21c55639f4c9db05b119bb935eaac9a327e3e21c74cb0bba6e02b256290ae685c9df5d1bb98ceb490d7ceb1822da2336b376451c5a8f4620a937f55f84a5130b"; 703 } 704 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-i686/gu-IN/firefox-65.0b12.tar.bz2"; 705 locale = "gu-IN"; 706 arch = "linux-i686"; 707 + sha512 = "59c175af42cabd0c39958129864c25314da9fa2f2f47b9eac7703ef8fd5103533f7bbdca65a78d0845109c5aba5bfd72080b4d03f9e9578c06095afac1d88b4a"; 708 } 709 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-i686/he/firefox-65.0b12.tar.bz2"; 710 locale = "he"; 711 arch = "linux-i686"; 712 + sha512 = "e3424c4d74470bbb196af49328d1ac108837d52b98ab72ed49ff4f6592400df4d4a23248688da1a279198da1b17711266fbef9b4b3e2140587ccec704343e3be"; 713 } 714 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-i686/hi-IN/firefox-65.0b12.tar.bz2"; 715 locale = "hi-IN"; 716 arch = "linux-i686"; 717 + sha512 = "07d0211a0185145016b49267c6761455f84990574b292fbe7acd10b96df19197d9f9ff622ca10f0f006f3754f603ad3979a83c68426eebe588b92965959d2435"; 718 } 719 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-i686/hr/firefox-65.0b12.tar.bz2"; 720 locale = "hr"; 721 arch = "linux-i686"; 722 + sha512 = "0fda42aa9478d67cb6397f41ec89567a546f1afb9071f579bdae8099e3557ee00a8884b6576951e218421b35f0036684563b1f0e43587d4216a17ce3d90d9ca0"; 723 } 724 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-i686/hsb/firefox-65.0b12.tar.bz2"; 725 locale = "hsb"; 726 arch = "linux-i686"; 727 + sha512 = "f4578ee4672f441e458dca07cab6394ded49f0a7cec83299b85fbf3aabd96cbdb1bf9e0739edd4176975f2104127f0187fce7830e7a09bee164200bceabef5d9"; 728 } 729 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-i686/hu/firefox-65.0b12.tar.bz2"; 730 locale = "hu"; 731 arch = "linux-i686"; 732 + sha512 = "192097918350c6701d762bfa249994f22afca5f7647d6a850b85f1af7860a01fd39005d3025ede6ccbe26fa3f979de2e61494e332b4d2eb0d196b342c4086ef2"; 733 } 734 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-i686/hy-AM/firefox-65.0b12.tar.bz2"; 735 locale = "hy-AM"; 736 arch = "linux-i686"; 737 + sha512 = "214a2be2c19df26694e8edfea9818d92c8bc90711e624a4803b1b4ff3d243b3b49affb98689602ae5b1e172b64b996c8c16b3d7aa5b787120babf7d154b64701"; 738 } 739 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-i686/ia/firefox-65.0b12.tar.bz2"; 740 locale = "ia"; 741 arch = "linux-i686"; 742 + sha512 = "0f289d56dc4ce11ef31b50dfd0d61d05dcc2893b103c6d91d0270d223692da88e62859c1e93fcb11b199a9e1042c7a61882faa89a96c4fc354cf6cf84f83d587"; 743 } 744 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-i686/id/firefox-65.0b12.tar.bz2"; 745 locale = "id"; 746 arch = "linux-i686"; 747 + sha512 = "16947e1ada091fc6d539d1ccd309cc06860d9cb08b602cf8031e74d4241fef00e0f8c253153fcc80535a6d158c522459b3d16696ad7fe7e2d863dc885541a609"; 748 } 749 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-i686/is/firefox-65.0b12.tar.bz2"; 750 locale = "is"; 751 arch = "linux-i686"; 752 + sha512 = "b89c9edc5400dfc32413445dd0eb9e189ab9195678e12454be17396d374cedbc48c8879fe243aabe74429b2ca1fdd4e9b9dec7ac258d70429623da3cf5161d5c"; 753 } 754 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-i686/it/firefox-65.0b12.tar.bz2"; 755 locale = "it"; 756 arch = "linux-i686"; 757 + sha512 = "30b5cbbb5ca8badcd54a9c77fb316b801e9e06a8307a926ff6ecf3246950a758a3b2ea7a68ef669161cd017a47d0603ddd70477024691e190ac4babf1245ad09"; 758 } 759 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-i686/ja/firefox-65.0b12.tar.bz2"; 760 locale = "ja"; 761 arch = "linux-i686"; 762 + sha512 = "4477c723120fa9d01b51f3225e5973aac04d6b4a9313246d7ca91305b0ee550e36be9b7759afdefbf471533c1a806a672fb58139081276accfd03f0b8ddb1292"; 763 } 764 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-i686/ka/firefox-65.0b12.tar.bz2"; 765 locale = "ka"; 766 arch = "linux-i686"; 767 + sha512 = "0e9b42939edd33fc10dc17449f7cc63611e3a485e28497fea8f6882094e9551d75a401d446e7d8fc9b48680ccacbbf36576048d740b89e72c1e449ca7ef61636"; 768 } 769 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-i686/kab/firefox-65.0b12.tar.bz2"; 770 locale = "kab"; 771 arch = "linux-i686"; 772 + sha512 = "4a23dcb974b08269ed4b151daedbbd8168e5b59d3ec423149d946a8165e1ee2a43c612fa9130c1af15d188605e13bf6299a48d7f77b9dd87062590c1e04739cd"; 773 } 774 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-i686/kk/firefox-65.0b12.tar.bz2"; 775 locale = "kk"; 776 arch = "linux-i686"; 777 + sha512 = "d3be943df25bb4d3cab7338b6bf54df10b0cfc2dc4bd6d9f9e2a8c0518a4e1363d9600b9774a694048b99b92c1098b409429ef5a454f92e6f987f6aeddafd0ef"; 778 } 779 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-i686/km/firefox-65.0b12.tar.bz2"; 780 locale = "km"; 781 arch = "linux-i686"; 782 + sha512 = "faba217e3be6fb1b52de3debef4ad1d9880b44043564bb96b7ea95dc19595175b6a58cca5e266409d325b6729bffcdc03f961b665f001bc94b2a509ee3b68a6e"; 783 } 784 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-i686/kn/firefox-65.0b12.tar.bz2"; 785 locale = "kn"; 786 arch = "linux-i686"; 787 + sha512 = "badebd0eae95a11188a67010f8c96a54322bec37b7eec52fa6b0acfeb782c47d0bee1a8ebfcb10ea000d35d8cfae26a13e31077546dc4ae9bf2dba7e2d4aaeb6"; 788 } 789 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-i686/ko/firefox-65.0b12.tar.bz2"; 790 locale = "ko"; 791 arch = "linux-i686"; 792 + sha512 = "2023f5fb0f92d3c59bb47a0a47b8013b989dbc5dfcf79d6611a5550ea4b17ac43d680a0538c615f44c4b95fc15868cbc329a8eb62df2b423c720ee5e65a3b3d3"; 793 } 794 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-i686/lij/firefox-65.0b12.tar.bz2"; 795 locale = "lij"; 796 arch = "linux-i686"; 797 + sha512 = "662c01c8eaa91743dccf1827f09e5d9b2488638931861664aeee78bbf8db4820acec77e1a64d4eedd207a7763c1773ee3e5fa3c70a229805d106e66d6d825937"; 798 } 799 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-i686/lt/firefox-65.0b12.tar.bz2"; 800 locale = "lt"; 801 arch = "linux-i686"; 802 + sha512 = "f01f7b319a22fdeeb99b8db25b7c1a0e40cf93aff241ec5ef0f3b425200d2ede44c4a3c64a6945c3129b8321367ed5a1d262e737faae2c9d63f144875321dcfc"; 803 } 804 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-i686/lv/firefox-65.0b12.tar.bz2"; 805 locale = "lv"; 806 arch = "linux-i686"; 807 + sha512 = "67d006cba759e9c797d4f39667312bc35b7c97b0e65005a96efdb2255ff465443e75b557f6312f387ffff107d1666064e111945e9d0ff5bbe8317b95cc6bd49f"; 808 } 809 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-i686/mai/firefox-65.0b12.tar.bz2"; 810 locale = "mai"; 811 arch = "linux-i686"; 812 + sha512 = "21d5c357ea45a07b8d5953a42a77899ae69855b3fd2971518ffc509b75471c0893993cbf3431b8c1180e7712282e754560edc2d66655acd6dc2d5018a0dac6eb"; 813 } 814 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-i686/mk/firefox-65.0b12.tar.bz2"; 815 locale = "mk"; 816 arch = "linux-i686"; 817 + sha512 = "ae9f832fd1699fc6929d62ed77841436310514c471aa3ea1c3916caf2e6d7369de1633338f9d504032013992bfa3d9cff488af9d87abeb12df16f907b01a9aad"; 818 } 819 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-i686/ml/firefox-65.0b12.tar.bz2"; 820 locale = "ml"; 821 arch = "linux-i686"; 822 + sha512 = "1f003afa0d5e35bf458b8043e734b909089d6554ef671ec16e7661c841ec66a7129f17b5a6ef36855db67d97f906be47b097232c3025a10c46b8dccf53882769"; 823 } 824 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-i686/mr/firefox-65.0b12.tar.bz2"; 825 locale = "mr"; 826 arch = "linux-i686"; 827 + sha512 = "493282c42fd361785a41997dfc248291face938d50626ddc41344eb8bc4d7a71f97e1f03ac141432ae80c90df0e0d21cd854dc5e8a31b6984ecfc71e39c0ed23"; 828 } 829 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-i686/ms/firefox-65.0b12.tar.bz2"; 830 locale = "ms"; 831 arch = "linux-i686"; 832 + sha512 = "7dbc3227ab947d034292333afc2c607e44c81b572c8e5edbc2bef1e94e75e627a109c3e84c618111f6f0aeea0961f03e9f62edd25dcbc7f48e7e62d432db83a3"; 833 } 834 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-i686/my/firefox-65.0b12.tar.bz2"; 835 locale = "my"; 836 arch = "linux-i686"; 837 + sha512 = "c3664d09e81d73193d4070b704526e01c8eab6b92b6706308806c4cff3abe71a9aaa12369fc74d0c5be47714e684a2c9994099ad6ce3378ad0d41b00e6279d50"; 838 } 839 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-i686/nb-NO/firefox-65.0b12.tar.bz2"; 840 locale = "nb-NO"; 841 arch = "linux-i686"; 842 + sha512 = "df15e3e4426cd8e253cfe5ca441214ee37f8181180e3cc4cff8a7e3b88a3d3481db79fda8a249cf5b8acc5ba36404fb016095920c0adf5f9f311e261aaff0251"; 843 } 844 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-i686/ne-NP/firefox-65.0b12.tar.bz2"; 845 locale = "ne-NP"; 846 arch = "linux-i686"; 847 + sha512 = "cd528e44a9efdab0cde68642f86587aabfd1cfa2de14e84c34cd8614d3f85af5ec8baf7010ad6c621f296e1ee94eaf420759eb6c0e2d212f917b38720d3f7918"; 848 } 849 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-i686/nl/firefox-65.0b12.tar.bz2"; 850 locale = "nl"; 851 arch = "linux-i686"; 852 + sha512 = "a86d07a4aeccf51b04ef8bee55780d20f6dff561870400e0e84539e77575fa462b6e87255f580ec147b6186ed098b733c4e72a44b66c3aec631c88fae6057442"; 853 } 854 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-i686/nn-NO/firefox-65.0b12.tar.bz2"; 855 locale = "nn-NO"; 856 arch = "linux-i686"; 857 + sha512 = "3b4e193d6d5fec1764f78d1ab0cb70f3becfe8b738c037b7f2991e7375e72db2444d21071041799f9b9a1a1c0a7e0ebd7037bf4f86508965dee4bb6b28c5082e"; 858 } 859 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-i686/oc/firefox-65.0b12.tar.bz2"; 860 locale = "oc"; 861 arch = "linux-i686"; 862 + sha512 = "999a9a520ae1546e0c53551b5c983f81650cc8410b8e1af8892d48a6ac8368f9e6dd9cd571de87e97410722b10e8c3989b692dbaabd7597f0bb274c156c84f18"; 863 } 864 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-i686/or/firefox-65.0b12.tar.bz2"; 865 locale = "or"; 866 arch = "linux-i686"; 867 + sha512 = "6fe6de7785b0e0c48386379581d2fd4ff72d45762d47aad824fa895c5ef2856cbbe36741e59dd1c986f4aeda538d50737a896e39248467c9daaad4d4ce27fd97"; 868 } 869 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-i686/pa-IN/firefox-65.0b12.tar.bz2"; 870 locale = "pa-IN"; 871 arch = "linux-i686"; 872 + sha512 = "64bb4b1547addde5daeb7b3be86204b9642b146b6a4a4a1f4b65a0a7a6a3648e117c0b0fc38ff3aa145246e25cc599ee95c1118c42af822e0784b34ea6f1bf70"; 873 } 874 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-i686/pl/firefox-65.0b12.tar.bz2"; 875 locale = "pl"; 876 arch = "linux-i686"; 877 + sha512 = "b9a274ce71be8f21f99c5d8014be1554e51af7ba7d7234a1a167337a715467f800332f1a5ddd0d7ab7df7e7184ec61fc414267d9259df479beb5a1343d6dad6f"; 878 } 879 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-i686/pt-BR/firefox-65.0b12.tar.bz2"; 880 locale = "pt-BR"; 881 arch = "linux-i686"; 882 + sha512 = "bc429cf61cbedd0b91b1aa563c316b6b1896f97abcd16e76beb084feee36104a9bb83cb5a4b0a90b425e6b025c655b48553ba75ad9e15716b4a4ab0b32b08157"; 883 } 884 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-i686/pt-PT/firefox-65.0b12.tar.bz2"; 885 locale = "pt-PT"; 886 arch = "linux-i686"; 887 + sha512 = "6bffe7b1e420a45d1646e09cbdb56bdbcd6e56152453ccafe10c48f36766c135a30bc09b165cb9bc456fe1521363d6c80ded2ea4fd597f71486c65b5cb1c5a9a"; 888 } 889 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-i686/rm/firefox-65.0b12.tar.bz2"; 890 locale = "rm"; 891 arch = "linux-i686"; 892 + sha512 = "75fe94dd75ce60a2e91c414f7d0ecc87e5373183ba94abda69741d6a8c2f499c9943fde3957440030f20e6d59c74c66a1306b10bd5547d98611c6b6fd337e3dc"; 893 } 894 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-i686/ro/firefox-65.0b12.tar.bz2"; 895 locale = "ro"; 896 arch = "linux-i686"; 897 + sha512 = "8d1fa8f69ad0aa150a57962c68e615eb04032d9ff370d751168fb57ae4c6358b3fa77445627d03fe125da982eddd3f44ce8700aba3d4bcfebbade07624ab7ad2"; 898 } 899 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-i686/ru/firefox-65.0b12.tar.bz2"; 900 locale = "ru"; 901 arch = "linux-i686"; 902 + sha512 = "bf9a2f236aa965e0ee6566bc341d0d722bde440fa9aab1e8212a312d8e6dac3e40fa3f1e7192ec2e45385e52d33838819cb71e4e903b23406184ad187db85078"; 903 } 904 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-i686/si/firefox-65.0b12.tar.bz2"; 905 locale = "si"; 906 arch = "linux-i686"; 907 + sha512 = "22f1dd062c9d5e3d27c5aab732697a49606e50f6d70b81232864dc5842cb979bc9157ff81005b8c7db829316ffe2f18e7bdf2c412886167cf403a38ef38bd89f"; 908 } 909 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-i686/sk/firefox-65.0b12.tar.bz2"; 910 locale = "sk"; 911 arch = "linux-i686"; 912 + sha512 = "59627ce8f57f7eb8ebc20c7293284444debbd62ed35d848fc0dbe5259d9628f843bcd4c295efaadb09fae912b456b108af18fc2512173a5a33d8d873fe1e7be9"; 913 } 914 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-i686/sl/firefox-65.0b12.tar.bz2"; 915 locale = "sl"; 916 arch = "linux-i686"; 917 + sha512 = "6d146cc2ccbd610487c7c7f0d1974c85e11c3e36191f2ce3a657e66c0548401c5310a16b41ae2c9784894b55508e0318a80dfc42d2f0977c2eadd685d10cf609"; 918 } 919 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-i686/son/firefox-65.0b12.tar.bz2"; 920 locale = "son"; 921 arch = "linux-i686"; 922 + sha512 = "3d22ffa970c87865302ce7ad91d0ad43fbeb8b453558d6041321b0136a86b7e979b99565f05be5c1d25ab1a506fdd7bc4a73cdd015af6fd030da249817029d01"; 923 } 924 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-i686/sq/firefox-65.0b12.tar.bz2"; 925 locale = "sq"; 926 arch = "linux-i686"; 927 + sha512 = "7d80028a8e3140d2ec67b48a113e2017eb71e77155abe800aace90e7facfe02e5f6a86c079cbb9ec3f4dfbd982f6ffd2410170bef4e9542ea634a414f4c89020"; 928 } 929 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-i686/sr/firefox-65.0b12.tar.bz2"; 930 locale = "sr"; 931 arch = "linux-i686"; 932 + sha512 = "bb3130b998e87d0d5986f3dbdc193de5796eecededbcc96f1f1e2e511b903d5d3ea6dcdb1e51f88a4fb2b0978e695c11bb1bfba8e7d67478319cec3386ddb623"; 933 } 934 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-i686/sv-SE/firefox-65.0b12.tar.bz2"; 935 locale = "sv-SE"; 936 arch = "linux-i686"; 937 + sha512 = "e63fb206bd71afd26457092a921a4b14d399de76c6f896cacb0da4f313dc85b769d359a328834df4d65024cca35a6e7a3a02fa69957b1a760300df45efb41aa9"; 938 } 939 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-i686/ta/firefox-65.0b12.tar.bz2"; 940 locale = "ta"; 941 arch = "linux-i686"; 942 + sha512 = "67023002a661c7775ebc6e8c30a92816ee23ea14d6fd29e7dbe2960583ddc14d0bf449d88cdaba7e16228751ebd28dcad425caf7986a843fa86bdd66327c3636"; 943 } 944 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-i686/te/firefox-65.0b12.tar.bz2"; 945 locale = "te"; 946 arch = "linux-i686"; 947 + sha512 = "b539b8e6f552b4d919929221f1f272924a785688c89066b67dd657ba1874d37275d645ac18d3c40a304cda9de2d0f0caabdeae49e597b4fe79a0e706dd4848e3"; 948 } 949 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-i686/th/firefox-65.0b12.tar.bz2"; 950 locale = "th"; 951 arch = "linux-i686"; 952 + sha512 = "9bec8f51199a6a445213cd2fad182b2acc25eed6400983eeeabd3d5d0cf7a6c7ffbd997f4c2599c473333f1d3e4353e47a40c0204d6cac5b0d2bc2850d9a24c4"; 953 } 954 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-i686/tr/firefox-65.0b12.tar.bz2"; 955 locale = "tr"; 956 arch = "linux-i686"; 957 + sha512 = "585bd5b91929743e3def77f7575969c59b5bece671a8df3f6d59e7c90caf07bd51d3d919ba15d4407d1f9ca189fbc6abf76f83671491b17e1a9c03faf3869153"; 958 } 959 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-i686/uk/firefox-65.0b12.tar.bz2"; 960 locale = "uk"; 961 arch = "linux-i686"; 962 + sha512 = "280b1aa6bba654417e789a53ebfae408e321f874ed69b4b723d31cb2b805e9e7e7e7ea9028c35f1e2c600a974138b463f537793286d21c0dbaae61fad9b32985"; 963 } 964 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-i686/ur/firefox-65.0b12.tar.bz2"; 965 locale = "ur"; 966 arch = "linux-i686"; 967 + sha512 = "37f30347ca1de9478f7031d626ddf3f0524718058264f8061d8a8158d3ea1004d4c1650d0d1c16810b9081c43d2e53009f08ef0f9ab835cb3477f151f8e740c8"; 968 } 969 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-i686/uz/firefox-65.0b12.tar.bz2"; 970 locale = "uz"; 971 arch = "linux-i686"; 972 + sha512 = "aded0230fa15016ce2a1119933b9fc82456712e457da3fab8e2ad235ec606a9f222a79ced6585c91f65dc660675f408b0b0bb21f8cf05220acfcd85be0fb3237"; 973 } 974 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-i686/vi/firefox-65.0b12.tar.bz2"; 975 locale = "vi"; 976 arch = "linux-i686"; 977 + sha512 = "497d000ec41ac4eb8a5eae2d9498eb65ca7d1318f71b83e2e335425ef2d2b01c20a08901a79ab24365cdaf5985fc4c7152ec72aca67efbb7999fd254a2dba04e"; 978 } 979 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-i686/xh/firefox-65.0b12.tar.bz2"; 980 locale = "xh"; 981 arch = "linux-i686"; 982 + sha512 = "c54ad480874eed1df61bb1b784ea13dd7bf3523914edc678eb3823712639fd769452b1539a4c428fd2b57fb6d6e4bb7fb7f9046c448d3aae2b2edd64a57958a8"; 983 } 984 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-i686/zh-CN/firefox-65.0b12.tar.bz2"; 985 locale = "zh-CN"; 986 arch = "linux-i686"; 987 + sha512 = "c8ca8eaf1ca12d099a4feaf306585e5134a164cc21f67226a37d87293a1f76b39c408286e3e17c7d8d36f8b2002cc7b123cf8a5864ec32c4df5232796ca1e813"; 988 } 989 + { url = "http://archive.mozilla.org/pub/devedition/releases/65.0b12/linux-i686/zh-TW/firefox-65.0b12.tar.bz2"; 990 locale = "zh-TW"; 991 arch = "linux-i686"; 992 + sha512 = "3f5f92e65276e5dd2f3bfcd3624e03ffaee69a3a158e7a533d774d9c645a0aeffa7f691ffd024d654957830694087a1ffb014d781a479ecb2da5e4527681606d"; 993 } 994 ]; 995 }
+2 -2
pkgs/applications/networking/cluster/kubernetes/default.nix
··· 15 16 stdenv.mkDerivation rec { 17 name = "kubernetes-${version}"; 18 - version = "1.13.1"; 19 20 src = fetchFromGitHub { 21 owner = "kubernetes"; 22 repo = "kubernetes"; 23 rev = "v${version}"; 24 - sha256 = "048ckirz7v1djari6l9ddkcd9i4yafcv57wk131dv0cs2zady9va"; 25 }; 26 27 buildInputs = [ removeReferencesTo makeWrapper which go rsync go-bindata ];
··· 15 16 stdenv.mkDerivation rec { 17 name = "kubernetes-${version}"; 18 + version = "1.13.2"; 19 20 src = fetchFromGitHub { 21 owner = "kubernetes"; 22 repo = "kubernetes"; 23 rev = "v${version}"; 24 + sha256 = "1j5yyzn3c481ba6bbyx6gsa41zhg3x35sdbajlnxmbnid0g21g8g"; 25 }; 26 27 buildInputs = [ removeReferencesTo makeWrapper which go rsync go-bindata ];
+2 -2
pkgs/applications/networking/cluster/terraform-docs/default.nix
··· 2 buildGoPackage rec { 3 name = "${pname}-${version}"; 4 pname = "terraform-docs"; 5 - version = "0.5.0"; 6 7 goPackagePath = "github.com/segmentio/${pname}"; 8 ··· 10 owner = "segmentio"; 11 repo = pname; 12 rev = "v${version}"; 13 - sha256 = "12w2yr669hk5kxdb9rrzsn8hwvx8rzrc1rmn8hs9l8z1bkfhr4gg"; 14 }; 15 16 preBuild = ''
··· 2 buildGoPackage rec { 3 name = "${pname}-${version}"; 4 pname = "terraform-docs"; 5 + version = "0.6.0"; 6 7 goPackagePath = "github.com/segmentio/${pname}"; 8 ··· 10 owner = "segmentio"; 11 repo = pname; 12 rev = "v${version}"; 13 + sha256 = "1p6prhjf82qnhf1zwl9h92j4ds5g383a6g9pwwnqbc3wdwy5zx7d"; 14 }; 15 16 preBuild = ''
+89 -54
pkgs/applications/networking/cluster/terraform-providers/data.nix
··· 11 { 12 owner = "terraform-providers"; 13 repo = "terraform-provider-alicloud"; 14 - version = "1.25.0"; 15 - sha256 = "09f0vdzkifj2mk1qccacpnlqiihbhhb2sfd21rpxbqscmj6a7vj1"; 16 }; 17 archive = 18 { ··· 39 { 40 owner = "terraform-providers"; 41 repo = "terraform-provider-aws"; 42 - version = "1.52.0"; 43 - sha256 = "037n26spp49r4b4f6cyv6d3sgqw2d80g97fqgz1j0hcwi0am56h1"; 44 }; 45 azurerm = 46 { 47 owner = "terraform-providers"; 48 repo = "terraform-provider-azurerm"; 49 - version = "1.20.0"; 50 - sha256 = "0hfq5gk4bhmw65x1rsdpwv0massgr1sczvcbyh572qlkkhvm59xd"; 51 }; 52 azurestack = 53 { ··· 102 { 103 owner = "terraform-providers"; 104 repo = "terraform-provider-cloudflare"; 105 - version = "1.9.0"; 106 - sha256 = "0z11zaii99cilqcq4lgikaanb2zc457qv19sxdh6b3v88n5n8qsf"; 107 }; 108 cloudscale = 109 { ··· 116 { 117 owner = "terraform-providers"; 118 repo = "terraform-provider-cloudstack"; 119 - version = "0.1.5"; 120 - sha256 = "139wq6rr6fczjz496fqkxh6cmscx5hfnv2hvhfwpkhvqipsnlxmq"; 121 }; 122 cobbler = 123 { ··· 193 { 194 owner = "terraform-providers"; 195 repo = "terraform-provider-fastly"; 196 - version = "0.4.0"; 197 - sha256 = "1fkn9b6ibs36cmhknb3x05g31rf73w70xwx05rh9fhybrz5dd9z9"; 198 }; 199 flexibleengine = 200 { 201 owner = "terraform-providers"; 202 repo = "terraform-provider-flexibleengine"; 203 - version = "1.2.1"; 204 - sha256 = "000v6fmmnwfibzfssk23s9qwrb8a9l0j1qd14x2dqsc7ql0kbnz8"; 205 }; 206 github = 207 { ··· 214 { 215 owner = "terraform-providers"; 216 repo = "terraform-provider-gitlab"; 217 - version = "1.0.0"; 218 - sha256 = "1kxmzdzdb6fc64i2bzch6020zfk0ygms9gh5mm1bypsyqmj4qc6r"; 219 }; 220 google = 221 { ··· 224 version = "1.20.0"; 225 sha256 = "1brkq4iz140miai6gzvzxfl28qi4j8gcc22igd7cb4qzafnlbxaj"; 226 }; 227 grafana = 228 { 229 owner = "terraform-providers"; ··· 235 { 236 owner = "terraform-providers"; 237 repo = "terraform-provider-hcloud"; 238 - version = "1.6.0"; 239 - sha256 = "19kax1l2l6vr8cwgy14ahhafnvlxgkw86xx2g9ajfg70d0q4zs3g"; 240 }; 241 helm = 242 { ··· 249 { 250 owner = "terraform-providers"; 251 repo = "terraform-provider-heroku"; 252 - version = "1.7.0"; 253 - sha256 = "0zk5w4xwbg631m7592gfmdbsmrr0r7vla5nd1p5frh6szg6psy6m"; 254 }; 255 http = 256 { ··· 263 { 264 owner = "terraform-providers"; 265 repo = "terraform-provider-huaweicloud"; 266 - version = "1.2.0"; 267 - sha256 = "0r05dfgpzci0lpc2ivbrj6ivib8svbks9612by3w3zakzclpv467"; 268 }; 269 icinga2 = 270 { ··· 291 { 292 owner = "terraform-providers"; 293 repo = "terraform-provider-kubernetes"; 294 - version = "1.4.0"; 295 - sha256 = "14bhqrpx0z4qn51xwcklafva46ipx05q6myy7xh5wf6wpjz69j9p"; 296 }; 297 librato = 298 { ··· 305 { 306 owner = "terraform-providers"; 307 repo = "terraform-provider-linode"; 308 - version = "1.3.0"; 309 - sha256 = "1683nkpq7wnc67pphablcmaifq2l1pz3gc9y5y9jbslllphy92v5"; 310 }; 311 local = 312 { ··· 361 { 362 owner = "terraform-providers"; 363 repo = "terraform-provider-nomad"; 364 - version = "1.2.0"; 365 - sha256 = "1z3knyjn5ymbk4vaja4ka9zn57cgl7vr7hqv6ybqw0q9i2ykaici"; 366 }; 367 ns1 = 368 { 369 owner = "terraform-providers"; 370 repo = "terraform-provider-ns1"; 371 - version = "1.0.0"; 372 - sha256 = "0zjdhz6miwlg3b68pbd99c6nw7hhyzxy736734xz8g3w89xn18f5"; 373 }; 374 nsxt = 375 { ··· 382 { 383 owner = "terraform-providers"; 384 repo = "terraform-provider-null"; 385 - version = "1.0.0"; 386 - sha256 = "12vpa09xrq8z1pjq0bwzq3889c4fl6c5kvynwqy0z1pdx21m60ha"; 387 }; 388 nutanix = 389 { ··· 396 { 397 owner = "terraform-providers"; 398 repo = "terraform-provider-oci"; 399 - version = "3.10.0"; 400 - sha256 = "0dhz3y62dp66jkn0q4x7v2cnqw8kiq34sgyfx8mw706hg9sdqb0l"; 401 }; 402 oneandone = 403 { ··· 410 { 411 owner = "terraform-providers"; 412 repo = "terraform-provider-opc"; 413 - version = "1.3.1"; 414 - sha256 = "0rpkhaja6vq1y1xah136vjlp1d5v9adymq300ajssbjkqf93wzs6"; 415 }; 416 openstack = 417 { 418 owner = "terraform-providers"; 419 repo = "terraform-provider-openstack"; 420 - version = "1.12.0"; 421 - sha256 = "1zv5z55yiqvsh5sh26qlyw8fcc7kyw7v4p60kfnw2ds5kd0b51i1"; 422 }; 423 opentelekomcloud = 424 { 425 owner = "terraform-providers"; 426 repo = "terraform-provider-opentelekomcloud"; 427 - version = "1.4.0"; 428 - sha256 = "0dv756npyhadzr08zlv28ghazaj1fdp3avcld7y6ri99hamncm95"; 429 }; 430 opsgenie = 431 { ··· 438 { 439 owner = "terraform-providers"; 440 repo = "terraform-provider-oraclepaas"; 441 - version = "1.4.0"; 442 - sha256 = "1hhkijxnwmm21b0w9qc3lk5vfcg0ac0sg7v4g0ffjqv68mssrz6x"; 443 }; 444 ovh = 445 { ··· 473 { 474 owner = "terraform-providers"; 475 repo = "terraform-provider-postgresql"; 476 - version = "0.1.2"; 477 - sha256 = "08wv03j70mych4nnamivjihwvca3aksjxgjlj8yasz5292qgl05w"; 478 }; 479 powerdns = 480 { ··· 543 { 544 owner = "terraform-providers"; 545 repo = "terraform-provider-selvpc"; 546 - version = "0.3.0"; 547 - sha256 = "1s1p0qa9x007hq26i4h0gcqpyx54jnwvg8d6ya044gm7gghhviz4"; 548 }; 549 softlayer = 550 { ··· 557 { 558 owner = "terraform-providers"; 559 repo = "terraform-provider-spotinst"; 560 - version = "1.4.0"; 561 - sha256 = "0kb09v18ksh2r4b5k9iv4rzq403zk1shpakk54pmq8s6i5jd085g"; 562 }; 563 statuscake = 564 { ··· 578 { 579 owner = "terraform-providers"; 580 repo = "terraform-provider-template"; 581 - version = "1.0.0"; 582 - sha256 = "0jl6bp6gwg96sdk5j6s13vv1j9gxjpy2yva3barmzv9138i665mz"; 583 }; 584 tencentcloud = 585 { ··· 599 { 600 owner = "terraform-providers"; 601 repo = "terraform-provider-tfe"; 602 - version = "0.5.0"; 603 - sha256 = "1acmmsb4nj3l4d7zlzjrh97nhrkgm99wlazjrfavxwly253ck283"; 604 }; 605 tls = 606 { ··· 616 version = "0.5.1"; 617 sha256 = "1bn5x6nmhfkrzpxhyfclls85l9qqffvzx1xsgcb3368lhwzarn2f"; 618 }; 619 ultradns = 620 { 621 owner = "terraform-providers"; ··· 641 { 642 owner = "terraform-providers"; 643 repo = "terraform-provider-vsphere"; 644 - version = "1.9.0"; 645 - sha256 = "1by9klwvdw3m854jffimfnsz1lnbaixi4zcv4zzs63dc3flwy2b2"; 646 }; 647 matchbox = 648 {
··· 11 { 12 owner = "terraform-providers"; 13 repo = "terraform-provider-alicloud"; 14 + version = "1.28.0"; 15 + sha256 = "1clivywiv41dbdiix5cqghncf782jvpixlh02hlj4hn2cwq2j6mn"; 16 }; 17 archive = 18 { ··· 39 { 40 owner = "terraform-providers"; 41 repo = "terraform-provider-aws"; 42 + version = "1.56.0"; 43 + sha256 = "1jsvkqr3l88z2lq89rjw0nrnm8dsm57nydi45mbzjl3k0j7g028m"; 44 + }; 45 + azuread = 46 + { 47 + owner = "terraform-providers"; 48 + repo = "terraform-provider-azuread"; 49 + version = "0.1.0"; 50 + sha256 = "0jrsg3a9cb16jinzjhg2pfm65b1bfhdwnyhag1x3x4kffm3gm148"; 51 }; 52 azurerm = 53 { 54 owner = "terraform-providers"; 55 repo = "terraform-provider-azurerm"; 56 + version = "1.21.0"; 57 + sha256 = "1xvw884nmr3h5ai2ijm2vms12cghas0jbkb52mqbqbaqci7273lc"; 58 }; 59 azurestack = 60 { ··· 109 { 110 owner = "terraform-providers"; 111 repo = "terraform-provider-cloudflare"; 112 + version = "1.11.0"; 113 + sha256 = "14v4461bxxr5zdr11v1s89m1x9kpjxa1mff9inx2vwkdz9s02w0i"; 114 }; 115 cloudscale = 116 { ··· 123 { 124 owner = "terraform-providers"; 125 repo = "terraform-provider-cloudstack"; 126 + version = "0.2.0"; 127 + sha256 = "1v46da55a8a0hnw319swz3pkd62afy7hdwzybxmp48hxh1i6af74"; 128 }; 129 cobbler = 130 { ··· 200 { 201 owner = "terraform-providers"; 202 repo = "terraform-provider-fastly"; 203 + version = "0.5.0"; 204 + sha256 = "08mnpf5j0pwhd38yl0phy5ipdvk9hwh8q9kcbv997y8mzpn5703g"; 205 }; 206 flexibleengine = 207 { 208 owner = "terraform-providers"; 209 repo = "terraform-provider-flexibleengine"; 210 + version = "1.3.1"; 211 + sha256 = "19jncf24hl448srk4r2vqn8sca1mx8pcql9p5nxn015q6gig510v"; 212 }; 213 github = 214 { ··· 221 { 222 owner = "terraform-providers"; 223 repo = "terraform-provider-gitlab"; 224 + version = "1.1.0"; 225 + sha256 = "07mj69w0bvvkbzgfj17z7j34dg19db1d2m4gxwzjj81qmgmvzs3x"; 226 }; 227 google = 228 { ··· 231 version = "1.20.0"; 232 sha256 = "1brkq4iz140miai6gzvzxfl28qi4j8gcc22igd7cb4qzafnlbxaj"; 233 }; 234 + google-beta = 235 + { 236 + owner = "terraform-providers"; 237 + repo = "terraform-provider-google-beta"; 238 + version = "1.20.0"; 239 + sha256 = "0qbzacfm1ai0lflwrq49sjy5y84n8zvaxsp6yz7ifvylqmirj1j0"; 240 + }; 241 grafana = 242 { 243 owner = "terraform-providers"; ··· 249 { 250 owner = "terraform-providers"; 251 repo = "terraform-provider-hcloud"; 252 + version = "1.7.0"; 253 + sha256 = "10i043mlcp4vvlsd22zcdj2ma3372cxfklrx30kav7w3lfsqgcl6"; 254 + }; 255 + hedvig = 256 + { 257 + owner = "terraform-providers"; 258 + repo = "terraform-provider-hedvig"; 259 + version = "1.0.1"; 260 + sha256 = "1cbvr43qb2kxvsg17cnf91lnfv6cmj0dmc1manxrq1nicsnz6v5f"; 261 }; 262 helm = 263 { ··· 270 { 271 owner = "terraform-providers"; 272 repo = "terraform-provider-heroku"; 273 + version = "1.7.2"; 274 + sha256 = "0wliiks1cvxai3rca2nzy6dhc763fkrzagsl92c5xsz1zs59vy98"; 275 }; 276 http = 277 { ··· 284 { 285 owner = "terraform-providers"; 286 repo = "terraform-provider-huaweicloud"; 287 + version = "1.3.0"; 288 + sha256 = "1pm2zfss20spfwqidhn04hcq4nxxamjkn6xv8vxm3mgrky1ysvp5"; 289 }; 290 icinga2 = 291 { ··· 312 { 313 owner = "terraform-providers"; 314 repo = "terraform-provider-kubernetes"; 315 + version = "1.5.0"; 316 + sha256 = "1rzydw8bg2rmwvcvjp1h2qd4izkfs96rnmff42h0av22sfxkd7ng"; 317 }; 318 librato = 319 { ··· 326 { 327 owner = "terraform-providers"; 328 repo = "terraform-provider-linode"; 329 + version = "1.4.0"; 330 + sha256 = "0ak102bmi6yh7x9d3ryyvpck49vgdgwhbk958bbyhfpdr6jrvsrr"; 331 }; 332 local = 333 { ··· 382 { 383 owner = "terraform-providers"; 384 repo = "terraform-provider-nomad"; 385 + version = "1.3.0"; 386 + sha256 = "06kq0qkrgnj7z13xrgb9shid356m55mz0hkdbm4vfz3fx863mvl3"; 387 }; 388 ns1 = 389 { 390 owner = "terraform-providers"; 391 repo = "terraform-provider-ns1"; 392 + version = "1.1.0"; 393 + sha256 = "1qfzm35p6kgamm1ffdvll96br025sj496nqzhsnfh3n3hsxzf0b8"; 394 }; 395 nsxt = 396 { ··· 403 { 404 owner = "terraform-providers"; 405 repo = "terraform-provider-null"; 406 + version = "2.0.0"; 407 + sha256 = "1qbb4pyzqys2010g6b4yzdzgalrf6az1s24y4sa577q2bix8x45v"; 408 }; 409 nutanix = 410 { ··· 417 { 418 owner = "terraform-providers"; 419 repo = "terraform-provider-oci"; 420 + version = "3.12.0"; 421 + sha256 = "00mwyangy7n665wlvvr6jmrlfbhnw5spy47q64rmm4pp66gg9brw"; 422 }; 423 oneandone = 424 { ··· 431 { 432 owner = "terraform-providers"; 433 repo = "terraform-provider-opc"; 434 + version = "1.3.2"; 435 + sha256 = "0fm53xwgpsmfkqavichxb0vq86bqqpsadlyzqz5jafw3aavx91cb"; 436 }; 437 openstack = 438 { 439 owner = "terraform-providers"; 440 repo = "terraform-provider-openstack"; 441 + version = "1.14.0"; 442 + sha256 = "05vlcfnbfs4xwzfx8lihq63zya19gdgq2xh5ddwprzddm42v1i1z"; 443 }; 444 opentelekomcloud = 445 { 446 owner = "terraform-providers"; 447 repo = "terraform-provider-opentelekomcloud"; 448 + version = "1.5.2"; 449 + sha256 = "1zprj2k86wad9c35jgv22imld8l8f1jjgv54dj54ry56964nhkh8"; 450 }; 451 opsgenie = 452 { ··· 459 { 460 owner = "terraform-providers"; 461 repo = "terraform-provider-oraclepaas"; 462 + version = "1.4.1"; 463 + sha256 = "12jsqsyrkmrxpz8zashjwnvn6nkrd6ya06d58m116a0qija1a4s3"; 464 }; 465 ovh = 466 { ··· 494 { 495 owner = "terraform-providers"; 496 repo = "terraform-provider-postgresql"; 497 + version = "0.1.3"; 498 + sha256 = "1jx907wrq3b9cvx0z4731d1vkp40g358czgpgmky6k8wg70mhp17"; 499 }; 500 powerdns = 501 { ··· 564 { 565 owner = "terraform-providers"; 566 repo = "terraform-provider-selvpc"; 567 + version = "1.1.0"; 568 + sha256 = "045mp6j5hll0lym9z035swxmdjq43mdpf881qgmk8sz8j2wgvm5f"; 569 + }; 570 + skytap = 571 + { 572 + owner = "terraform-providers"; 573 + repo = "terraform-provider-skytap"; 574 + version = "0.9.0"; 575 + sha256 = "15p2rfaqw5iab8fkxcxigp7nxvs4gmgr2v8ysfyjz01mgwidd0rq"; 576 }; 577 softlayer = 578 { ··· 585 { 586 owner = "terraform-providers"; 587 repo = "terraform-provider-spotinst"; 588 + version = "1.5.0"; 589 + sha256 = "15ggn37qsgzb78g0f6bj1l89zy65yqj66abs7xq5kjxsh62h9dij"; 590 }; 591 statuscake = 592 { ··· 606 { 607 owner = "terraform-providers"; 608 repo = "terraform-provider-template"; 609 + version = "2.0.0"; 610 + sha256 = "0rn2qavvx1y0hv25iw8yd6acvrclmz17hzg2jpb161mnlh8q94r4"; 611 }; 612 tencentcloud = 613 { ··· 627 { 628 owner = "terraform-providers"; 629 repo = "terraform-provider-tfe"; 630 + version = "0.6.0"; 631 + sha256 = "1p8l034cjpj81vcvnz8mr2yyw3bz4zffmdg9pz9mp62s8rrrvwkw"; 632 }; 633 tls = 634 { ··· 644 version = "0.5.1"; 645 sha256 = "1bn5x6nmhfkrzpxhyfclls85l9qqffvzx1xsgcb3368lhwzarn2f"; 646 }; 647 + ucloud = 648 + { 649 + owner = "terraform-providers"; 650 + repo = "terraform-provider-ucloud"; 651 + version = "1.1.0"; 652 + sha256 = "0v4f7rvyiwmm64v6gwqdz3mn9sjq5y8mlhd7v9saq7rh56pfx3n2"; 653 + }; 654 ultradns = 655 { 656 owner = "terraform-providers"; ··· 676 { 677 owner = "terraform-providers"; 678 repo = "terraform-provider-vsphere"; 679 + version = "1.9.1"; 680 + sha256 = "07pxzy8fw0n0kq9mf43bz4cycbwxp8vy0jbl44sknszmzbn4pam7"; 681 }; 682 matchbox = 683 {
+2
pkgs/applications/networking/cluster/terraform-providers/default.nix
··· 11 inherit (data) owner repo version sha256; 12 name = "${repo}-${version}"; 13 goPackagePath = "github.com/${owner}/${repo}"; 14 src = fetchFromGitHub { 15 inherit owner repo sha256; 16 rev = "v${version}"; 17 }; 18 19 # Terraform allow checking the provider versions, but this breaks 20 # if the versions are not provided via file paths.
··· 11 inherit (data) owner repo version sha256; 12 name = "${repo}-${version}"; 13 goPackagePath = "github.com/${owner}/${repo}"; 14 + subPackages = [ "." ]; 15 src = fetchFromGitHub { 16 inherit owner repo sha256; 17 rev = "v${version}"; 18 }; 19 + 20 21 # Terraform allow checking the provider versions, but this breaks 22 # if the versions are not provided via file paths.
+1 -1
pkgs/applications/networking/cluster/terraform-providers/providers.txt
··· 7 # <organisation>/<repo> - include only the named repository. 8 9 # include all terraform-providers 10 - terraform-providers terraform-provider- terraform-provider-\\(azure-classic\\|scaffolding\\|google-beta\\|skytap\\) 11 12 # include terraform-provider-matchbox 13 coreos/terraform-provider-matchbox
··· 7 # <organisation>/<repo> - include only the named repository. 8 9 # include all terraform-providers 10 + terraform-providers terraform-provider- terraform-provider-\\(azure-classic\\|scaffolding\\) 11 12 # include terraform-provider-matchbox 13 coreos/terraform-provider-matchbox
+2 -2
pkgs/applications/networking/cluster/terraform/default.nix
··· 97 terraform_0_11-full = terraform_0_11.full; 98 99 terraform_0_12 = pluggable (generic { 100 - version = "0.12.0-alpha2"; 101 - sha256 = "1rnxgwfk10b1g3jnh9gv4lqrcszhxq8shaqslml30hafs3dkg71q"; 102 patches = [ ./provider-path.patch ]; 103 passthru = { inherit plugins; }; 104 });
··· 97 terraform_0_11-full = terraform_0_11.full; 98 99 terraform_0_12 = pluggable (generic { 100 + version = "0.12.0-alpha4"; 101 + sha256 = "16cwqxxb19m91d7rx7awri1awz7d8cfnrv0rbql9rbg5qjyqxcp9"; 102 patches = [ ./provider-path.patch ]; 103 passthru = { inherit plugins; }; 104 });
+2 -2
pkgs/applications/networking/instant-messengers/signal-desktop/default.nix
··· 56 57 in stdenv.mkDerivation rec { 58 name = "signal-desktop-${version}"; 59 - version = "1.19.0"; 60 61 src = fetchurl { 62 url = "https://updates.signal.org/desktop/apt/pool/main/s/signal-desktop/signal-desktop_${version}_amd64.deb"; 63 - sha256 = "19a585mylbwrxd2m75hgp77ys1r350xkvawq2ysp0cxzr04l46z7"; 64 }; 65 66 phases = [ "unpackPhase" "installPhase" ];
··· 56 57 in stdenv.mkDerivation rec { 58 name = "signal-desktop-${version}"; 59 + version = "1.20.0"; 60 61 src = fetchurl { 62 url = "https://updates.signal.org/desktop/apt/pool/main/s/signal-desktop/signal-desktop_${version}_amd64.deb"; 63 + sha256 = "1w75g7i7hf9b3yilnd6ivhd4xgp4z000x9wnrqcba2dgbr5pz7c7"; 64 }; 65 66 phases = [ "unpackPhase" "installPhase" ];
+2 -2
pkgs/applications/networking/instant-messengers/wavebox/default.nix
··· 8 let 9 bits = "x86_64"; 10 11 - version = "4.5.9"; 12 13 desktopItem = makeDesktopItem rec { 14 name = "Wavebox"; ··· 25 name = "wavebox-${version}"; 26 src = fetchurl { 27 url = "https://github.com/wavebox/waveboxapp/releases/download/v${version}/${tarball}"; 28 - sha256 = "158kj7r5p4p3xk5pwzvbd51h543panmgkr64knv418ksyqjdi16g"; 29 }; 30 31 # don't remove runtime deps
··· 8 let 9 bits = "x86_64"; 10 11 + version = "4.5.10"; 12 13 desktopItem = makeDesktopItem rec { 14 name = "Wavebox"; ··· 25 name = "wavebox-${version}"; 26 src = fetchurl { 27 url = "https://github.com/wavebox/waveboxapp/releases/download/v${version}/${tarball}"; 28 + sha256 = "0863x3gyzzbm6qs26j821b4iy596cc2h7ppdj6hq5rgr7c01ac9k"; 29 }; 30 31 # don't remove runtime deps
+3 -3
pkgs/applications/office/zotero/default.nix
··· 1 { stdenv, fetchurl, buildFHSUserEnv, makeDesktopItem, runCommand, bash, wrapGAppsHook, gsettings-desktop-schemas, gtk3, gnome3 }: 2 3 let 4 - version = "5.0.35.1"; 5 meta = with stdenv.lib; { 6 homepage = https://www.zotero.org; 7 description = "Collect, organize, cite, and share your research sources"; ··· 15 16 src = fetchurl { 17 url = "https://download.zotero.org/client/release/${version}/Zotero-${version}_linux-x86_64.tar.bz2"; 18 - sha256 = "0d2imvp84svllrnja1dl4nldp634z632g5xkm2q9v7j3dwbzw1hw"; 19 }; 20 21 buildInputs= [ wrapGAppsHook gsettings-desktop-schemas gtk3 gnome3.adwaita-icon-theme gnome3.dconf ]; ··· 32 fhsEnv = buildFHSUserEnv { 33 name = "zotero-fhs-env"; 34 targetPkgs = pkgs: with pkgs; with xorg; [ 35 - gtk3 dbus-glib 36 libXt nss 37 libX11 38 ];
··· 1 { stdenv, fetchurl, buildFHSUserEnv, makeDesktopItem, runCommand, bash, wrapGAppsHook, gsettings-desktop-schemas, gtk3, gnome3 }: 2 3 let 4 + version = "5.0.60"; 5 meta = with stdenv.lib; { 6 homepage = https://www.zotero.org; 7 description = "Collect, organize, cite, and share your research sources"; ··· 15 16 src = fetchurl { 17 url = "https://download.zotero.org/client/release/${version}/Zotero-${version}_linux-x86_64.tar.bz2"; 18 + sha256 = "0753xk95shhxma4dvdxrj2q6y81z8lianxg7jnab9m17fb67jy2d"; 19 }; 20 21 buildInputs= [ wrapGAppsHook gsettings-desktop-schemas gtk3 gnome3.adwaita-icon-theme gnome3.dconf ]; ··· 32 fhsEnv = buildFHSUserEnv { 33 name = "zotero-fhs-env"; 34 targetPkgs = pkgs: with pkgs; with xorg; [ 35 + gtk3 dbus-glib glib 36 libXt nss 37 libX11 38 ];
+2 -2
pkgs/applications/science/biology/picard-tools/default.nix
··· 2 3 stdenv.mkDerivation rec { 4 name = "picard-tools-${version}"; 5 - version = "2.18.21"; 6 7 src = fetchurl { 8 url = "https://github.com/broadinstitute/picard/releases/download/${version}/picard.jar"; 9 - sha256 = "0p1na79p0kz1x1nd88100487s4f306p8k4m7dq5r4m2kdsc1dqin"; 10 }; 11 12 nativeBuildInputs = [ makeWrapper ];
··· 2 3 stdenv.mkDerivation rec { 4 name = "picard-tools-${version}"; 5 + version = "2.18.23"; 6 7 src = fetchurl { 8 url = "https://github.com/broadinstitute/picard/releases/download/${version}/picard.jar"; 9 + sha256 = "13521lcblbcb4vshcrrw6qlqlzvm88grp4vm8d0b3hwbl3rr0py4"; 10 }; 11 12 nativeBuildInputs = [ makeWrapper ];
+2 -2
pkgs/applications/science/math/gmsh/default.nix
··· 1 { stdenv, fetchurl, cmake, openblasCompat, gfortran, gmm, fltk, libjpeg 2 , zlib, libGLU_combined, libGLU, xorg }: 3 4 - let version = "4.0.7"; in 5 6 stdenv.mkDerivation { 7 name = "gmsh-${version}"; 8 9 src = fetchurl { 10 url = "http://gmsh.info/src/gmsh-${version}-source.tgz"; 11 - sha256 = "c6572320d0ffdf7d2488e113861bc4bd9c38a29f7fc5b67957f6fbcb63fbdbd5"; 12 }; 13 14 buildInputs = [ cmake openblasCompat gmm fltk libjpeg zlib libGLU_combined
··· 1 { stdenv, fetchurl, cmake, openblasCompat, gfortran, gmm, fltk, libjpeg 2 , zlib, libGLU_combined, libGLU, xorg }: 3 4 + let version = "4.1.0"; in 5 6 stdenv.mkDerivation { 7 name = "gmsh-${version}"; 8 9 src = fetchurl { 10 url = "http://gmsh.info/src/gmsh-${version}-source.tgz"; 11 + sha256 = "0k53k6s4hmciakhrb3ka109vk06ckdbyms5ixizijlfh1dvh7iim"; 12 }; 13 14 buildInputs = [ cmake openblasCompat gmm fltk libjpeg zlib libGLU_combined
+19
pkgs/applications/science/math/sage/patches/fix-ecl-race.patch
···
··· 1 + diff --git a/src/sage/doctest/forker.py b/src/sage/doctest/forker.py 2 + index 02e18e67e7..2ebf6eb35f 100644 3 + --- a/src/sage/doctest/forker.py 4 + +++ b/src/sage/doctest/forker.py 5 + @@ -1075,6 +1075,14 @@ class SageDocTestRunner(doctest.DocTestRunner, object): 6 + sage: set(ex2.predecessors) == set([ex0,ex1]) 7 + True 8 + """ 9 + + 10 + + # Fix ECL dir race conditions by using a separate dir for each process 11 + + # (https://trac.sagemath.org/ticket/26968) 12 + + os.environ['MAXIMA_USERDIR'] = "{}/sage-maxima-{}".format( 13 + + tempfile.gettempdir(), 14 + + os.getpid() 15 + + ) 16 + + 17 + if isinstance(globs, RecordingDict): 18 + globs.start() 19 + example.sequence_number = len(self.history)
+3
pkgs/applications/science/math/sage/sage-src.nix
··· 46 # tests) are also run. That is necessary to test dochtml individually. See 47 # https://trac.sagemath.org/ticket/26110 for an upstream discussion. 48 ./patches/Only-test-py2-py3-optional-tests-when-all-of-sage-is.patch 49 ]; 50 51 # Patches needed because of package updates. We could just pin the versions of
··· 46 # tests) are also run. That is necessary to test dochtml individually. See 47 # https://trac.sagemath.org/ticket/26110 for an upstream discussion. 48 ./patches/Only-test-py2-py3-optional-tests-when-all-of-sage-is.patch 49 + 50 + # Fixes a potential race condition which can lead to transient doctest failures. 51 + ./patches/fix-ecl-race.patch 52 ]; 53 54 # Patches needed because of package updates. We could just pin the versions of
+2 -2
pkgs/applications/version-management/git-and-tools/git-secret/default.nix
··· 1 { stdenv, lib, fetchFromGitHub, makeWrapper, git, gnupg, gawk }: 2 3 let 4 - version = "0.2.4"; 5 repo = "git-secret"; 6 7 in stdenv.mkDerivation { ··· 11 inherit repo; 12 owner = "sobolevn"; 13 rev = "v${version}"; 14 - sha256 = "0lx2rjyhy3xh6ik755lbbl40v7a7ayyqk68jj8mnv42f2vhd66xl"; 15 }; 16 17 buildInputs = [ makeWrapper ];
··· 1 { stdenv, lib, fetchFromGitHub, makeWrapper, git, gnupg, gawk }: 2 3 let 4 + version = "0.2.5"; 5 repo = "git-secret"; 6 7 in stdenv.mkDerivation { ··· 11 inherit repo; 12 owner = "sobolevn"; 13 rev = "v${version}"; 14 + sha256 = "1caxdx1ps662vfa79f7l1bwgwgwf974ahzii0hzaqfnkxy45i520"; 15 }; 16 17 buildInputs = [ makeWrapper ];
+28
pkgs/data/fonts/agave/default.nix
···
··· 1 + { stdenv, fetchurl }: 2 + 3 + stdenv.mkDerivation rec { 4 + name = "agave-${version}"; 5 + version = "008"; 6 + 7 + src = fetchurl { 8 + url = "https://github.com/agarick/agave/releases/download/v${version}/${name}.tar.gz"; 9 + sha256 = "0g50mqpffn4dq761vibaf8dwfkbcl5da1cc89qz6pq35ircipbns"; 10 + }; 11 + 12 + sourceRoot = "."; 13 + 14 + dontBuild = true; 15 + installPhase = '' 16 + mkdir -p $out/share/fonts/truetype 17 + cp *.ttf $out/share/fonts/truetype 18 + ''; 19 + 20 + meta = with stdenv.lib; { 21 + description = "truetype monospaced typeface designed for X environments"; 22 + homepage = https://b.agaric.net/page/agave; 23 + license = licenses.mit; 24 + maintainers = with maintainers; [ dtzWill ]; 25 + platforms = platforms.all; 26 + }; 27 + } 28 +
+24
pkgs/data/fonts/ankacoder/condensed.nix
···
··· 1 + { stdenv, fetchzip }: 2 + 3 + let version = "1.100"; in 4 + fetchzip rec { 5 + name = "ankacoder-condensed-${version}"; 6 + url = "https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/anka-coder-fonts/AnkaCoderCondensed.${version}.zip"; 7 + 8 + postFetch = '' 9 + unzip $downloadedFile 10 + mkdir -p $out/share/fonts/truetype 11 + cp *.ttf $out/share/fonts/truetype 12 + ''; 13 + 14 + sha256 = "0i80zpr2y9368rg2i6x8jv0g7d03kdyr5h7w9yz7pjd7i9xd8439"; 15 + 16 + meta = with stdenv.lib; { 17 + description = "Anka/Coder Condensed font"; 18 + homepage = https://code.google.com/archive/p/anka-coder-fonts; 19 + license = licenses.ofl; 20 + maintainers = with maintainers; [ dtzWill ]; 21 + platforms = platforms.all; 22 + }; 23 + } 24 +
+24
pkgs/data/fonts/ankacoder/default.nix
···
··· 1 + { stdenv, fetchzip }: 2 + 3 + let version = "1.100"; in 4 + fetchzip rec { 5 + name = "ankacoder-${version}"; 6 + url = "https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/anka-coder-fonts/AnkaCoder.${version}.zip"; 7 + 8 + postFetch = '' 9 + unzip $downloadedFile 10 + mkdir -p $out/share/fonts/truetype 11 + cp *.ttf $out/share/fonts/truetype 12 + ''; 13 + 14 + sha256 = "1jqx9micfmiarqh9xp330gl96v3vxbwzz9cmg2vi845n9md4im85"; 15 + 16 + meta = with stdenv.lib; { 17 + description = "Anka/Coder fonts"; 18 + homepage = https://code.google.com/archive/p/anka-coder-fonts; 19 + license = licenses.ofl; 20 + maintainers = with maintainers; [ dtzWill ]; 21 + platforms = platforms.all; 22 + }; 23 + } 24 +
+35
pkgs/data/fonts/cherry/default.nix
···
··· 1 + { stdenv, fetchFromGitHub, bdftopcf }: 2 + 3 + stdenv.mkDerivation rec { 4 + name = "${pname}-${version}"; 5 + pname = "cherry"; 6 + version = "1.2"; 7 + 8 + src = fetchFromGitHub { 9 + owner = "turquoise-hexagon"; 10 + repo = pname; 11 + rev = version; 12 + sha256 = "1sfajzndv78v8hb156876i2rw3zw8xys6qi8zr4yi0isgsqj5yx5"; 13 + }; 14 + 15 + nativeBuildInputs = [ bdftopcf ]; 16 + 17 + buildPhase = '' 18 + patchShebangs make.sh 19 + ./make.sh 20 + ''; 21 + 22 + installPhase = '' 23 + mkdir -p $out/share/fonts/misc 24 + cp *.pcf $out/share/fonts/misc 25 + ''; 26 + 27 + meta = with stdenv.lib; { 28 + description = "cherry font"; 29 + homepage = https://github.com/turquoise-hexagon/cherry; 30 + license = licenses.mit; 31 + maintainers = with maintainers; [ dtzWill ]; 32 + platforms = platforms.all; 33 + }; 34 + } 35 +
+28
pkgs/data/fonts/hermit/default.nix
···
··· 1 + { stdenv, fetchurl }: 2 + 3 + stdenv.mkDerivation rec { 4 + pname = "hermit"; 5 + version = "2.0"; 6 + 7 + src = fetchurl { 8 + url = "https://pcaro.es/d/otf-${pname}-${version}.tar.gz"; 9 + sha256 = "09rmy3sbf1j1hr8zidighjgqc8kp0wsra115y27vrnlf10ml6jy0"; 10 + }; 11 + 12 + sourceRoot = "."; 13 + 14 + dontBuild = true; 15 + installPhase = '' 16 + mkdir -p $out/share/fonts/opentype 17 + cp *.otf $out/share/fonts/opentype/ 18 + ''; 19 + 20 + meta = with stdenv.lib; { 21 + description = "monospace font designed to be clear, pragmatic and very readable"; 22 + homepage = https://pcaro.es/p/hermit; 23 + license = licenses.ofl; 24 + maintainers = with maintainers; [ dtzWill ]; 25 + platforms = platforms.all; 26 + }; 27 + } 28 +
+23
pkgs/data/fonts/luculent/default.nix
···
··· 1 + { lib, fetchzip }: 2 + 3 + let version = "2.0.0"; in 4 + fetchzip rec { 5 + name = "luculent-${version}"; 6 + url = http://www.eastfarthing.com/luculent/luculent.tar.xz; 7 + 8 + postFetch = '' 9 + tar -xJf $downloadedFile --strip-components=1 10 + mkdir -p $out/share/fonts/truetype 11 + cp *.ttf $out/share/fonts/truetype 12 + ''; 13 + 14 + sha256 = "1m3g64galwna1xjxb1fczmfplm6c1fn3ra1ln7f0vkm0ah5m4lbv"; 15 + 16 + meta = with lib; { 17 + description = "luculent font"; 18 + homepage = http://www.eastfarthing.com/luculent/; 19 + license = licenses.ofl; 20 + maintainers = with maintainers; [ dtzWill ]; 21 + platforms = platforms.all; 22 + }; 23 + }
+2 -2
pkgs/data/icons/zafiro-icons/default.nix
··· 2 3 stdenv.mkDerivation rec { 4 pname = "zafiro-icons"; 5 - version = "0.8.1"; 6 7 src = fetchFromGitHub { 8 owner = "zayronxio"; 9 repo = pname; 10 rev = "v${version}"; 11 - sha256 = "121fpg74vra8kfvgxi3i7p09qxhck45kv270x6cv5dq1fp2hdm8k"; 12 }; 13 14 nativeBuildInputs = [ gtk3 ];
··· 2 3 stdenv.mkDerivation rec { 4 pname = "zafiro-icons"; 5 + version = "0.8.3"; 6 7 src = fetchFromGitHub { 8 owner = "zayronxio"; 9 repo = pname; 10 rev = "v${version}"; 11 + sha256 = "1hflpnliww5fkk7bsgmi8hlrbqvkijjjmbzjqnnl991nqsqxqxpl"; 12 }; 13 14 nativeBuildInputs = [ gtk3 ];
+9 -1
pkgs/desktops/gnome-3/apps/gnome-documents/default.nix
··· 1 - { stdenv, meson, ninja, gettext, fetchurl, evince, gjs 2 , pkgconfig, gtk3, glib, tracker, tracker-miners 3 , itstool, libxslt, webkitgtk, libgdata 4 , gnome-desktop, libzapojit, libgepub ··· 29 libsoup webkitgtk gjs gobject-introspection 30 tracker tracker-miners libgdata 31 gnome-desktop libzapojit libgepub 32 ]; 33 34 postPatch = ''
··· 1 + { stdenv, meson, ninja, gettext, fetchurl, fetchpatch, evince, gjs 2 , pkgconfig, gtk3, glib, tracker, tracker-miners 3 , itstool, libxslt, webkitgtk, libgdata 4 , gnome-desktop, libzapojit, libgepub ··· 29 libsoup webkitgtk gjs gobject-introspection 30 tracker tracker-miners libgdata 31 gnome-desktop libzapojit libgepub 32 + ]; 33 + 34 + patches = [ 35 + # fix RPATH to libgd 36 + (fetchpatch { 37 + url = "https://gitlab.gnome.org/GNOME/gnome-documents/commit/d18a92e0a940073ac766f609937539e4fc6cdbb7.patch"; 38 + sha256 = "0s3mk8vrl1gzk93yvgqbnz44i27qw1d9yvvmnck3fv23phrxkzk9"; 39 + }) 40 ]; 41 42 postPatch = ''
+13 -7
pkgs/desktops/gnome-3/apps/gnome-sound-recorder/default.nix
··· 1 - { stdenv, fetchurl, pkgconfig, intltool, gobject-introspection, wrapGAppsHook, gjs, glib, gtk3, gdk_pixbuf, gst_all_1, gnome3 }: 2 3 - let 4 pname = "gnome-sound-recorder"; 5 - version = "3.28.1"; 6 - in stdenv.mkDerivation rec { 7 - name = "${pname}-${version}"; 8 9 src = fetchurl { 10 - url = "mirror://gnome/sources/${pname}/${stdenv.lib.versions.majorMinor version}/${name}.tar.xz"; 11 - sha256 = "0y0srj1hvr1waa35p6dj1r1mlgcsscc0i99jni50ijp4zb36fjqy"; 12 }; 13 14 nativeBuildInputs = [ pkgconfig intltool gobject-introspection wrapGAppsHook ]; 15 buildInputs = [ gjs glib gtk3 gdk_pixbuf ] ++ (with gst_all_1; [ gstreamer.dev gstreamer gst-plugins-base gst-plugins-good gst-plugins-bad ]);
··· 1 + { stdenv, fetchurl, fetchpatch, pkgconfig, intltool, gobject-introspection, wrapGAppsHook, gjs, glib, gtk3, gdk_pixbuf, gst_all_1, gnome3 }: 2 3 + stdenv.mkDerivation rec { 4 pname = "gnome-sound-recorder"; 5 + version = "3.28.2"; 6 7 src = fetchurl { 8 + url = "mirror://gnome/sources/${pname}/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz"; 9 + sha256 = "1k63xr3d16qbzi88md913ndaf2mzwmhmi6hipj0123sm7nsz1p94"; 10 }; 11 + 12 + patches = [ 13 + # Fix crash when trying to play recordings 14 + (fetchpatch { 15 + url = https://gitlab.gnome.org/GNOME/gnome-sound-recorder/commit/2b311ef67909bc20d0e87f334fe37bf5c4e9f29f.patch; 16 + sha256 = "0hqmk846bxma0p66cqp94zd02zc1if836ywjq3sv5dsfwnz7jv3f"; 17 + }) 18 + ]; 19 20 nativeBuildInputs = [ pkgconfig intltool gobject-introspection wrapGAppsHook ]; 21 buildInputs = [ gjs glib gtk3 gdk_pixbuf ] ++ (with gst_all_1; [ gstreamer.dev gstreamer gst-plugins-base gst-plugins-good gst-plugins-bad ]);
+9
pkgs/desktops/gnome-3/core/eog/default.nix
··· 25 patchShebangs meson_post_install.py 26 ''; 27 28 passthru = { 29 updateScript = gnome3.updateScript { 30 packageName = pname;
··· 25 patchShebangs meson_post_install.py 26 ''; 27 28 + preFixup = '' 29 + gappsWrapperArgs+=( 30 + # Thumbnailers 31 + --prefix XDG_DATA_DIRS : "${gdk_pixbuf}/share" 32 + --prefix XDG_DATA_DIRS : "${librsvg}/share" 33 + --prefix XDG_DATA_DIRS : "${shared-mime-info}/share" 34 + ) 35 + ''; 36 + 37 passthru = { 38 updateScript = gnome3.updateScript { 39 packageName = pname;
+2 -2
pkgs/desktops/gnome-3/core/evolution-data-server/default.nix
··· 5 6 stdenv.mkDerivation rec { 7 name = "evolution-data-server-${version}"; 8 - version = "3.30.3"; 9 10 outputs = [ "out" "dev" ]; 11 12 src = fetchurl { 13 url = "mirror://gnome/sources/evolution-data-server/${stdenv.lib.versions.majorMinor version}/${name}.tar.xz"; 14 - sha256 = "1q1wpsc3p6b1cacwgkgqbni7rdx3skvb2fm6fyjs2wjgq6zi5753"; 15 }; 16 17 patches = [
··· 5 6 stdenv.mkDerivation rec { 7 name = "evolution-data-server-${version}"; 8 + version = "3.30.4"; 9 10 outputs = [ "out" "dev" ]; 11 12 src = fetchurl { 13 url = "mirror://gnome/sources/evolution-data-server/${stdenv.lib.versions.majorMinor version}/${name}.tar.xz"; 14 + sha256 = "1j8lwl04zz59sg7k3hpkzp829z8xyd1isz8xavm9vzxfvw5w776y"; 15 }; 16 17 patches = [
+2 -2
pkgs/desktops/gnome-3/core/gnome-settings-daemon/default.nix
··· 5 6 stdenv.mkDerivation rec { 7 name = "gnome-settings-daemon-${version}"; 8 - version = "3.30.1.2"; 9 10 src = fetchurl { 11 url = "mirror://gnome/sources/gnome-settings-daemon/${stdenv.lib.versions.majorMinor version}/${name}.tar.xz"; 12 - sha256 = "079dh609rvpwfyzg4m898q8km9g7x04hg18rwwb1izj1dr7zdp2w"; 13 }; 14 15 patches = [
··· 5 6 stdenv.mkDerivation rec { 7 name = "gnome-settings-daemon-${version}"; 8 + version = "3.30.2"; 9 10 src = fetchurl { 11 url = "mirror://gnome/sources/gnome-settings-daemon/${stdenv.lib.versions.majorMinor version}/${name}.tar.xz"; 12 + sha256 = "0c663csa3gnsr6wm0xfll6aani45snkdj7zjwjfzcwfh8w4a3z12"; 13 }; 14 15 patches = [
+2 -2
pkgs/development/compilers/fasm/bin.nix
··· 3 stdenvNoCC.mkDerivation rec { 4 name = "fasm-bin-${version}"; 5 6 - version = "1.73.05"; 7 8 src = fetchurl { 9 url = "https://flatassembler.net/fasm-${version}.tgz"; 10 - sha256 = "0qpj6cs9rp1bg2rqxg1k8j71918rh86hplyw4n82n11ndwk23ni5"; 11 }; 12 13 installPhase = ''
··· 3 stdenvNoCC.mkDerivation rec { 4 name = "fasm-bin-${version}"; 5 6 + version = "1.73.06"; 7 8 src = fetchurl { 9 url = "https://flatassembler.net/fasm-${version}.tgz"; 10 + sha256 = "02wqkqxpn3p0iwcagsm92qd9cdfcnbx8a09qg03b3pjppp30hmp6"; 11 }; 12 13 installPhase = ''
+16 -3
pkgs/development/coq-modules/QuickChick/default.nix
··· 1 - { stdenv, fetchFromGitHub, coq, ssreflect }: 2 3 let params = 4 { ··· 18 version = "20171212"; 19 rev = "195e550a1cf0810497734356437a1720ebb6d744"; 20 sha256 = "0zm23y89z0h4iamy74qk9qi2pz2cj3ga6ygav0w79n0qyqwhxcq1"; 21 }; 22 }; 23 param = params."${coq.coq-version}"; ··· 33 inherit (param) rev sha256; 34 }; 35 36 - buildInputs = with coq.ocamlPackages; [ ocaml camlp5 findlib ]; 37 - propagatedBuildInputs = [ coq ssreflect ]; 38 39 enableParallelBuilding = false; 40 41 installPhase = '' 42 make -f Makefile.coq COQLIB=$out/lib/coq/${coq.coq-version}/ install
··· 1 + { stdenv, fetchFromGitHub, coq, ssreflect, coq-ext-lib, simple-io }: 2 3 let params = 4 { ··· 18 version = "20171212"; 19 rev = "195e550a1cf0810497734356437a1720ebb6d744"; 20 sha256 = "0zm23y89z0h4iamy74qk9qi2pz2cj3ga6ygav0w79n0qyqwhxcq1"; 21 + }; 22 + "8.8" = rec { 23 + preConfigure = "substituteInPlace Makefile --replace quickChickTool.byte quickChickTool.native"; 24 + version = "1.0.2"; 25 + rev = "v${version}"; 26 + sha256 = "1mcbsp07ra3gdcmir36pf27ig3xv8nagyfp7w5pwqi4gj9w81ffn"; 27 + buildInputs = with coq.ocamlPackages; [ ocamlbuild num ]; 28 + propagatedBuildInputs = [ coq-ext-lib simple-io ]; 29 }; 30 }; 31 param = params."${coq.coq-version}"; ··· 41 inherit (param) rev sha256; 42 }; 43 44 + buildInputs = [ coq ] 45 + ++ (with coq.ocamlPackages; [ ocaml camlp5 findlib ]) 46 + ++ (param.buildInputs or []) 47 + ; 48 + propagatedBuildInputs = [ ssreflect ] ++ (param.propagatedBuildInputs or []); 49 50 enableParallelBuilding = false; 51 + 52 + preConfigure = param.preConfigure or null; 53 54 installPhase = '' 55 make -f Makefile.coq COQLIB=$out/lib/coq/${coq.coq-version}/ install
+1 -1
pkgs/development/haskell-modules/configuration-hackage2nix.yaml
··· 39 40 # Hack: The following package is a core package of GHCJS. If we don't declare 41 # it, then hackage2nix will generate a Hackage database where all dependants 42 - # of this library are maked as "broken". 43 - ghcjs-base-0 44 45 default-package-overrides:
··· 39 40 # Hack: The following package is a core package of GHCJS. If we don't declare 41 # it, then hackage2nix will generate a Hackage database where all dependants 42 + # of this library are marked as "broken". 43 - ghcjs-base-0 44 45 default-package-overrides:
+6 -8
pkgs/development/interpreters/racket/default.nix
··· 10 , disableDocs ? false 11 , CoreFoundation 12 , gsettings-desktop-schemas 13 }: 14 15 let ··· 59 (stdenv.lib.optionalString stdenv.isDarwin "-framework CoreFoundation") 60 ]; 61 62 - buildInputs = [ fontconfig libffi libtool makeWrapper sqlite gsettings-desktop-schemas gtk3 ] 63 ++ stdenv.lib.optionals stdenv.isDarwin [ libiconv CoreFoundation ]; 64 65 preConfigure = '' ··· 69 done 70 mkdir src/build 71 cd src/build 72 ''; 73 74 shared = if stdenv.isDarwin then "dylib" else "shared"; ··· 80 81 enableParallelBuilding = false; 82 83 - postInstall = '' 84 - for p in $(ls $out/bin/) ; do 85 - wrapProgram $out/bin/$p \ 86 - --prefix LD_LIBRARY_PATH ":" "${LD_LIBRARY_PATH}" \ 87 - --prefix XDG_DATA_DIRS ":" "$GSETTINGS_SCHEMAS_PATH"; 88 - done 89 - ''; 90 91 meta = with stdenv.lib; { 92 description = "A programmable programming language";
··· 10 , disableDocs ? false 11 , CoreFoundation 12 , gsettings-desktop-schemas 13 + , wrapGAppsHook 14 }: 15 16 let ··· 60 (stdenv.lib.optionalString stdenv.isDarwin "-framework CoreFoundation") 61 ]; 62 63 + nativeBuildInputs = [ wrapGAppsHook ]; 64 + 65 + buildInputs = [ fontconfig libffi libtool sqlite gsettings-desktop-schemas gtk3 ] 66 ++ stdenv.lib.optionals stdenv.isDarwin [ libiconv CoreFoundation ]; 67 68 preConfigure = '' ··· 72 done 73 mkdir src/build 74 cd src/build 75 + 76 + gappsWrapperArgs+=("--prefix" "LD_LIBRARY_PATH" ":" $LD_LIBRARY_PATH) 77 ''; 78 79 shared = if stdenv.isDarwin then "dylib" else "shared"; ··· 85 86 enableParallelBuilding = false; 87 88 89 meta = with stdenv.lib; { 90 description = "A programmable programming language";
+2 -2
pkgs/development/libraries/armadillo/default.nix
··· 1 { stdenv, fetchurl, cmake, openblasCompat, superlu, hdf5 }: 2 3 stdenv.mkDerivation rec { 4 - version = "9.200.6"; 5 name = "armadillo-${version}"; 6 7 src = fetchurl { 8 url = "mirror://sourceforge/arma/armadillo-${version}.tar.xz"; 9 - sha256 = "1gm8dysb29f3p96bzjgdb5r70dc6y5jq1avg18sdixz0hgnxqq14"; 10 }; 11 12 nativeBuildInputs = [ cmake ];
··· 1 { stdenv, fetchurl, cmake, openblasCompat, superlu, hdf5 }: 2 3 stdenv.mkDerivation rec { 4 + version = "9.200.7"; 5 name = "armadillo-${version}"; 6 7 src = fetchurl { 8 url = "mirror://sourceforge/arma/armadillo-${version}.tar.xz"; 9 + sha256 = "1y3xrchykwddlrnzgf7xjdmbkf6c4gayz92vyrqdyvnlpi07sy72"; 10 }; 11 12 nativeBuildInputs = [ cmake ];
+2 -2
pkgs/development/libraries/box2d/default.nix
··· 3 4 stdenv.mkDerivation rec { 5 name = "box2d-${version}"; 6 - version = "2.3.0"; 7 8 src = fetchurl { 9 url = "https://github.com/erincatto/Box2D/archive/v${version}.tar.gz"; 10 - sha256 = "1dmbswh4x2n5l3c9h0k72m0z4rdpzfy1xl8m8p3rf5rwkvk3bkg2"; 11 }; 12 13 sourceRoot = "Box2D-${version}/Box2D";
··· 3 4 stdenv.mkDerivation rec { 5 name = "box2d-${version}"; 6 + version = "2.3.1"; 7 8 src = fetchurl { 9 url = "https://github.com/erincatto/Box2D/archive/v${version}.tar.gz"; 10 + sha256 = "0llpcifl8zbjbpxdwz87drd01m3lwnv82xb4av6kca1xn4w2gmkm"; 11 }; 12 13 sourceRoot = "Box2D-${version}/Box2D";
+2 -2
pkgs/development/libraries/capstone/default.nix
··· 2 3 stdenv.mkDerivation rec { 4 name = "capstone-${version}"; 5 - version = "4.0"; 6 7 src = fetchurl { 8 url = "https://github.com/aquynh/capstone/archive/${version}.tar.gz"; 9 - sha256 = "0yp6y5m3v674i2pq6s804ikvz43gzgsjwq1maqhmj3b730b4dii6"; 10 }; 11 12 configurePhase = '' patchShebangs make.sh '';
··· 2 3 stdenv.mkDerivation rec { 4 name = "capstone-${version}"; 5 + version = "4.0.1"; 6 7 src = fetchurl { 8 url = "https://github.com/aquynh/capstone/archive/${version}.tar.gz"; 9 + sha256 = "1isxw2qwy1fi3m3w7igsr5klzczxc5cxndz0a78dfss6ps6ymfvr"; 10 }; 11 12 configurePhase = '' patchShebangs make.sh '';
+2 -2
pkgs/development/libraries/gtkd/default.nix
··· 3 4 stdenv.mkDerivation rec { 5 name = "gtkd-${version}"; 6 - version = "3.8.4"; 7 8 src = fetchzip { 9 url = "https://gtkd.org/Downloads/sources/GtkD-${version}.zip"; 10 - sha256 = "0q2kf1jwr89i8ajjzyf3b4bbla33djvnwrvljq17y206q7qknfyz"; 11 stripRoot = false; 12 }; 13
··· 3 4 stdenv.mkDerivation rec { 5 name = "gtkd-${version}"; 6 + version = "3.8.5"; 7 8 src = fetchzip { 9 url = "https://gtkd.org/Downloads/sources/GtkD-${version}.zip"; 10 + sha256 = "12n2njsaplra7x15nqwrj2hrf8a27pfjj2mck4mkzxv03qk6mqky"; 11 stripRoot = false; 12 }; 13
+2 -2
pkgs/development/libraries/netcdf-fortran/default.nix
··· 1 { stdenv, fetchurl, netcdf, hdf5, curl, gfortran }: 2 stdenv.mkDerivation rec { 3 name = "netcdf-fortran-${version}"; 4 - version = "4.4.4"; 5 6 src = fetchurl { 7 url = "https://github.com/Unidata/netcdf-fortran/archive/v${version}.tar.gz"; 8 - sha256 = "0rwybszj1jjb25cx8vfyrd77x5qsdjzwspcjz56n12br89n9ica4"; 9 }; 10 11 buildInputs = [ netcdf hdf5 curl gfortran ];
··· 1 { stdenv, fetchurl, netcdf, hdf5, curl, gfortran }: 2 stdenv.mkDerivation rec { 3 name = "netcdf-fortran-${version}"; 4 + version = "4.4.5"; 5 6 src = fetchurl { 7 url = "https://github.com/Unidata/netcdf-fortran/archive/v${version}.tar.gz"; 8 + sha256 = "00qwg4v250yg8kxp68srrnvfbfim241fnlm071p9ila2mihk8r01"; 9 }; 10 11 buildInputs = [ netcdf hdf5 curl gfortran ];
+29
pkgs/development/libraries/pyotherside/default.nix
···
··· 1 + { stdenv, fetchFromGitHub 2 + , python3, qmake, qtbase, qtquickcontrols, qtsvg, ncurses }: 3 + 4 + stdenv.mkDerivation rec { 5 + pname = "pyotherside"; 6 + version = "1.5.3"; 7 + 8 + src = fetchFromGitHub { 9 + owner = "thp"; 10 + repo = "pyotherside"; 11 + rev = version; 12 + sha256 = "1xaw1aarj8gpgpm4z3lk8klbssadrsf3xdyzqx10zcwy16amka7k"; 13 + }; 14 + 15 + nativeBuildInputs = [ qmake ]; 16 + buildInputs = [ 17 + python3 qtbase qtquickcontrols qtsvg ncurses 18 + ]; 19 + 20 + patches = [ ./qml-path.patch ]; 21 + installTargets = [ "sub-src-install_subtargets" ]; 22 + 23 + meta = with stdenv.lib; { 24 + description = "Asynchronous Python 3 Bindings for Qt 5"; 25 + homepage = https://thp.io/2011/pyotherside/; 26 + license = licenses.isc; 27 + maintainers = [ maintainers.mic92 ]; 28 + }; 29 + }
+12
pkgs/development/libraries/pyotherside/qml-path.patch
···
··· 1 + diff -Naur --strip-trailing-cr source.org/src/src.pro source/src/src.pro 2 + --- source.org/src/src.pro 1970-01-01 01:00:01.000000000 +0100 3 + +++ source/src/src.pro 2019-01-17 19:14:46.256821852 +0000 4 + @@ -10,7 +10,7 @@ 5 + CONFIG += qt plugin 6 + QT += qml quick svg 7 + 8 + -target.path = $$[QT_INSTALL_QML]/$$PLUGIN_IMPORT_PATH 9 + +target.path = $$NIX_OUTPUT_QML/$$PLUGIN_IMPORT_PATH 10 + INSTALLS += target 11 + 12 + qmldir.files += $$_PRO_FILE_PWD_/qmldir $$_PRO_FILE_PWD_/pyotherside.qmltypes
+2 -2
pkgs/development/libraries/qt-5/modules/qtdeclarative.nix
··· 1 - { qtModule, lib, python2, qtbase, qtsvg, qtxmlpatterns }: 2 3 with lib; 4 5 qtModule { 6 name = "qtdeclarative"; 7 - qtInputs = [ qtbase qtsvg qtxmlpatterns ]; 8 nativeBuildInputs = [ python2 ]; 9 outputs = [ "out" "dev" "bin" ]; 10 preConfigure = ''
··· 1 + { qtModule, lib, python2, qtbase, qtsvg }: 2 3 with lib; 4 5 qtModule { 6 name = "qtdeclarative"; 7 + qtInputs = [ qtbase qtsvg ]; 8 nativeBuildInputs = [ python2 ]; 9 outputs = [ "out" "dev" "bin" ]; 10 preConfigure = ''
+2 -2
pkgs/development/libraries/qt-5/modules/qtxmlpatterns.nix
··· 1 - { qtModule, qtbase }: 2 3 qtModule { 4 name = "qtxmlpatterns"; 5 - qtInputs = [ qtbase ]; 6 devTools = [ "bin/xmlpatterns" "bin/xmlpatternsvalidator" ]; 7 }
··· 1 + { qtModule, qtbase, qtdeclarative }: 2 3 qtModule { 4 name = "qtxmlpatterns"; 5 + qtInputs = [ qtbase qtdeclarative ]; 6 devTools = [ "bin/xmlpatterns" "bin/xmlpatternsvalidator" ]; 7 }
+1
pkgs/development/perl-modules/generic/default.nix
··· 28 PERL_USE_UNSAFE_INC = "1"; 29 30 meta.homepage = "https://metacpan.org/release/${(builtins.parseDrvName name).name}"; 31 } 32 attrs 33 )
··· 28 PERL_USE_UNSAFE_INC = "1"; 29 30 meta.homepage = "https://metacpan.org/release/${(builtins.parseDrvName name).name}"; 31 + meta.platforms = perl.meta.platforms; 32 } 33 attrs 34 )
+2 -2
pkgs/development/python-modules/beancount/default.nix
··· 4 , pytest, requests }: 5 6 buildPythonPackage rec { 7 - version = "2.1.3"; 8 pname = "beancount"; 9 10 disabled = !isPy3k; 11 12 src = fetchPypi { 13 inherit pname version; 14 - sha256 = "4b7b0d3633c82ca88d3cb3d31ad2fd2e45a42401cfa94eaa1cb938ffece34f22"; 15 }; 16 17 # No tests in archive
··· 4 , pytest, requests }: 5 6 buildPythonPackage rec { 7 + version = "2.2.0"; 8 pname = "beancount"; 9 10 disabled = !isPy3k; 11 12 src = fetchPypi { 13 inherit pname version; 14 + sha256 = "1j3fyyqnr5gq71rmkb9q3im8pqppa134zzhmmp4hk4b274g18w31"; 15 }; 16 17 # No tests in archive
+2 -2
pkgs/development/python-modules/cfgv/default.nix
··· 2 3 buildPythonPackage rec { 4 pname = "cfgv"; 5 - version = "1.1.0"; 6 7 src = fetchPypi { 8 inherit pname version; 9 - sha256 = "1akm5xdbi5kckgnhhfj6qavjwakm44cwqzhfx2ycgh7mkym1qyfi"; 10 }; 11 12 propagatedBuildInputs = [ six ];
··· 2 3 buildPythonPackage rec { 4 pname = "cfgv"; 5 + version = "1.4.0"; 6 7 src = fetchPypi { 8 inherit pname version; 9 + sha256 = "01mpw8kx0f2py2jwf0fv60k01p11gs0dbar5zq42k4z38xf0bn9r"; 10 }; 11 12 propagatedBuildInputs = [ six ];
+2 -1
pkgs/development/python-modules/cmd2/default.nix
··· 1 { stdenv, fetchPypi, buildPythonPackage, pythonOlder, isPy3k 2 - , pyperclip, six, pyparsing, vim, wcwidth, colorama 3 , contextlib2 ? null, typing ? null, setuptools_scm 4 , pytest, mock ? null, pytest-mock 5 , which, glibcLocales ··· 36 six 37 pyparsing 38 wcwidth 39 ] 40 ++ stdenv.lib.optionals (pythonOlder "3.5") [contextlib2 typing] 41 ;
··· 1 { stdenv, fetchPypi, buildPythonPackage, pythonOlder, isPy3k 2 + , pyperclip, six, pyparsing, vim, wcwidth, colorama, attrs 3 , contextlib2 ? null, typing ? null, setuptools_scm 4 , pytest, mock ? null, pytest-mock 5 , which, glibcLocales ··· 36 six 37 pyparsing 38 wcwidth 39 + attrs 40 ] 41 ++ stdenv.lib.optionals (pythonOlder "3.5") [contextlib2 typing] 42 ;
+3 -1
pkgs/development/python-modules/irc/default.nix
··· 1 - { buildPythonPackage, fetchPypi 2 , six, jaraco_logging, jaraco_text, jaraco_stream, pytz, jaraco_itertools 3 , setuptools_scm }: 4 5 buildPythonPackage rec { 6 pname = "irc"; 7 version = "17.0"; 8 9 src = fetchPypi { 10 inherit pname version;
··· 1 + { buildPythonPackage, fetchPypi, isPy3k 2 , six, jaraco_logging, jaraco_text, jaraco_stream, pytz, jaraco_itertools 3 , setuptools_scm }: 4 5 buildPythonPackage rec { 6 pname = "irc"; 7 version = "17.0"; 8 + 9 + disabled = !isPy3k; 10 11 src = fetchPypi { 12 inherit pname version;
+17 -5
pkgs/development/python-modules/jaraco_itertools/default.nix
··· 1 - { buildPythonPackage, fetchPypi, setuptools_scm 2 - , inflect, more-itertools, six }: 3 4 buildPythonPackage rec { 5 pname = "jaraco.itertools"; 6 - version = "3.0.0"; 7 src = fetchPypi { 8 inherit pname version; 9 - sha256 = "19d8557a25c08f7a7b8f1cfa456ebfd615bafa0f045f89bbda55f99661b0626d"; 10 }; 11 - doCheck = false; 12 buildInputs = [ setuptools_scm ]; 13 propagatedBuildInputs = [ inflect more-itertools six ]; 14 }
··· 1 + { lib, buildPythonPackage, fetchPypi, setuptools_scm 2 + , inflect, more-itertools, six, pytest, pytest-flake8 }: 3 4 buildPythonPackage rec { 5 pname = "jaraco.itertools"; 6 + version = "4.0.0"; 7 + 8 src = fetchPypi { 9 inherit pname version; 10 + sha256 = "1d09zpi593bhr56rwm41kzffr18wif98plgy6xdy0zrbdwfarrxl"; 11 }; 12 + 13 buildInputs = [ setuptools_scm ]; 14 propagatedBuildInputs = [ inflect more-itertools six ]; 15 + checkInputs = [ pytest pytest-flake8 ]; 16 + 17 + checkPhase = '' 18 + pytest 19 + ''; 20 + 21 + meta = with lib; { 22 + description = "Tools for working with iterables"; 23 + homepage = https://github.com/jaraco/jaraco.itertools; 24 + license = licenses.mit; 25 + }; 26 }
+17 -5
pkgs/development/python-modules/jaraco_logging/default.nix
··· 1 - { buildPythonPackage, fetchPypi, setuptools_scm 2 - , tempora, six }: 3 4 buildPythonPackage rec { 5 pname = "jaraco.logging"; 6 - version = "1.5.2"; 7 src = fetchPypi { 8 inherit pname version; 9 - sha256 = "199pgwx9ziab3gxg6p0c24z8dp3bjpsvvshnmlph9zjsssq0xc93"; 10 }; 11 - doCheck = false; 12 buildInputs = [ setuptools_scm ]; 13 propagatedBuildInputs = [ tempora six ]; 14 }
··· 1 + { lib, buildPythonPackage, fetchPypi, setuptools_scm 2 + , tempora, six, pytest, pytest-flake8 }: 3 4 buildPythonPackage rec { 5 pname = "jaraco.logging"; 6 + version = "2.0"; 7 + 8 src = fetchPypi { 9 inherit pname version; 10 + sha256 = "1lb846j7qs1hgqwkyifv51nhl3f8jimbc4lk8yn9nkaynw0vyzcg"; 11 }; 12 + 13 buildInputs = [ setuptools_scm ]; 14 propagatedBuildInputs = [ tempora six ]; 15 + checkInputs = [ pytest pytest-flake8 ]; 16 + 17 + checkPhase = '' 18 + PYTHONPATH=".:$PYTHONPATH" pytest 19 + ''; 20 + 21 + meta = with lib; { 22 + description = "Support for Python logging facility"; 23 + homepage = https://github.com/jaraco/jaraco.logging; 24 + license = licenses.mit; 25 + }; 26 }
+27
pkgs/development/python-modules/jq/default.nix
···
··· 1 + { buildPythonPackage, fetchPypi, lib, cython, jq }: 2 + 3 + buildPythonPackage rec { 4 + pname = "jq"; 5 + version = "0.1.6"; 6 + 7 + srcs = fetchPypi { 8 + inherit pname version; 9 + sha256 = "34bdf9f9e49e522e1790afc03f3584c6b57329215ea0567fb2157867d6d6f602"; 10 + }; 11 + patches = [ ./jq-py-setup.patch ]; 12 + 13 + nativeBuildInputs = [ cython ]; 14 + 15 + preBuild = '' 16 + cython jq.pyx 17 + ''; 18 + 19 + buildInputs = [ jq ]; 20 + 21 + meta = { 22 + description = "Python bindings for jq, the flexible JSON processor"; 23 + homepage = "https://github.com/mwilliamson/jq.py"; 24 + license = lib.licenses.bsd2; 25 + maintainers = with lib.maintainers; [ benley ]; 26 + }; 27 + }
+130
pkgs/development/python-modules/jq/jq-py-setup.patch
···
··· 1 + From 3f369cf8b9f7134d0792f6b141d39b5342a8274f Mon Sep 17 00:00:00 2001 2 + From: Benjamin Staffin <benley@gmail.com> 3 + Date: Mon, 14 Jan 2019 17:27:06 -0500 4 + Subject: [PATCH] Vastly simplify setup.py for distro compatibility 5 + 6 + --- 7 + setup.py | 81 +------------------------------------------------------- 8 + 1 file changed, 1 insertion(+), 80 deletions(-) 9 + 10 + diff --git a/setup.py b/setup.py 11 + index 77933f2..2b71e25 100644 12 + --- a/setup.py 13 + +++ b/setup.py 14 + @@ -1,10 +1,6 @@ 15 + #!/usr/bin/env python 16 + 17 + import os 18 + -import platform 19 + -import subprocess 20 + -import tarfile 21 + -import shutil 22 + 23 + try: 24 + import sysconfig 25 + @@ -14,88 +10,15 @@ except ImportError: 26 + 27 + from setuptools import setup 28 + from distutils.extension import Extension 29 + -from distutils.command.build_ext import build_ext 30 + - 31 + -try: 32 + - from urllib import urlretrieve 33 + -except ImportError: 34 + - from urllib.request import urlretrieve 35 + - 36 + -def path_in_dir(relative_path): 37 + - return os.path.abspath(os.path.join(os.path.dirname(__file__), relative_path)) 38 + 39 + def read(fname): 40 + return open(os.path.join(os.path.dirname(__file__), fname)).read() 41 + 42 + 43 + -jq_lib_tarball_path = path_in_dir("_jq-lib-1.5.tar.gz") 44 + -jq_lib_dir = path_in_dir("jq-jq-1.5") 45 + - 46 + -oniguruma_lib_tarball_path = path_in_dir("_onig-5.9.6.tar.gz") 47 + -oniguruma_lib_build_dir = path_in_dir("onig-5.9.6") 48 + -oniguruma_lib_install_dir = path_in_dir("onig-install-5.9.6") 49 + - 50 + -class jq_build_ext(build_ext): 51 + - def run(self): 52 + - self._build_oniguruma() 53 + - self._build_libjq() 54 + - build_ext.run(self) 55 + - 56 + - def _build_oniguruma(self): 57 + - self._build_lib( 58 + - source_url="https://github.com/kkos/oniguruma/releases/download/v5.9.6/onig-5.9.6.tar.gz", 59 + - tarball_path=oniguruma_lib_tarball_path, 60 + - lib_dir=oniguruma_lib_build_dir, 61 + - commands=[ 62 + - ["./configure", "CFLAGS=-fPIC", "--prefix=" + oniguruma_lib_install_dir], 63 + - ["make"], 64 + - ["make", "install"], 65 + - ]) 66 + - 67 + - 68 + - def _build_libjq(self): 69 + - self._build_lib( 70 + - source_url="https://github.com/stedolan/jq/archive/jq-1.5.tar.gz", 71 + - tarball_path=jq_lib_tarball_path, 72 + - lib_dir=jq_lib_dir, 73 + - commands=[ 74 + - ["autoreconf", "-i"], 75 + - ["./configure", "CFLAGS=-fPIC", "--disable-maintainer-mode", "--with-oniguruma=" + oniguruma_lib_install_dir], 76 + - ["make"], 77 + - ]) 78 + - 79 + - def _build_lib(self, source_url, tarball_path, lib_dir, commands): 80 + - self._download_tarball(source_url, tarball_path) 81 + - 82 + - macosx_deployment_target = sysconfig.get_config_var("MACOSX_DEPLOYMENT_TARGET") 83 + - if macosx_deployment_target: 84 + - os.environ['MACOSX_DEPLOYMENT_TARGET'] = macosx_deployment_target 85 + - 86 + - def run_command(args): 87 + - print("Executing: %s" % ' '.join(args)) 88 + - subprocess.check_call(args, cwd=lib_dir) 89 + - 90 + - for command in commands: 91 + - run_command(command) 92 + - 93 + - def _download_tarball(self, source_url, tarball_path): 94 + - if os.path.exists(tarball_path): 95 + - os.unlink(tarball_path) 96 + - urlretrieve(source_url, tarball_path) 97 + - 98 + - if os.path.exists(jq_lib_dir): 99 + - shutil.rmtree(jq_lib_dir) 100 + - tarfile.open(tarball_path, "r:gz").extractall(path_in_dir(".")) 101 + - 102 + - 103 + jq_extension = Extension( 104 + "jq", 105 + sources=["jq.c"], 106 + - include_dirs=[jq_lib_dir], 107 + - extra_objects=[ 108 + - os.path.join(jq_lib_dir, ".libs/libjq.a"), 109 + - os.path.join(oniguruma_lib_install_dir, "lib/libonig.a"), 110 + - ], 111 + + libraries=["jq"], 112 + ) 113 + 114 + setup( 115 + @@ -107,7 +30,6 @@ setup( 116 + url='http://github.com/mwilliamson/jq.py', 117 + license='BSD 2-Clause', 118 + ext_modules = [jq_extension], 119 + - cmdclass={"build_ext": jq_build_ext}, 120 + classifiers=[ 121 + 'Development Status :: 4 - Beta', 122 + 'Intended Audience :: Developers', 123 + @@ -123,4 +45,3 @@ setup( 124 + 'Programming Language :: Python :: 3.5', 125 + ], 126 + ) 127 + - 128 + -- 129 + 2.19.2 130 +
+2 -2
pkgs/development/python-modules/jsonrpclib-pelix/default.nix
··· 5 6 buildPythonPackage rec { 7 pname = "jsonrpclib-pelix"; 8 - version = "0.3.2"; 9 10 src = fetchPypi { 11 inherit pname version; 12 - sha256 = "14d288d1b3d3273cf96a729dd21a2470851c4962be8509f3dd62f0137ff90339"; 13 }; 14 15 doCheck = false; # test_suite="tests" in setup.py but no tests in pypi.
··· 5 6 buildPythonPackage rec { 7 pname = "jsonrpclib-pelix"; 8 + version = "0.4.0"; 9 10 src = fetchPypi { 11 inherit pname version; 12 + sha256 = "1pimyq95w99ik5av96j0n9i6n12mr9kk0y28jnrq0555d7hmii8r"; 13 }; 14 15 doCheck = false; # test_suite="tests" in setup.py but no tests in pypi.
+2 -2
pkgs/development/python-modules/pytest-benchmark/default.nix
··· 11 12 buildPythonPackage rec { 13 pname = "pytest-benchmark"; 14 - version = "3.1.1"; 15 16 src = fetchFromGitHub { 17 owner = "ionelmc"; 18 repo = pname; 19 rev = "v${version}"; 20 - sha256 = "1ch079dlc6c9ag74dh4dg6plkmh0h8kn78ari3fgadc75bald71m"; 21 }; 22 23 propagatedBuildInputs = [ pytest py-cpuinfo ] ++ lib.optional (pythonOlder "3.4") [ pathlib statistics ];
··· 11 12 buildPythonPackage rec { 13 pname = "pytest-benchmark"; 14 + version = "3.2.2"; 15 16 src = fetchFromGitHub { 17 owner = "ionelmc"; 18 repo = pname; 19 rev = "v${version}"; 20 + sha256 = "1hslzzinpwc1zqhbpllqh3sllmiyk69pcycl7ahr0rz3micgwczj"; 21 }; 22 23 propagatedBuildInputs = [ pytest py-cpuinfo ] ++ lib.optional (pythonOlder "3.4") [ pathlib statistics ];
+2 -2
pkgs/development/python-modules/python-gitlab/default.nix
··· 2 3 buildPythonPackage rec { 4 pname = "python-gitlab"; 5 - version = "1.6.0"; 6 7 src = fetchPypi { 8 inherit pname version; 9 - sha256 = "20ceb9232f9a412ce6554056a6b5039013d0755261d57b5c8ada7035773de795"; 10 }; 11 12 propagatedBuildInputs = [ requests six ];
··· 2 3 buildPythonPackage rec { 4 pname = "python-gitlab"; 5 + version = "1.7.0"; 6 7 src = fetchPypi { 8 inherit pname version; 9 + sha256 = "17nh09c28vf2daamyq97bdzgr685lyh668haisqbbp5lkn9gh7j0"; 10 }; 11 12 propagatedBuildInputs = [ requests six ];
+16 -12
pkgs/development/python-modules/recommonmark/default.nix
··· 1 { lib 2 , buildPythonPackage 3 - , fetchPypi 4 , pytest 5 , sphinx 6 - , CommonMark_54 7 - , docutils 8 }: 9 10 buildPythonPackage rec { 11 pname = "recommonmark"; 12 - version = "0.4.0"; 13 14 - src = fetchPypi { 15 - inherit pname version; 16 - sha256 = "6e29c723abcf5533842376d87c4589e62923ecb6002a8e059eb608345ddaff9d"; 17 }; 18 19 - checkInputs = [ pytest sphinx ]; 20 - propagatedBuildInputs = [ CommonMark_54 docutils ]; 21 22 - # No tests in archive 23 - doCheck = false; 24 25 meta = { 26 description = "A docutils-compatibility bridge to CommonMark"; ··· 28 license = lib.licenses.mit; 29 maintainers = with lib.maintainers; [ fridh ]; 30 }; 31 - }
··· 1 { lib 2 , buildPythonPackage 3 + , fetchFromGitHub 4 , pytest 5 + , CommonMark 6 + , docutils 7 , sphinx 8 }: 9 10 buildPythonPackage rec { 11 pname = "recommonmark"; 12 + version = "0.5.0"; 13 14 + # PyPI tarball is missing some test files: https://github.com/rtfd/recommonmark/pull/128 15 + src = fetchFromGitHub { 16 + owner = "rtfd"; 17 + repo = pname; 18 + rev = version; 19 + sha256 = "04bjqx2hczmg7rnj2rpsjk7h24diwk83s6fhgrxk00k40w2bpz5j"; 20 }; 21 22 + checkInputs = [ pytest ]; 23 + propagatedBuildInputs = [ CommonMark docutils sphinx ]; 24 25 + checkPhase = '' 26 + py.test 27 + ''; 28 29 meta = { 30 description = "A docutils-compatibility bridge to CommonMark"; ··· 32 license = lib.licenses.mit; 33 maintainers = with lib.maintainers; [ fridh ]; 34 }; 35 + }
+2 -2
pkgs/development/python-modules/trio/default.nix
··· 15 16 buildPythonPackage rec { 17 pname = "trio"; 18 - version = "0.9.0"; 19 disabled = pythonOlder "3.5"; 20 21 src = fetchPypi { 22 inherit pname version; 23 - sha256 = "6d905d950dfa1db3fad6b5ef5637c221947123fd2b0e112033fecfc582318c3b"; 24 }; 25 26 checkInputs = [ pytest pyopenssl trustme jedi pylint ];
··· 15 16 buildPythonPackage rec { 17 pname = "trio"; 18 + version = "0.10.0"; 19 disabled = pythonOlder "3.5"; 20 21 src = fetchPypi { 22 inherit pname version; 23 + sha256 = "1c1snnhjg8l87ygf5p9z2qjcq090mws5w7pr9aaiava0yqawq8yk"; 24 }; 25 26 checkInputs = [ pytest pyopenssl trustme jedi pylint ];
+10 -7
pkgs/development/ruby-modules/gem-config/default.nix
··· 297 buildInputs = [ rainbow_rake ]; 298 }; 299 300 - rbnacl = spec: { 301 - postInstall = '' 302 - sed -i $(cat $out/nix-support/gem-meta/install-path)/lib/rbnacl.rb -e "2a \ 303 - RBNACL_LIBSODIUM_GEM_LIB_PATH = '${libsodium.out}/lib/libsodium${stdenv.hostPlatform.extensions.sharedLibrary}' 304 - " 305 - ''; 306 - }; 307 308 re2 = attrs: { 309 buildInputs = [ re2 ];
··· 297 buildInputs = [ rainbow_rake ]; 298 }; 299 300 + rbnacl = spec: 301 + if lib.versionOlder spec.version "6.0.0" then { 302 + postInstall = '' 303 + sed -i $(cat $out/nix-support/gem-meta/install-path)/lib/rbnacl.rb -e "2a \ 304 + RBNACL_LIBSODIUM_GEM_LIB_PATH = '${libsodium.out}/lib/libsodium${stdenv.hostPlatform.extensions.sharedLibrary}' 305 + " 306 + ''; 307 + } else { 308 + buildInputs = [ libsodium ]; 309 + }; 310 311 re2 = attrs: { 312 buildInputs = [ re2 ];
+2 -2
pkgs/development/tools/ammonite/default.nix
··· 5 with stdenv.lib; 6 stdenv.mkDerivation rec { 7 name = "ammonite-${version}"; 8 - version = "1.6.0"; 9 scalaVersion = "2.12"; 10 11 src = fetchurl { 12 url = "https://github.com/lihaoyi/Ammonite/releases/download/${version}/${scalaVersion}-${version}"; 13 - sha256 = "17c6ps5i48hcjj7r6xw8mrqhy4cs7qsa787l36f30757hi1cx4qy"; 14 }; 15 16 propagatedBuildInputs = [ jre ] ;
··· 5 with stdenv.lib; 6 stdenv.mkDerivation rec { 7 name = "ammonite-${version}"; 8 + version = "1.6.2"; 9 scalaVersion = "2.12"; 10 11 src = fetchurl { 12 url = "https://github.com/lihaoyi/Ammonite/releases/download/${version}/${scalaVersion}-${version}"; 13 + sha256 = "0am21zrnl48d397ll4pfsrgk079jb7x8z9kpfm6fz9hznrbl12hl"; 14 }; 15 16 propagatedBuildInputs = [ jre ] ;
+2 -2
pkgs/development/tools/analysis/brakeman/default.nix
··· 4 inherit ruby; 5 name = "${gemName}-${version}"; 6 gemName = "brakeman"; 7 - version = "4.3.1"; 8 - source.sha256 = "1y4i4vw7hawypvgg04s544fqx52ml67h9zxsaqm8w5hvxmb20wkh"; 9 10 meta = with lib; { 11 description = "Static analysis security scanner for Ruby on Rails";
··· 4 inherit ruby; 5 name = "${gemName}-${version}"; 6 gemName = "brakeman"; 7 + version = "4.4.0"; 8 + source.sha256 = "1fg37qknz1f10v4fgbn1s98gks0iimsgs1c8xra2jy16kpz4q86k"; 9 10 meta = with lib; { 11 description = "Static analysis security scanner for Ruby on Rails";
+3 -3
pkgs/development/tools/build-managers/bloop/default.nix
··· 2 3 let 4 baseName = "bloop"; 5 - version = "1.2.1"; 6 deps = stdenv.mkDerivation { 7 name = "${baseName}-deps-${version}"; 8 buildCommand = '' ··· 16 ''; 17 outputHashMode = "recursive"; 18 outputHashAlgo = "sha256"; 19 - outputHash = "1hr9d9fzp1vd60iqxbn316vzgayhsx9cffl1jclmdycqv0yzgfx3"; 20 }; 21 in 22 stdenv.mkDerivation rec { 23 name = "${baseName}-${version}"; 24 25 # Fetched from https://github.com/scalacenter/bloop/releases/download/v${version}/install.py 26 - nailgunCommit = "933f482b"; 27 28 buildInputs = [ jdk makeWrapper deps ]; 29
··· 2 3 let 4 baseName = "bloop"; 5 + version = "1.2.3"; 6 deps = stdenv.mkDerivation { 7 name = "${baseName}-deps-${version}"; 8 buildCommand = '' ··· 16 ''; 17 outputHashMode = "recursive"; 18 outputHashAlgo = "sha256"; 19 + outputHash = "0d0q4rzz21afzfclm3sjp940wk7p8cllbxsidr6rg3r1qqhzawlr"; 20 }; 21 in 22 stdenv.mkDerivation rec { 23 name = "${baseName}-${version}"; 24 25 # Fetched from https://github.com/scalacenter/bloop/releases/download/v${version}/install.py 26 + nailgunCommit = "0c325237"; 27 28 buildInputs = [ jdk makeWrapper deps ]; 29
+2 -2
pkgs/development/tools/flatpak-builder/default.nix
··· 37 }: 38 39 let 40 - version = "1.0.1"; 41 in stdenv.mkDerivation rec { 42 name = "flatpak-builder-${version}"; 43 ··· 45 46 src = fetchurl { 47 url = "https://github.com/flatpak/flatpak-builder/releases/download/${version}/${name}.tar.xz"; 48 - sha256 = "01p3j8ndk9bimnqibw3dyny0ysv6nw2f7z5im19s9jlhlzdqb48w"; 49 }; 50 51 nativeBuildInputs = [
··· 37 }: 38 39 let 40 + version = "1.0.2"; 41 in stdenv.mkDerivation rec { 42 name = "flatpak-builder-${version}"; 43 ··· 45 46 src = fetchurl { 47 url = "https://github.com/flatpak/flatpak-builder/releases/download/${version}/${name}.tar.xz"; 48 + sha256 = "0z5aaw9zvgp26szbysa3059gqsivq5ah8b6l29mqxx6ryp1nhrc1"; 49 }; 50 51 nativeBuildInputs = [
+1 -1
pkgs/games/0ad/data.nix
··· 6 7 src = fetchurl { 8 url = "http://releases.wildfiregames.com/0ad-${version}-alpha-unix-data.tar.xz"; 9 - sha256 = "1b6qcvd8yyyxavgdwpcs7asmln3xgnvjkglz6ggvwb956x37ggzx"; 10 }; 11 12 installPhase = ''
··· 6 7 src = fetchurl { 8 url = "http://releases.wildfiregames.com/0ad-${version}-alpha-unix-data.tar.xz"; 9 + sha256 = "04x7729hk6zw1xj3n4s4lvaviijsnbjf5rhzvjxlr5fygvg4l6z1"; 10 }; 11 12 installPhase = ''
+2 -2
pkgs/games/0ad/game.nix
··· 10 11 stdenv.mkDerivation rec { 12 name = "0ad-${version}"; 13 - version = "0.0.23"; 14 15 src = fetchurl { 16 url = "http://releases.wildfiregames.com/0ad-${version}-alpha-unix-build.tar.xz"; 17 - sha256 = "0qz1sg4n5y766qwgi63drrrx6k17kk0rcnn9a4a9crllk2vf78fg"; 18 }; 19 20 nativeBuildInputs = [ python2 perl pkgconfig ];
··· 10 11 stdenv.mkDerivation rec { 12 name = "0ad-${version}"; 13 + version = "0.0.23b"; 14 15 src = fetchurl { 16 url = "http://releases.wildfiregames.com/0ad-${version}-alpha-unix-build.tar.xz"; 17 + sha256 = "0draa53xg69i5qhqym85658m45xhwkbiimaldj4sr3703rjgggq1"; 18 }; 19 20 nativeBuildInputs = [ python2 perl pkgconfig ];
+2 -2
pkgs/os-specific/linux/android-udev-rules/default.nix
··· 6 7 stdenv.mkDerivation rec { 8 name = "android-udev-rules-${version}"; 9 - version = "20181031"; 10 11 src = fetchFromGitHub { 12 owner = "M0Rf30"; 13 repo = "android-udev-rules"; 14 rev = version; 15 - sha256 = "175js0vimv6b92cxl0sc4ihdj1k8yq3jrpbjy0zsvrm2367z7xqp"; 16 }; 17 18 installPhase = ''
··· 6 7 stdenv.mkDerivation rec { 8 name = "android-udev-rules-${version}"; 9 + version = "20190114"; 10 11 src = fetchFromGitHub { 12 owner = "M0Rf30"; 13 repo = "android-udev-rules"; 14 rev = version; 15 + sha256 = "1x3vaq8jpnfhxc2lzz5jnlz219w66sn151v5fkdgv68pya4nzhjj"; 16 }; 17 18 installPhase = ''
+2 -2
pkgs/os-specific/linux/atop/default.nix
··· 1 {stdenv, fetchurl, zlib, ncurses}: 2 3 stdenv.mkDerivation rec { 4 - version = "2.3.0"; 5 name = "atop-${version}"; 6 7 src = fetchurl { 8 url = "https://www.atoptool.nl/download/atop-${version}.tar.gz"; 9 - sha256 = "0r5j9q89wpylmg0px5xymxi3jpihw9wq8bh37g3ciymsw1fp5r3k"; 10 }; 11 12 buildInputs = [zlib ncurses];
··· 1 {stdenv, fetchurl, zlib, ncurses}: 2 3 stdenv.mkDerivation rec { 4 + version = "2.4.0"; 5 name = "atop-${version}"; 6 7 src = fetchurl { 8 url = "https://www.atoptool.nl/download/atop-${version}.tar.gz"; 9 + sha256 = "0s9xlxlzz688a80zxld840zkrmzw998rdkkg6yc7ssq8fw50275y"; 10 }; 11 12 buildInputs = [zlib ncurses];
+1
pkgs/os-specific/linux/busybox/default.nix
··· 106 license = licenses.gpl2; 107 maintainers = with maintainers; [ ]; 108 platforms = platforms.linux; 109 }; 110 }
··· 106 license = licenses.gpl2; 107 maintainers = with maintainers; [ ]; 108 platforms = platforms.linux; 109 + priority = 10; 110 }; 111 }
+4 -8
pkgs/os-specific/linux/nvidia-x11/default.nix
··· 22 beta = stable; 23 24 stable_415 = generic { 25 - version = "415.25"; 26 - sha256_64bit = "0jck3sjhkdf9j40fqa6hpm2m9i11bfka9diaxmk2apni4f4mpdk4"; 27 - settingsSha256 = "0x5a9dhr29g67rbgl1w973fzgjfg1lyn3dpq7fpc7chfp91vxzrp"; 28 - persistencedSha256 = "0z1d7hrz7zvi4x3ir1c3gcfpsj57wdr5pylvmjhdi3x47cb1w34f"; 29 - 30 - patches = lib.optional (kernel.meta.branch == "4.20") [ 31 - ./atomic64_t.patch 32 - ]; 33 }; 34 35 # Last one supporting x86
··· 22 beta = stable; 23 24 stable_415 = generic { 25 + version = "415.27"; 26 + sha256_64bit = "12ylf1h1wpgkd0g7r30c33hhhialn315k5sbxyzks0rm42k7cay8"; 27 + settingsSha256 = "0m8hfxb6fhanqlkkk4ayn1blgdsvnn0ipxdl19ifdl200ln6j053"; 28 + persistencedSha256 = "0i6ik6xv6rnwcd6vg5xrxcd9g7nzca3vkiy2srbv0simw86nwgdz"; 29 }; 30 31 # Last one supporting x86
+1 -1
pkgs/os-specific/linux/zfs/default.nix
··· 158 # to be adapted 159 zfsStable = common { 160 # comment/uncomment if breaking kernel versions are known 161 - # incompatibleKernelVersion = "4.19"; 162 163 # this package should point to the latest release. 164 version = "0.7.12";
··· 158 # to be adapted 159 zfsStable = common { 160 # comment/uncomment if breaking kernel versions are known 161 + incompatibleKernelVersion = "4.20"; 162 163 # this package should point to the latest release. 164 version = "0.7.12";
+17 -32
pkgs/servers/ftp/vsftpd/default.nix
··· 1 - { stdenv, fetchurl, openssl, sslEnable ? false, libcap, pam }: 2 3 stdenv.mkDerivation rec { 4 name = "vsftpd-3.0.3"; ··· 8 sha256 = "1xsyjn68k3fgm2incpb3lz2nikffl9by2safp994i272wvv2nkcx"; 9 }; 10 11 patches = [ ./CVE-2015-1419.patch ]; 12 13 - preConfigure = stdenv.lib.optionalString sslEnable '' 14 - echo "Will enable SSL" 15 sed -i "/VSF_BUILD_SSL/s/^#undef/#define/" builddefs.h 16 - ''; 17 18 - # The gcc-wrappers use -idirafter for glibc, and vsftpd also, and 19 - # their dummyinc come before those of glibc, then the build works bad. 20 - prePatch = '' 21 - sed -i -e 's/-idirafter.*//' Makefile 22 ''; 23 24 - preBuild = 25 - let 26 - sslLibs = if sslEnable then "-lcrypt -lssl -lcrypto" else ""; 27 - in '' 28 - makeFlagsArray=( "LIBS=${sslLibs} -lpam -lcap -fstack-protector" ) 29 - ''; 30 31 - # It won't link without this flag, used in CFLAGS 32 - 33 - buildInputs = [ openssl libcap pam ]; 34 - 35 - installPhase = '' 36 - mkdir -pv $out/sbin 37 - install -v -m 755 vsftpd $out/sbin/vsftpd 38 - 39 - mkdir -pv $out/share/man/man{5,8} 40 - install -v -m 644 vsftpd.8 $out/share/man/man8/vsftpd.8 41 - install -v -m 644 vsftpd.conf.5 $out/share/man/man5/vsftpd.conf.5 42 - 43 - mkdir -pv $out/etc/xinetd.d 44 - install -v -m 644 xinetd.d/vsftpd $out/etc/xinetd.d/vsftpd 45 - ''; 46 47 - meta = { 48 - platforms = stdenv.lib.platforms.linux; 49 - license = stdenv.lib.licenses.gpl2; 50 }; 51 }
··· 1 + { stdenv, fetchurl, libcap, openssl, pam }: 2 3 stdenv.mkDerivation rec { 4 name = "vsftpd-3.0.3"; ··· 8 sha256 = "1xsyjn68k3fgm2incpb3lz2nikffl9by2safp994i272wvv2nkcx"; 9 }; 10 11 + buildInputs = [ libcap openssl pam ]; 12 + 13 patches = [ ./CVE-2015-1419.patch ]; 14 15 + postPatch = '' 16 sed -i "/VSF_BUILD_SSL/s/^#undef/#define/" builddefs.h 17 + 18 + substituteInPlace Makefile \ 19 + --replace -dirafter "" \ 20 + --replace /usr $out \ 21 + --replace /etc $out/etc 22 23 + mkdir -p $out/sbin $out/man/man{5,8} 24 ''; 25 26 + NIX_LDFLAGS = "-lcrypt -lssl -lcrypto -lpam -lcap"; 27 28 + enableParallelBuilding = true; 29 30 + meta = with stdenv.lib; { 31 + description = "A very secure FTP daemon"; 32 + license = licenses.gpl2; 33 + maintainers = with maintainers; [ peterhoeg ]; 34 + platforms = platforms.linux; 35 }; 36 }
+119
pkgs/servers/home-assistant/dont-import-platformio-esptool.patch
···
··· 1 + diff --git a/esphomeyaml/__main__.py b/esphomeyaml/__main__.py 2 + index 26f42c1..529d2e0 100644 3 + --- a/esphomeyaml/__main__.py 4 + +++ b/esphomeyaml/__main__.py 5 + @@ -167,13 +167,10 @@ def compile_program(args, config): 6 + 7 + 8 + def upload_using_esptool(config, port): 9 + - import esptool 10 + - 11 + path = os.path.join(CORE.build_path, '.pioenvs', CORE.name, 'firmware.bin') 12 + - cmd = ['esptool.py', '--before', 'default_reset', '--after', 'hard_reset', 13 + + cmd = ['@esptool@/bin/esptool.py', '--before', 'default_reset', '--after', 'hard_reset', 14 + '--chip', 'esp8266', '--port', port, 'write_flash', '0x0', path] 15 + - # pylint: disable=protected-access 16 + - return run_external_command(esptool._main, *cmd) 17 + + return run_external_command(*cmd) 18 + 19 + 20 + def upload_program(config, args, host): 21 + diff --git a/esphomeyaml/platformio_api.py b/esphomeyaml/platformio_api.py 22 + index df29491..f991701 100644 23 + --- a/esphomeyaml/platformio_api.py 24 + +++ b/esphomeyaml/platformio_api.py 25 + @@ -13,12 +13,9 @@ _LOGGER = logging.getLogger(__name__) 26 + 27 + 28 + def run_platformio_cli(*args, **kwargs): 29 + - import platformio.__main__ 30 + - 31 + os.environ["PLATFORMIO_FORCE_COLOR"] = "true" 32 + - cmd = ['platformio'] + list(args) 33 + - return run_external_command(platformio.__main__.main, 34 + - *cmd, **kwargs) 35 + + cmd = ['@platformio@/bin/platformio'] + list(args) 36 + + return run_external_command(*cmd, **kwargs) 37 + 38 + 39 + def run_platformio_cli_run(config, verbose, *args, **kwargs): 40 + diff --git a/esphomeyaml/util.py b/esphomeyaml/util.py 41 + index eebb4b7..9e9e58f 100644 42 + --- a/esphomeyaml/util.py 43 + +++ b/esphomeyaml/util.py 44 + @@ -4,6 +4,7 @@ import io 45 + import logging 46 + import re 47 + import sys 48 + +import subprocess 49 + 50 + _LOGGER = logging.getLogger(__name__) 51 + 52 + @@ -79,42 +80,25 @@ class RedirectText(object): 53 + return True 54 + 55 + 56 + -def run_external_command(func, *cmd, **kwargs): 57 + - def mock_exit(return_code): 58 + - raise SystemExit(return_code) 59 + - 60 + - orig_argv = sys.argv 61 + - orig_exit = sys.exit # mock sys.exit 62 + +def run_external_command(*cmd, **kwargs): 63 + full_cmd = u' '.join(shlex_quote(x) for x in cmd) 64 + _LOGGER.info(u"Running: %s", full_cmd) 65 + 66 + - orig_stdout = sys.stdout 67 + - sys.stdout = RedirectText(sys.stdout) 68 + - orig_stderr = sys.stderr 69 + - sys.stderr = RedirectText(sys.stderr) 70 + - 71 + capture_stdout = kwargs.get('capture_stdout', False) 72 + if capture_stdout: 73 + - cap_stdout = sys.stdout = io.BytesIO() 74 + + cap_stdout = io.BytesIO() 75 + + else: 76 + + cap_stdout = sys.stdout 77 + 78 + try: 79 + - sys.argv = list(cmd) 80 + - sys.exit = mock_exit 81 + - return func() or 0 82 + - except KeyboardInterrupt: 83 + - return 1 84 + - except SystemExit as err: 85 + - return err.args[0] 86 + + completed_process = subprocess.run(cmd, 87 + + stdout=RedirectText(cap_stdout), 88 + + stderr=RedirectText(sys.stderr)) 89 + + return completed_process.returncode 90 + except Exception as err: # pylint: disable=broad-except 91 + _LOGGER.error(u"Running command failed: %s", err) 92 + _LOGGER.error(u"Please try running %s locally.", full_cmd) 93 + finally: 94 + - sys.argv = orig_argv 95 + - sys.exit = orig_exit 96 + - 97 + - sys.stdout = orig_stdout 98 + - sys.stderr = orig_stderr 99 + - 100 + if capture_stdout: 101 + # pylint: disable=lost-exception 102 + return cap_stdout.getvalue() 103 + diff --git a/setup.py b/setup.py 104 + index 78a5378..8ce80de 100755 105 + --- a/setup.py 106 + +++ b/setup.py 107 + @@ -23,12 +23,10 @@ DOWNLOAD_URL = '{}/archive/{}.zip'.format(GITHUB_URL, const.__version__) 108 + 109 + REQUIRES = [ 110 + 'voluptuous>=0.11.1', 111 + - 'platformio>=3.5.3', 112 + 'pyyaml>=3.12', 113 + 'paho-mqtt>=1.3.1', 114 + 'colorlog>=3.1.2', 115 + 'tornado>=5.0.0', 116 + - 'esptool>=2.3.1', 117 + 'typing>=3.0.0', 118 + 'protobuf>=3.4', 119 + 'tzlocal>=1.4',
+43
pkgs/servers/home-assistant/esphome.nix
···
··· 1 + { lib, python3, fetchpatch, substituteAll, platformio, esptool }: 2 + 3 + python3.pkgs.buildPythonApplication rec { 4 + pname = "esphomeyaml"; 5 + version = "1.10.1"; 6 + 7 + src = python3.pkgs.fetchPypi { 8 + inherit pname version; 9 + sha256 = "426cd545b4e9505ce5b4f5c63d2d54cb038f93fe3ba9d4d56b6b6431b222485d"; 10 + }; 11 + 12 + patches = [ 13 + (substituteAll { 14 + src = ./dont-import-platformio-esptool.patch; 15 + inherit platformio esptool; 16 + }) 17 + ]; 18 + 19 + postPatch = '' 20 + # typing is part of the standard library since Python 3.5 21 + substituteInPlace setup.py --replace "'typing>=3.0.0'," "" 22 + ''; 23 + 24 + propagatedBuildInputs = with python3.pkgs; [ 25 + voluptuous pyyaml paho-mqtt colorlog 26 + tornado protobuf tzlocal pyserial 27 + ]; 28 + 29 + checkPhase = '' 30 + $out/bin/esphomeyaml tests/test1.yaml compile 31 + $out/bin/esphomeyaml tests/test2.yaml compile 32 + ''; 33 + 34 + # Platformio will try to access the network 35 + doCheck = false; 36 + 37 + meta = with lib; { 38 + description = "Make creating custom firmwares for ESP32/ESP8266 super easy"; 39 + homepage = https://esphomelib.com/esphomeyaml; 40 + license = licenses.mit; 41 + maintainers = with maintainers; [ dotlambda ]; 42 + }; 43 + }
+13
pkgs/servers/zoneminder/default-to-http-1dot1.patch
···
··· 1 + diff --git a/scripts/ZoneMinder/lib/ZoneMinder/ConfigData.pm.in b/scripts/ZoneMinder/lib/ZoneMinder/ConfigData.pm.in 2 + index fa7b86079..c9d3c6f6c 100644 3 + --- a/scripts/ZoneMinder/lib/ZoneMinder/ConfigData.pm.in 4 + +++ b/scripts/ZoneMinder/lib/ZoneMinder/ConfigData.pm.in 5 + @@ -877,7 +877,7 @@ our @options = ( 6 + }, 7 + { 8 + name => 'ZM_HTTP_VERSION', 9 + - default => '1.0', 10 + + default => '1.1', 11 + description => 'The version of HTTP that ZoneMinder will use to connect', 12 + help => q` 13 + ZoneMinder can communicate with network cameras using either of
+192
pkgs/servers/zoneminder/default.nix
···
··· 1 + { stdenv, lib, fetchFromGitHub, fetchurl, cmake, makeWrapper, pkgconfig 2 + , curl, ffmpeg, glib, libjpeg, libselinux, libsepol, mp4v2, mysql, nettools, pcre, perl, perlPackages 3 + , polkit, utillinuxMinimal, x264, zlib 4 + , avahi, dbus, gettext, git, gnutar, gzip, bzip2, libiconv, openssl, python 5 + , coreutils, procps, psmisc }: 6 + 7 + # NOTES: 8 + # 9 + # 1. ZM_CONFIG_DIR is set to $out/etc/zoneminder as the .conf file distributed 10 + # by upstream contains defaults and is not supposed to be edited so it is fine 11 + # to keep it read-only. 12 + # 13 + # 2. ZM_CONFIG_SUBDIR is where we place our configuration from the NixOS module 14 + # but as the installer will try to put files there, we patch Config.pm after the 15 + # install. 16 + # 17 + # 3. ZoneMinder is run with -T passed to the perl interpreter which makes perl 18 + # ignore PERL5LIB. We therefore have to do the substitution into -I parameters 19 + # ourselves which results in ugly wrappers. 20 + # 21 + # 4. The makefile for the perl modules needs patching to put things into the 22 + # right place. That also means we have to not run "make install" for them. 23 + # 24 + # 5. In principal the various ZM_xx variables should be overridable from the 25 + # config file but some of them are baked into the perl scripts, so we *have* to 26 + # set them here instead of in the configuration in the NixOS module. 27 + # 28 + # 6. I am no PolicyKit expert but the .policy file looks fishy: 29 + # a. The user needs to be known at build-time so we should probably throw 30 + # upstream's policy file away and generate it from the NixOS module 31 + # b. I *think* we may have to substitute the store paths with 32 + # /run/current-system/sw/bin paths for it to work. 33 + # 34 + # 7. we manually fix up the perl paths in the scripts as fixupPhase will only 35 + # handle pkexec and not perl if both are present. 36 + # 37 + # 8. There are several perl modules needed at runtime which are not checked when 38 + # building so if a new version stops working, check if there is a missing 39 + # dependency by running the failing component manually. 40 + # 41 + # 9. Parts of the web UI has a hardcoded /zm path so we create a symlink to work 42 + # around it. 43 + 44 + let 45 + modules = [ 46 + { 47 + path = "web/api/app/Plugin/Crud"; 48 + src = fetchFromGitHub { 49 + owner = "ZoneMinder"; 50 + repo = "crud"; 51 + rev = "3.1.0-zm"; 52 + sha256 = "061avzyml7mla4hlx057fm8a9yjh6m6qslgyzn74cv5p2y7f463l"; 53 + }; 54 + } 55 + { 56 + path = "web/api/app/Plugin/CakePHP-Enum-Behavior"; 57 + src = fetchFromGitHub { 58 + owner = "ZoneMinder"; 59 + repo = "CakePHP-Enum-Behavior"; 60 + rev = "1.0-zm"; 61 + sha256 = "0zsi6s8xymb183kx3szspbrwfjqcgga7786zqvydy6hc8c909cgx"; 62 + }; 63 + } 64 + ]; 65 + 66 + addons = [ 67 + { 68 + path = "scripts/ZoneMinder/lib/ZoneMinder/Control/Xiaomi.pm"; 69 + src = fetchurl { 70 + url = "https://gist.githubusercontent.com/joshstrange/73a2f24dfaf5cd5b470024096ce2680f/raw/e964270c5cdbf95e5b7f214f7f0fc6113791530e/Xiaomi.pm"; 71 + sha256 = "04n1ap8fx66xfl9q9rypj48pzbgzikq0gisfsfm8wdsmflarz43v"; 72 + }; 73 + } 74 + ]; 75 + 76 + user = "zoneminder"; 77 + dirName = "zoneminder"; 78 + perlBin = "${perl}/bin/perl"; 79 + 80 + in stdenv.mkDerivation rec { 81 + name = "zoneminder-${version}"; 82 + version = "1.32.3"; 83 + 84 + src = fetchFromGitHub { 85 + owner = "ZoneMinder"; 86 + repo = "zoneminder"; 87 + rev = version; 88 + sha256 = "1sx2fn99861zh0gp8g53ynr1q6yfmymxamn82y54jqj6nv475njz"; 89 + }; 90 + 91 + patches = [ 92 + ./default-to-http-1dot1.patch 93 + ]; 94 + 95 + postPatch = '' 96 + ${lib.concatStringsSep "\n" (map (e: '' 97 + rm -rf ${e.path}/* 98 + cp -r ${e.src}/* ${e.path}/ 99 + '') modules)} 100 + 101 + rm -rf web/api/lib/Cake/Test 102 + 103 + ${lib.concatStringsSep "\n" (map (e: '' 104 + cp ${e.src} ${e.path} 105 + '') addons)} 106 + 107 + for d in scripts/ZoneMinder onvif/{modules,proxy} ; do 108 + substituteInPlace $d/CMakeLists.txt \ 109 + --replace 'DESTDIR="''${CMAKE_CURRENT_BINARY_DIR}/output"' "PREFIX=$out INSTALLDIRS=site" 110 + sed -i '/^install/d' $d/CMakeLists.txt 111 + done 112 + 113 + substituteInPlace misc/CMakeLists.txt \ 114 + --replace '"''${PC_POLKIT_PREFIX}/''${CMAKE_INSTALL_DATAROOTDIR}' "\"$out/share" 115 + 116 + for f in misc/*.policy.in \ 117 + scripts/*.pl* \ 118 + scripts/ZoneMinder/lib/ZoneMinder/Memory.pm.in ; do 119 + substituteInPlace $f \ 120 + --replace '/usr/bin/perl' '${perlBin}' \ 121 + --replace '/bin:/usr/bin' "$out/bin:${lib.makeBinPath [ coreutils procps psmisc ]}" 122 + done 123 + 124 + substituteInPlace scripts/zmdbbackup.in \ 125 + --replace /usr/bin/mysqldump ${mysql}/bin/mysqldump 126 + 127 + for f in scripts/ZoneMinder/lib/ZoneMinder/Config.pm.in \ 128 + scripts/zmupdate.pl.in \ 129 + src/zm_config.h.in \ 130 + web/api/app/Config/bootstrap.php.in \ 131 + web/includes/config.php.in ; do 132 + substituteInPlace $f --replace @ZM_CONFIG_SUBDIR@ /etc/zoneminder 133 + done 134 + 135 + for f in includes/Event.php views/image.php skins/classic/views/image-ffmpeg.php ; do 136 + substituteInPlace web/$f \ 137 + --replace "'ffmpeg " "'${ffmpeg}/bin/ffmpeg " 138 + done 139 + ''; 140 + 141 + buildInputs = [ 142 + curl ffmpeg glib libjpeg libselinux libsepol mp4v2 mysql pcre perl polkit x264 zlib 143 + utillinuxMinimal # for libmount 144 + ] ++ (with perlPackages; [ 145 + DateManip DBI DBDmysql LWP SysMmap 146 + # runtime dependencies not checked at build-time 147 + JSONMaybeXS LWPProtocolHttps NumberBytesHuman SysCPU SysMemInfo TimeDate 148 + ]); 149 + 150 + nativeBuildInputs = [ cmake makeWrapper pkgconfig ]; 151 + 152 + enableParallelBuilding = true; 153 + 154 + cmakeFlags = [ 155 + "-DWITH_SYSTEMD=ON" 156 + "-DZM_LOGDIR=/var/log/${dirName}" 157 + "-DZM_RUNDIR=/run/${dirName}" 158 + "-DZM_SOCKDIR=/run/${dirName}" 159 + "-DZM_TMPDIR=/tmp/${dirName}" 160 + "-DZM_CONFIG_DIR=${placeholder "out"}/etc/zoneminder" 161 + "-DZM_WEB_USER=${user}" 162 + "-DZM_WEB_GROUP=${user}" 163 + ]; 164 + 165 + passthru = { inherit dirName; }; 166 + 167 + postInstall = '' 168 + PERL5LIB="$PERL5LIB''${PERL5LIB:+:}$out/${perl.libPrefix}" 169 + 170 + perlFlags="-wT" 171 + for i in $(IFS=$'\n'; echo $PERL5LIB | tr ':' "\n" | sort -u); do 172 + perlFlags="$perlFlags -I$i" 173 + done 174 + 175 + for f in $out/bin/*.pl ; do 176 + mv $f $out/libexec/ 177 + makeWrapper ${perlBin} $f \ 178 + --prefix PATH : $out/bin \ 179 + --add-flags "$perlFlags $out/libexec/$(basename $f)" 180 + done 181 + 182 + ln -s $out/share/zoneminder/www $out/share/zoneminder/www/zm 183 + ''; 184 + 185 + meta = with stdenv.lib; { 186 + description = "Video surveillance software system"; 187 + homepage = https://zoneminder.com; 188 + license = licenses.gpl3; 189 + maintainers = with maintainers; [ peterhoeg ]; 190 + platforms = platforms.unix; 191 + }; 192 + }
+9 -5
pkgs/tools/admin/pulumi/default.nix
··· 1 - { stdenv, fetchurl }: 2 3 let 4 5 - version = "0.16.7"; 6 7 # switch the dropdown to “manual” on https://pulumi.io/quickstart/install.html # TODO: update script 8 pulumiArchPackage = { 9 "x86_64-linux" = { 10 url = "https://get.pulumi.com/releases/sdk/pulumi-v${version}-linux-x64.tar.gz"; 11 - sha256 = "1l1cn8pk05vl7vpmhny9rlz1hj0iqclqjj1r2q12qip7f4qkgsfw"; 12 }; 13 "x86_64-darwin" = { 14 url = "https://get.pulumi.com/releases/sdk/pulumi-v${version}-darwin-x64.tar.gz"; 15 - sha256 = "0p07jvgy0xl524fgb5d9wijxa91isv4h4mcn9qghycqj90yqnjhx"; 16 }; 17 }; 18 ··· 27 cp * $out/bin/ 28 ''; 29 30 - meta = with stdenv.lib; { 31 homepage = https://pulumi.io/; 32 description = "Pulumi is a cloud development platform that makes creating cloud programs easy and productive"; 33 license = with licenses; [ asl20 ];
··· 1 + { lib, stdenv, fetchurl, autoPatchelfHook }: 2 + 3 + with lib; 4 5 let 6 7 + version = "0.16.11"; 8 9 # switch the dropdown to “manual” on https://pulumi.io/quickstart/install.html # TODO: update script 10 pulumiArchPackage = { 11 "x86_64-linux" = { 12 url = "https://get.pulumi.com/releases/sdk/pulumi-v${version}-linux-x64.tar.gz"; 13 + sha256 = "176nwqp1dd8vdpl4qajaq2w458f8pgavwvwd93lgnccqw3cznv75"; 14 }; 15 "x86_64-darwin" = { 16 url = "https://get.pulumi.com/releases/sdk/pulumi-v${version}-darwin-x64.tar.gz"; 17 + sha256 = "1mkz9bkkvpvbpzfnvwpx4892zd05bvjz5rbfwhwzm3wzfcjjs16i"; 18 }; 19 }; 20 ··· 29 cp * $out/bin/ 30 ''; 31 32 + buildInputs = optionals stdenv.isLinux [ autoPatchelfHook ]; 33 + 34 + meta = { 35 homepage = https://pulumi.io/; 36 description = "Pulumi is a cloud development platform that makes creating cloud programs easy and productive"; 37 license = with licenses; [ asl20 ];
+2 -2
pkgs/tools/bluetooth/blueman/default.nix
··· 9 10 in stdenv.mkDerivation rec { 11 name = "blueman-${version}"; 12 - version = "2.0.7"; 13 14 src = fetchurl { 15 url = "https://github.com/blueman-project/blueman/releases/download/${version}/${name}.tar.xz"; 16 - sha256 = "15q253081ahmb8k3yaqy99pc7ppbq3pxrx35bg4q9jmn6xv2kj63"; 17 }; 18 19 nativeBuildInputs = [
··· 9 10 in stdenv.mkDerivation rec { 11 name = "blueman-${version}"; 12 + version = "2.0.8"; 13 14 src = fetchurl { 15 url = "https://github.com/blueman-project/blueman/releases/download/${version}/${name}.tar.xz"; 16 + sha256 = "0kkh6jppqcn3yf70vnny1l015kxrz3dxw4g774gl02lh9ixx1bq4"; 17 }; 18 19 nativeBuildInputs = [
+2 -2
pkgs/tools/misc/youtube-dl/default.nix
··· 19 # The websites youtube-dl deals with are a very moving target. That means that 20 # downloads break constantly. Because of that, updates should always be backported 21 # to the latest stable release. 22 - version = "2019.01.16"; 23 24 src = fetchurl { 25 url = "https://yt-dl.org/downloads/${version}/${pname}-${version}.tar.gz"; 26 - sha256 = "1dhbr5n0l6dgjp1620jp30kaizrzagacrj64gd9pwy1916kjm7si"; 27 }; 28 29 nativeBuildInputs = [ makeWrapper ];
··· 19 # The websites youtube-dl deals with are a very moving target. That means that 20 # downloads break constantly. Because of that, updates should always be backported 21 # to the latest stable release. 22 + version = "2019.01.17"; 23 24 src = fetchurl { 25 url = "https://yt-dl.org/downloads/${version}/${pname}-${version}.tar.gz"; 26 + sha256 = "0fxajwv81b0bjw9qlwmxd4r93yp5nnqll79vhic0vy72ii0093r7"; 27 }; 28 29 nativeBuildInputs = [ makeWrapper ];
+6 -7
pkgs/tools/misc/yubikey-manager/default.nix
··· 1 - { pythonPackages, fetchurl, lib, 2 yubikey-personalization, libu2f-host, libusb1 }: 3 4 - pythonPackages.buildPythonPackage rec { 5 - name = "yubikey-manager-1.0.1"; 6 7 srcs = fetchurl { 8 url = "https://developers.yubico.com/yubikey-manager/Releases/${name}.tar.gz"; 9 - sha256 = "0i7w1f89hqlw7g800fjhbb6yvq9wjmj5d7w7p6v8bkyvk645v48z"; 10 }; 11 12 propagatedBuildInputs = 13 - with pythonPackages; 14 - lib.optional (!pythonPackages.pythonAtLeast "3.4") enum34 ++ [ 15 click 16 cryptography 17 pyscard ··· 44 45 license = licenses.bsd2; 46 platforms = platforms.unix; 47 - maintainers = with maintainers; [ benley ]; 48 }; 49 }
··· 1 + { python3Packages, fetchurl, lib, 2 yubikey-personalization, libu2f-host, libusb1 }: 3 4 + python3Packages.buildPythonPackage rec { 5 + name = "yubikey-manager-2.0.0"; 6 7 srcs = fetchurl { 8 url = "https://developers.yubico.com/yubikey-manager/Releases/${name}.tar.gz"; 9 + sha256 = "1x36pyg9g3by2pa11j6d73d79sdlb7qy98lwwn05f43fjm74qnz9"; 10 }; 11 12 propagatedBuildInputs = 13 + with python3Packages; [ 14 click 15 cryptography 16 pyscard ··· 43 44 license = licenses.bsd2; 45 platforms = platforms.unix; 46 + maintainers = with maintainers; [ benley mic92 ]; 47 }; 48 }
+2 -2
pkgs/tools/security/clamav/default.nix
··· 5 6 stdenv.mkDerivation rec { 7 name = "clamav-${version}"; 8 - version = "0.101.0"; 9 10 src = fetchurl { 11 url = "https://www.clamav.net/downloads/production/${name}.tar.gz"; 12 - sha256 = "1ljs799xkd9ljj833rkwp961iaysqx4hrlyjrbkbvq64dgc5lapi"; 13 }; 14 15 # don't install sample config files into the absolute sysconfdir folder
··· 5 6 stdenv.mkDerivation rec { 7 name = "clamav-${version}"; 8 + version = "0.101.1"; 9 10 src = fetchurl { 11 url = "https://www.clamav.net/downloads/production/${name}.tar.gz"; 12 + sha256 = "01mq3z04fjbq5iq8wfwfim72iv3dn04d3ishc5lkhxpmnalqydps"; 13 }; 14 15 # don't install sample config files into the absolute sysconfdir folder
+2 -2
pkgs/tools/system/bfs/default.nix
··· 2 3 stdenv.mkDerivation rec { 4 name = "bfs-${version}"; 5 - version = "1.3.1"; 6 7 src = fetchFromGitHub { 8 repo = "bfs"; 9 owner = "tavianator"; 10 rev = version; 11 - sha256 = "0gv9hrcsz7miv40v6wmkmb1a58ji5d1dlgwq6gwczd8rzlmhddmc"; 12 }; 13 14 buildInputs = stdenv.lib.optionals stdenv.isLinux [ libcap acl ];
··· 2 3 stdenv.mkDerivation rec { 4 name = "bfs-${version}"; 5 + version = "1.3.2"; 6 7 src = fetchFromGitHub { 8 repo = "bfs"; 9 owner = "tavianator"; 10 rev = version; 11 + sha256 = "0cyylqmq31if93zz0l1fnm454dsmcx34j4c2r0xprcggihdxbwk5"; 12 }; 13 14 buildInputs = stdenv.lib.optionals stdenv.isLinux [ libcap acl ];
+4 -4
pkgs/tools/text/vale/default.nix
··· 2 3 buildGoPackage rec { 4 name = "vale-${version}"; 5 - version = "1.2.6"; 6 7 goPackagePath = "github.com/errata-ai/vale"; 8 ··· 10 owner = "errata-ai"; 11 repo = "vale"; 12 rev = "v${version}"; 13 - sha256 = "1mhynasikncwz9dkk9z27qvwk03j7q0vx0wjnqg69pd97lgrp7zp"; 14 }; 15 16 - goDeps = ./deps.nix; 17 18 meta = with stdenv.lib; { 19 homepage = https://errata-ai.github.io/vale/; 20 - description = "Vale is an open source linter for prose"; 21 license = licenses.mit; 22 maintainers = [ maintainers.marsam ]; 23 };
··· 2 3 buildGoPackage rec { 4 name = "vale-${version}"; 5 + version = "1.3.0"; 6 7 goPackagePath = "github.com/errata-ai/vale"; 8 ··· 10 owner = "errata-ai"; 11 repo = "vale"; 12 rev = "v${version}"; 13 + sha256 = "1yfrn27z3ifdlvalgrnhdrkhxkh09xpyv681sr01wc2hxq6v3hqn"; 14 }; 15 16 + doCheck = true; 17 18 meta = with stdenv.lib; { 19 homepage = https://errata-ai.github.io/vale/; 20 + description = "A syntax-aware linter for prose built with speed and extensibility in mind"; 21 license = licenses.mit; 22 maintainers = [ maintainers.marsam ]; 23 };
-246
pkgs/tools/text/vale/deps.nix
··· 1 - # file generated from Gopkg.lock using dep2nix (https://github.com/nixcloud/dep2nix) 2 - [ 3 - { 4 - goPackagePath = "github.com/ValeLint/gospell"; 5 - fetch = { 6 - type = "git"; 7 - url = "https://github.com/ValeLint/gospell"; 8 - rev = "90dfc71015dfebd3a7274f1ad2756c1dbf09e250"; 9 - sha256 = "0i2ha76q2xja8r4j72kqiarnylrbk4l1b29632skgzib6k4fh4g1"; 10 - }; 11 - } 12 - { 13 - goPackagePath = "github.com/client9/gospell"; 14 - fetch = { 15 - type = "git"; 16 - url = "https://github.com/client9/gospell"; 17 - rev = "90dfc71015dfebd3a7274f1ad2756c1dbf09e250"; 18 - sha256 = "0i2ha76q2xja8r4j72kqiarnylrbk4l1b29632skgzib6k4fh4g1"; 19 - }; 20 - } 21 - { 22 - goPackagePath = "github.com/davecgh/go-spew"; 23 - fetch = { 24 - type = "git"; 25 - url = "https://github.com/davecgh/go-spew"; 26 - rev = "346938d642f2ec3594ed81d874461961cd0faa76"; 27 - sha256 = "0d4jfmak5p6lb7n2r6yvf5p1zcw0l8j74kn55ghvr7zr7b7axm6c"; 28 - }; 29 - } 30 - { 31 - goPackagePath = "github.com/fatih/color"; 32 - fetch = { 33 - type = "git"; 34 - url = "https://github.com/fatih/color"; 35 - rev = "570b54cabe6b8eb0bc2dfce68d964677d63b5260"; 36 - sha256 = "1hw9hgkfzbzqjhy29pqpk20xggxaqjv45wx8yn69488mw5ph7khh"; 37 - }; 38 - } 39 - { 40 - goPackagePath = "github.com/gobwas/glob"; 41 - fetch = { 42 - type = "git"; 43 - url = "https://github.com/gobwas/glob"; 44 - rev = "bea32b9cd2d6f55753d94a28e959b13f0244797a"; 45 - sha256 = "0dx0f293v1a0d8qi7ik5hdl26dapd8xm0hj9a9gc620vhj7khi9q"; 46 - }; 47 - } 48 - { 49 - goPackagePath = "github.com/jdkato/prose"; 50 - fetch = { 51 - type = "git"; 52 - url = "https://github.com/jdkato/prose"; 53 - rev = "4d68d1b77f66e36b6897a79f59f434d558e5e0c2"; 54 - sha256 = "1g2wwj6azpcjy6j7pk4dqx868v3hrqwjg5d737p4441a55026prj"; 55 - }; 56 - } 57 - { 58 - goPackagePath = "github.com/jdkato/regexp"; 59 - fetch = { 60 - type = "git"; 61 - url = "https://github.com/jdkato/regexp"; 62 - rev = "38ab2f7842bf2a539528aa7d0014b37421b886e1"; 63 - sha256 = "11z21z2h2l8vlh4nwkcn7vbfdcmdjk9sc90kn8ji1923i3s7p3bw"; 64 - }; 65 - } 66 - { 67 - goPackagePath = "github.com/mattn/go-colorable"; 68 - fetch = { 69 - type = "git"; 70 - url = "https://github.com/mattn/go-colorable"; 71 - rev = "941b50ebc6efddf4c41c8e4537a5f68a4e686b24"; 72 - sha256 = "0dw492z5w0fzv1cxm3xx26n8qpqjaf2ybiwpmvimzyhv65n8nrf8"; 73 - }; 74 - } 75 - { 76 - goPackagePath = "github.com/mattn/go-isatty"; 77 - fetch = { 78 - type = "git"; 79 - url = "https://github.com/mattn/go-isatty"; 80 - rev = "fc9e8d8ef48496124e79ae0df75490096eccf6fe"; 81 - sha256 = "1r5f9gkavkb1w6sr0qs5kj16706xirl3qnlq3hqpszkw9w27x65a"; 82 - }; 83 - } 84 - { 85 - goPackagePath = "github.com/mattn/go-runewidth"; 86 - fetch = { 87 - type = "git"; 88 - url = "https://github.com/mattn/go-runewidth"; 89 - rev = "9e777a8366cce605130a531d2cd6363d07ad7317"; 90 - sha256 = "0vkrfrz3fzn5n6ix4k8s0cg0b448459sldq8bp4riavsxm932jzb"; 91 - }; 92 - } 93 - { 94 - goPackagePath = "github.com/mitchellh/go-homedir"; 95 - fetch = { 96 - type = "git"; 97 - url = "https://github.com/mitchellh/go-homedir"; 98 - rev = "b8bc1bf767474819792c23f32d8286a45736f1c6"; 99 - sha256 = "13ry4lylalkh4g2vny9cxwvryslzyzwp9r92z0b10idhdq3wad1q"; 100 - }; 101 - } 102 - { 103 - goPackagePath = "github.com/mitchellh/mapstructure"; 104 - fetch = { 105 - type = "git"; 106 - url = "https://github.com/mitchellh/mapstructure"; 107 - rev = "d0303fe809921458f417bcf828397a65db30a7e4"; 108 - sha256 = "1fjwi5ghc1ibyx93apz31n4hj6gcq1hzismpdfbg2qxwshyg0ya8"; 109 - }; 110 - } 111 - { 112 - goPackagePath = "github.com/montanaflynn/stats"; 113 - fetch = { 114 - type = "git"; 115 - url = "https://github.com/montanaflynn/stats"; 116 - rev = "eeaced052adbcfeea372c749c281099ed7fdaa38"; 117 - sha256 = "0kamcla633692n81w0j0d423ws3qdds97r2c0i193ypsh9xknpq9"; 118 - }; 119 - } 120 - { 121 - goPackagePath = "github.com/olekukonko/tablewriter"; 122 - fetch = { 123 - type = "git"; 124 - url = "https://github.com/olekukonko/tablewriter"; 125 - rev = "be5337e7b39e64e5f91445ce7e721888dbab7387"; 126 - sha256 = "04zg261i4bq29bc460nyx9r2j70mj0sbxlprn87ylk8y5j2m1d1w"; 127 - }; 128 - } 129 - { 130 - goPackagePath = "github.com/pmezard/go-difflib"; 131 - fetch = { 132 - type = "git"; 133 - url = "https://github.com/pmezard/go-difflib"; 134 - rev = "792786c7400a136282c1664665ae0a8db921c6c2"; 135 - sha256 = "0c1cn55m4rypmscgf0rrb88pn58j3ysvc2d0432dp3c6fqg6cnzw"; 136 - }; 137 - } 138 - { 139 - goPackagePath = "github.com/remeh/sizedwaitgroup"; 140 - fetch = { 141 - type = "git"; 142 - url = "https://github.com/remeh/sizedwaitgroup"; 143 - rev = "4b44541c93591ee0e73747d6081e61bd8c58b5c7"; 144 - sha256 = "1kz7h8r09c95r3hc8bngznc4lrnkz2vm50lrl96cqxja0pw8jl92"; 145 - }; 146 - } 147 - { 148 - goPackagePath = "github.com/russross/blackfriday"; 149 - fetch = { 150 - type = "git"; 151 - url = "https://github.com/russross/blackfriday"; 152 - rev = "0b647d0506a698cca42caca173e55559b12a69f2"; 153 - sha256 = "1bv6mvnrqrcrp5d45l5p07q855sval8l3jzw1cf2dajkpcpysqln"; 154 - }; 155 - } 156 - { 157 - goPackagePath = "github.com/shogo82148/go-shuffle"; 158 - fetch = { 159 - type = "git"; 160 - url = "https://github.com/shogo82148/go-shuffle"; 161 - rev = "4789c7c401f229b3ae1673acbccca451480660cd"; 162 - sha256 = "1gaii1h51df8vr28ww5np8nhvfcy4plv0nja9b9h0cmcxa3jf1lp"; 163 - }; 164 - } 165 - { 166 - goPackagePath = "github.com/shurcooL/sanitized_anchor_name"; 167 - fetch = { 168 - type = "git"; 169 - url = "https://github.com/shurcooL/sanitized_anchor_name"; 170 - rev = "541ff5ee47f1dddf6a5281af78307d921524bcb5"; 171 - sha256 = "1fslblamqkd0yrvl1kbq95hnnji78bq9m33nnxiqs7y9w32zylv5"; 172 - }; 173 - } 174 - { 175 - goPackagePath = "github.com/stretchr/testify"; 176 - fetch = { 177 - type = "git"; 178 - url = "https://github.com/stretchr/testify"; 179 - rev = "69483b4bd14f5845b5a1e55bca19e954e827f1d0"; 180 - sha256 = "11lzrwkdzdd8yyag92akncc008h2f9d1bpc489mxiwp0jrmz4ivb"; 181 - }; 182 - } 183 - { 184 - goPackagePath = "github.com/urfave/cli"; 185 - fetch = { 186 - type = "git"; 187 - url = "https://github.com/urfave/cli"; 188 - rev = "0bdeddeeb0f650497d603c4ad7b20cfe685682f6"; 189 - sha256 = "1ny63c7bfwfrsp7vfkvb4i0xhq4v7yxqnwxa52y4xlfxs4r6v6fg"; 190 - }; 191 - } 192 - { 193 - goPackagePath = "github.com/xrash/smetrics"; 194 - fetch = { 195 - type = "git"; 196 - url = "https://github.com/xrash/smetrics"; 197 - rev = "a3153f7040e90324c58c6287535e26a0ac5c1cc1"; 198 - sha256 = "1phq5y6mcg741spq7snc6xsky1ybc7fllh2444sfr3p41sjq9hg6"; 199 - }; 200 - } 201 - { 202 - goPackagePath = "golang.org/x/net"; 203 - fetch = { 204 - type = "git"; 205 - url = "https://go.googlesource.com/net"; 206 - rev = "ab5485076ff3407ad2d02db054635913f017b0ed"; 207 - sha256 = "10805rk5rfgc3ivx35r9qmnps8hy3k3m57g0j6mz10w96k8i7pk7"; 208 - }; 209 - } 210 - { 211 - goPackagePath = "golang.org/x/sys"; 212 - fetch = { 213 - type = "git"; 214 - url = "https://go.googlesource.com/sys"; 215 - rev = "14ac33bf8474b62c65cae263af2e4d3b543cc699"; 216 - sha256 = "1453l5v5kizq142fiq3bg5hka7b0yvnf9fsq8y2ayj4bc9h5vqf3"; 217 - }; 218 - } 219 - { 220 - goPackagePath = "gopkg.in/ini.v1"; 221 - fetch = { 222 - type = "git"; 223 - url = "https://github.com/go-ini/ini"; 224 - rev = "d3de07a94d22b4a0972deb4b96d790c2c0ce8333"; 225 - sha256 = "1lpwqhcfhaa6aighd2lpjfswbb6aw5d5bsmyr0vqaqg6g5kz0ikg"; 226 - }; 227 - } 228 - { 229 - goPackagePath = "gopkg.in/neurosnap/sentences.v1"; 230 - fetch = { 231 - type = "git"; 232 - url = "https://github.com/neurosnap/sentences"; 233 - rev = "a7f18ead1433a139742a8b42ce7a059cfb484d60"; 234 - sha256 = "1b64xv5anfbnq6354jaygxapwgkdhbszzi604b96sm682brwl0p7"; 235 - }; 236 - } 237 - { 238 - goPackagePath = "gopkg.in/yaml.v2"; 239 - fetch = { 240 - type = "git"; 241 - url = "https://github.com/go-yaml/yaml"; 242 - rev = "25c4ec802a7d637f88d584ab26798e94ad14c13b"; 243 - sha256 = "053mknsl3xhjscmd552005xnwbfcg0z2iphvbvj3wi0w3pvmlw44"; 244 - }; 245 - } 246 - ]
···
+2 -2
pkgs/tools/video/bento4/default.nix
··· 3 }: 4 stdenv.mkDerivation rec { 5 name = "bento4-${version}"; 6 - version = "1.5.1-627"; 7 8 src = fetchFromGitHub { 9 owner = "axiomatic-systems"; 10 repo = "Bento4"; 11 rev = "v${version}"; 12 - sha256 = "1nczv7vqgjryzdn9vkxz93awd7zyj5kwiz8llbb25nnqnqgfq170"; 13 }; 14 15 patches = [ ./libap4.patch ];
··· 3 }: 4 stdenv.mkDerivation rec { 5 name = "bento4-${version}"; 6 + version = "1.5.1-628"; 7 8 src = fetchFromGitHub { 9 owner = "axiomatic-systems"; 10 repo = "Bento4"; 11 rev = "v${version}"; 12 + sha256 = "1fv0k7f3ifwa0c0x22wblm6i8x9zbc13pg047a9i74n456p0mzp3"; 13 }; 14 15 patches = [ ./libap4.patch ];
+20 -1
pkgs/top-level/all-packages.nix
··· 1379 1380 eschalot = callPackage ../tools/security/eschalot { }; 1381 1382 esptool = callPackage ../tools/misc/esptool { }; 1383 1384 esptool-ck = callPackage ../tools/misc/esptool-ck { }; ··· 12098 qtxmlpatterns = qt59.qtxmlpatterns; 12099 }; 12100 12101 re2 = callPackage ../development/libraries/re2 { }; 12102 12103 qbs = libsForQt5.callPackage ../development/tools/build-managers/qbs { }; ··· 13117 13118 yojimbo = callPackage ../development/libraries/yojimbo { }; 13119 13120 - yubioath-desktop = callPackage ../applications/misc/yubioath-desktop { }; 13121 13122 yubico-piv-tool = callPackage ../tools/misc/yubico-piv-tool { }; 13123 ··· 15375 15376 adapta-backgrounds = callPackage ../data/misc/adapta-backgrounds { }; 15377 15378 aileron = callPackage ../data/fonts/aileron { }; 15379 15380 andagii = callPackage ../data/fonts/andagii { }; ··· 15382 andika = callPackage ../data/fonts/andika { }; 15383 15384 android-udev-rules = callPackage ../os-specific/linux/android-udev-rules { }; 15385 15386 anonymousPro = callPackage ../data/fonts/anonymous-pro { }; 15387 ··· 15419 15420 charis-sil = callPackage ../data/fonts/charis-sil { }; 15421 15422 comfortaa = callPackage ../data/fonts/comfortaa {}; 15423 15424 comic-neue = callPackage ../data/fonts/comic-neue { }; ··· 15565 15566 hanazono = callPackage ../data/fonts/hanazono { }; 15567 15568 hyperscrypt-font = callPackage ../data/fonts/hyperscrypt { }; 15569 15570 ia-writer-duospace = callPackage ../data/fonts/ia-writer-duospace { }; ··· 15640 # lohit-fonts.tamil-classical lohit-fonts.tamil lohit-fonts.telugu 15641 # lohit-fonts.kashmiri lohit-fonts.konkani lohit-fonts.maithili lohit-fonts.sindhi 15642 lohit-fonts = recurseIntoAttrs ( callPackages ../data/fonts/lohit-fonts { } ); 15643 15644 maia-icon-theme = callPackage ../data/icons/maia-icon-theme { }; 15645 ··· 19677 19678 trayer = callPackage ../applications/window-managers/trayer { }; 19679 19680 tree = callPackage ../tools/system/tree {}; 19681 19682 treesheets = callPackage ../applications/office/treesheets { wxGTK = wxGTK31; }; ··· 23098 zncModules = recurseIntoAttrs ( 23099 callPackage ../applications/networking/znc/modules.nix { } 23100 ); 23101 23102 zsnes = pkgsi686Linux.callPackage ../misc/emulators/zsnes { }; 23103
··· 1379 1380 eschalot = callPackage ../tools/security/eschalot { }; 1381 1382 + esphome = callPackage ../servers/home-assistant/esphome.nix { }; 1383 + 1384 esptool = callPackage ../tools/misc/esptool { }; 1385 1386 esptool-ck = callPackage ../tools/misc/esptool-ck { }; ··· 12100 qtxmlpatterns = qt59.qtxmlpatterns; 12101 }; 12102 12103 + pyotherside = libsForQt5.callPackage ../development/libraries/pyotherside {}; 12104 + 12105 re2 = callPackage ../development/libraries/re2 { }; 12106 12107 qbs = libsForQt5.callPackage ../development/tools/build-managers/qbs { }; ··· 13121 13122 yojimbo = callPackage ../development/libraries/yojimbo { }; 13123 13124 + yubioath-desktop = libsForQt5.callPackage ../applications/misc/yubioath-desktop { }; 13125 13126 yubico-piv-tool = callPackage ../tools/misc/yubico-piv-tool { }; 13127 ··· 15379 15380 adapta-backgrounds = callPackage ../data/misc/adapta-backgrounds { }; 15381 15382 + agave = callPackage ../data/fonts/agave { }; 15383 + 15384 aileron = callPackage ../data/fonts/aileron { }; 15385 15386 andagii = callPackage ../data/fonts/andagii { }; ··· 15388 andika = callPackage ../data/fonts/andika { }; 15389 15390 android-udev-rules = callPackage ../os-specific/linux/android-udev-rules { }; 15391 + 15392 + ankacoder = callPackage ../data/fonts/ankacoder { }; 15393 + ankacoder-condensed = callPackage ../data/fonts/ankacoder/condensed.nix { }; 15394 15395 anonymousPro = callPackage ../data/fonts/anonymous-pro { }; 15396 ··· 15428 15429 charis-sil = callPackage ../data/fonts/charis-sil { }; 15430 15431 + cherry = callPackage ../data/fonts/cherry { }; 15432 + 15433 comfortaa = callPackage ../data/fonts/comfortaa {}; 15434 15435 comic-neue = callPackage ../data/fonts/comic-neue { }; ··· 15576 15577 hanazono = callPackage ../data/fonts/hanazono { }; 15578 15579 + hermit = callPackage ../data/fonts/hermit { }; 15580 + 15581 hyperscrypt-font = callPackage ../data/fonts/hyperscrypt { }; 15582 15583 ia-writer-duospace = callPackage ../data/fonts/ia-writer-duospace { }; ··· 15653 # lohit-fonts.tamil-classical lohit-fonts.tamil lohit-fonts.telugu 15654 # lohit-fonts.kashmiri lohit-fonts.konkani lohit-fonts.maithili lohit-fonts.sindhi 15655 lohit-fonts = recurseIntoAttrs ( callPackages ../data/fonts/lohit-fonts { } ); 15656 + 15657 + luculent = callPackage ../data/fonts/luculent { }; 15658 15659 maia-icon-theme = callPackage ../data/icons/maia-icon-theme { }; 15660 ··· 19692 19693 trayer = callPackage ../applications/window-managers/trayer { }; 19694 19695 + tdrop = callPackage ../applications/misc/tdrop { }; 19696 + 19697 tree = callPackage ../tools/system/tree {}; 19698 19699 treesheets = callPackage ../applications/office/treesheets { wxGTK = wxGTK31; }; ··· 23115 zncModules = recurseIntoAttrs ( 23116 callPackage ../applications/networking/znc/modules.nix { } 23117 ); 23118 + 23119 + zoneminder = callPackage ../servers/zoneminder { }; 23120 23121 zsnes = pkgsi686Linux.callPackage ../misc/emulators/zsnes { }; 23122
+28 -403
pkgs/top-level/perl-packages.nix
··· 64 homepage = http://betterthangrep.com/; 65 license = licenses.artistic2; 66 maintainers = with maintainers; [ lovek323 ]; 67 - platforms = platforms.unix; 68 }; 69 # tests fails on nixos and hydra because of different purity issues 70 doCheck = false; ··· 107 sha256 = "1kqn13wd0lfjrf6h19b9kgdqqwp7k2d9yfq5i0wvii0xi8jqh1lw"; 108 }; 109 propagatedBuildInputs = [ AlgorithmDiff ]; 110 - meta = { 111 - maintainers = with maintainers; [ ]; 112 - platforms = stdenv.lib.platforms.unix; 113 - }; 114 }; 115 116 AlienBuild = buildPerlPackage { ··· 342 homepage = https://github.com/rjbs/App-Cmd; 343 description = "Write command line apps with less suffering"; 344 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 345 - maintainers = with maintainers; [ ]; 346 - platforms = stdenv.lib.platforms.all; 347 }; 348 }; 349 ··· 381 homepage = https://github.com/miyagawa/cpanminus; 382 description = "Get, unpack, build and install modules from CPAN"; 383 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 384 - platforms = stdenv.lib.platforms.all; 385 }; 386 }; 387 ··· 519 description = "Module for manipulations of cpio archives"; 520 # See https://rt.cpan.org/Public/Bug/Display.html?id=43597#txn-569710 521 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 522 - platforms = stdenv.lib.platforms.linux; 523 }; 524 }; 525 ··· 735 736 homepage = http://www.aarontrevena.co.uk/opensource/autodia/; 737 license = stdenv.lib.licenses.gpl2Plus; 738 - 739 - maintainers = [ ]; 740 }; 741 buildInputs = [ DBI ]; 742 }; ··· 804 meta = { 805 description = "Wrap OP check callbacks"; 806 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 807 - maintainers = with maintainers; [ ]; 808 - platforms = stdenv.lib.platforms.unix; 809 }; 810 }; 811 ··· 829 sha256 = "09m96p8c0ipgz42li2ywdgy0vxb57mb5nf59j9gw7yzc3xkslv9w"; 830 }; 831 propagatedBuildInputs = [ CarpClan ]; 832 - meta = { 833 - maintainers = with maintainers; [ ]; 834 - platforms = stdenv.lib.platforms.unix; 835 - }; 836 }; 837 838 BKeywords = buildPerlPackage rec { ··· 989 sha256 = "1aa2mjn5767b13063nnsrwcikrnbspby7j1c5q007bzaq0gcbcri"; 990 }; 991 propagatedBuildInputs = [ StringCRC32 ]; 992 - meta = { 993 - maintainers = with maintainers; [ ]; 994 - platforms = stdenv.lib.platforms.unix; 995 - }; 996 }; 997 998 CacheMemcachedFast = buildPerlPackage { ··· 1004 meta = { 1005 description = "Perl client for B<memcached>, in C language"; 1006 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 1007 - maintainers = with maintainers; [ ]; 1008 - platforms = stdenv.lib.platforms.unix; 1009 }; 1010 }; 1011 ··· 1017 }; 1018 propagatedBuildInputs = [ DBFile FileNFSLock HeapFibonacci IOString TimeDate ]; 1019 doCheck = false; # can time out 1020 - meta = { 1021 - maintainers = with maintainers; [ ]; 1022 - platforms = stdenv.lib.platforms.unix; 1023 - }; 1024 }; 1025 1026 CacheSimpleTimedExpiry = buildPerlPackage { ··· 1088 sha256 = "14j3lk6fhfzda5d3d7z6f373ng3fzxazzwpjyziysrhic1v3b4mq"; 1089 }; 1090 propagatedBuildInputs = [ HTMLTiny LWP ]; 1091 - meta = { 1092 - maintainers = with maintainers; [ ]; 1093 - platforms = stdenv.lib.platforms.unix; 1094 - }; 1095 }; 1096 1097 CaptureTiny = buildPerlPackage rec { ··· 1193 meta = { 1194 description = "HTTP Basic and Digest authentication"; 1195 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 1196 - maintainers = with maintainers; [ ]; 1197 - platforms = stdenv.lib.platforms.unix; 1198 }; 1199 }; 1200 ··· 1218 meta = { 1219 description = "A storage class for Catalyst Authentication using DBIx::Class"; 1220 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 1221 - platforms = stdenv.lib.platforms.linux; 1222 }; 1223 buildInputs = [ TestWarn ]; 1224 }; ··· 1277 homepage = http://dev.catalyst.perl.org/; 1278 description = "Catalyst Development Tools"; 1279 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 1280 - platforms = stdenv.lib.platforms.all; 1281 }; 1282 }; 1283 ··· 1317 meta = { 1318 description = "DBIx::Class::Schema Model Class"; 1319 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 1320 - platforms = stdenv.lib.platforms.linux; 1321 }; 1322 }; 1323 ··· 1333 homepage = http://dev.catalyst.perl.org/; 1334 description = "The Catalyst Framework Runtime"; 1335 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 1336 - platforms = stdenv.lib.platforms.all; 1337 }; 1338 }; 1339 ··· 1385 meta = { 1386 description = "Role based authorization for Catalyst based on Catalyst::Plugin::Authentication"; 1387 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 1388 - platforms = stdenv.lib.platforms.linux; 1389 }; 1390 }; 1391 ··· 1400 meta = { 1401 description = "Flexible caching support for Catalyst"; 1402 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 1403 - maintainers = with maintainers; [ ]; 1404 - platforms = stdenv.lib.platforms.unix; 1405 }; 1406 }; 1407 ··· 1416 meta = { 1417 description = "HTTP/1.1 cache validators for Catalyst"; 1418 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 1419 - maintainers = with maintainers; [ ]; 1420 - platforms = stdenv.lib.platforms.unix; 1421 }; 1422 }; 1423 ··· 1430 propagatedBuildInputs = [ CatalystPluginSession GDSecurityImage ]; 1431 meta = { 1432 description = "Create and validate Captcha for Catalyst"; 1433 - platforms = stdenv.lib.platforms.linux; 1434 }; 1435 }; 1436 ··· 1515 sha256 = "1rvxbfnpf9x2pc2zgpazlcgdlr2dijmxgmcs0m5nazs0w6xikssb"; 1516 }; 1517 propagatedBuildInputs = [ CatalystPluginSession ]; 1518 - meta = { 1519 - platforms = stdenv.lib.platforms.linux; 1520 - }; 1521 }; 1522 1523 CatalystPluginSessionStoreFastMmap = buildPerlPackage rec { ··· 1527 sha256 = "0x3j6zv3wr41jlwr6yb2jpmcx019ibyn11y8653ffnwhpzbpzsxs"; 1528 }; 1529 propagatedBuildInputs = [ CacheFastMmap CatalystPluginSession ]; 1530 - meta = { 1531 - platforms = stdenv.lib.platforms.linux; 1532 - }; 1533 }; 1534 1535 CatalystPluginSessionStoreFile = buildPerlPackage rec { ··· 1555 meta = { 1556 description = "Display a stack trace on the debug screen"; 1557 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 1558 - platforms = stdenv.lib.platforms.linux; 1559 }; 1560 }; 1561 ··· 1609 buildInputs = [ CatalystRuntime TestLongString TestSimple13 TestWWWMechanize TestWWWMechanizeCatalyst TextCSV XMLSimple ]; 1610 meta = { 1611 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 1612 - platforms = stdenv.lib.platforms.linux; 1613 }; 1614 }; 1615 ··· 1624 meta = { 1625 description = "JSON view for your data"; 1626 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 1627 - platforms = stdenv.lib.platforms.linux; 1628 }; 1629 }; 1630 ··· 1638 meta = { 1639 description = "Template View Class"; 1640 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 1641 - platforms = stdenv.lib.platforms.linux; 1642 }; 1643 }; 1644 ··· 1671 meta = { 1672 description = "Replace request base with value passed by HTTP proxy"; 1673 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 1674 - platforms = stdenv.lib.platforms.linux; 1675 }; 1676 }; 1677 ··· 1690 meta = { 1691 description = "Replace the development server with Starman"; 1692 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 1693 - platforms = stdenv.lib.platforms.linux; 1694 }; 1695 }; 1696 ··· 1703 meta = { 1704 description = "Get the CDDB info for an audio cd"; 1705 license = stdenv.lib.licenses.artistic1; 1706 - platforms = stdenv.lib.platforms.linux; 1707 maintainers = [ maintainers.endgame ]; 1708 }; 1709 }; ··· 1768 }; 1769 meta = { 1770 description = "Convert flat hash to nested data using TT2's dot convention"; 1771 - maintainers = with maintainers; [ ]; 1772 - platforms = stdenv.lib.platforms.unix; 1773 }; 1774 buildInputs = [ TestException ]; 1775 }; ··· 2645 sha256 = "1s8gxfg4xqp543aqanv5lbp64vqqyw6ic4x3fm4imkk1h3amjb6d"; 2646 }; 2647 propagatedBuildInputs = [ SymbolUtil ]; 2648 - meta = { 2649 - maintainers = with maintainers; [ ]; 2650 - platforms = stdenv.lib.platforms.unix; 2651 - }; 2652 }; 2653 2654 curry = buildPerlPackage rec { ··· 2963 meta = { 2964 description = "Get weak or strong random data from pluggable sources"; 2965 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 2966 - maintainers = with maintainers; [ ]; 2967 - platforms = stdenv.lib.platforms.unix; 2968 }; 2969 }; 2970 ··· 3028 meta = with stdenv.lib; { 3029 description = "Perl wrapper around OpenSSL's AES library"; 3030 license = with licenses; [ artistic1 gpl1Plus ]; 3031 - platforms = platforms.unix; 3032 }; 3033 }; 3034 ··· 3137 propagatedBuildInputs = [ URI ]; 3138 meta = { 3139 description = "Compact many CSS files into one big file"; 3140 - license = "unknown"; 3141 }; 3142 }; 3143 ··· 3204 meta = { 3205 description = "Polymorphic data cloning"; 3206 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 3207 - maintainers = with maintainers; [ ]; 3208 - platforms = stdenv.lib.platforms.unix; 3209 }; 3210 }; 3211 ··· 3307 }; 3308 meta = { 3309 description = "Hexadecimal Dumper"; 3310 - maintainers = with stdenv.lib.maintainers; [ AndersonTorres ]; 3311 }; 3312 }; 3313 ··· 3515 meta = { 3516 description = "Fast random UUID generator using the Mersenne Twister algorithm"; 3517 license = stdenv.lib.licenses.asl20; 3518 - maintainers = with maintainers; [ ]; 3519 - platforms = stdenv.lib.platforms.unix; 3520 }; 3521 }; 3522 ··· 3579 }; 3580 propagatedBuildInputs = [ BitVector ]; 3581 doCheck = false; # some of the checks rely on the year being <2015 3582 - meta = { 3583 - maintainers = with maintainers; [ ]; 3584 - platforms = stdenv.lib.platforms.unix; 3585 - }; 3586 }; 3587 3588 DateExtract = buildPerlPackage { ··· 3748 meta = { 3749 description = "Parses ISO8601 formats"; 3750 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 3751 - maintainers = with maintainers; [ ]; 3752 - platforms = stdenv.lib.platforms.unix; 3753 }; 3754 }; 3755 ··· 3803 meta = { 3804 description = "Parse and format PostgreSQL dates and times"; 3805 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 3806 - maintainers = with maintainers; [ ]; 3807 - platforms = stdenv.lib.platforms.unix; 3808 }; 3809 buildInputs = [ ModuleBuildTiny ]; 3810 }; ··· 4083 homepage = http://dbi.perl.org/; 4084 description = "Database independent interface for Perl"; 4085 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 4086 - platforms = stdenv.lib.platforms.all; 4087 }; 4088 }; 4089 ··· 4193 meta = { 4194 description = "Fast, safe DBI connection and transaction management"; 4195 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 4196 - maintainers = with maintainers; [ ]; 4197 - platforms = stdenv.lib.platforms.all; 4198 }; 4199 }; 4200 ··· 4205 sha256 = "7a2a978fb6d9feaa3e4b109c71c963b26a008a2d130c5876ecf24c5a72338a1d"; 4206 }; 4207 propagatedBuildInputs = [ DBI ]; 4208 - meta = { 4209 - description = "Unknown"; 4210 - license = "unknown"; 4211 - }; 4212 }; 4213 4214 DBIxHTMLViewLATEST = buildPerlPackage { ··· 4243 propagatedBuildInputs = [ DBI ]; 4244 meta = { 4245 description = "Very complete easy-to-use OO interface to DBI"; 4246 - maintainers = with maintainers; [ ]; 4247 - platforms = stdenv.lib.platforms.unix; 4248 }; 4249 }; 4250 ··· 4267 }; 4268 meta = { 4269 description = "Find memory cycles in objects"; 4270 - maintainers = with maintainers; [ ]; 4271 - platforms = stdenv.lib.platforms.unix; 4272 }; 4273 }; 4274 ··· 4366 sha256 = "01yrsdpn9ns9iwwc92bhjn2605b7ys7i3198gjb935lsllzgzw5f"; 4367 }; 4368 propagatedBuildInputs = [ ClassTiny SubExporter namespaceclean ]; 4369 - meta = { 4370 - maintainers = with maintainers; [ ]; 4371 - platforms = stdenv.lib.platforms.unix; 4372 - }; 4373 buildInputs = [ TestSimple13 TestWarnings ]; 4374 }; 4375 ··· 4463 propagatedBuildInputs = [ LWP ]; 4464 meta = { 4465 description = "Perl extension for getting MD5 sums for files and urls"; 4466 - maintainers = with maintainers; [ ]; 4467 - platforms = stdenv.lib.platforms.unix; 4468 }; 4469 }; 4470 ··· 4926 meta = { 4927 description = "Generate world unique message-ids"; 4928 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 4929 - maintainers = with maintainers; [ ]; 4930 - platforms = stdenv.lib.platforms.unix; 4931 }; 4932 }; 4933 ··· 5190 url = mirror://cpan/authors/id/D/DS/DSB/Env-Path-0.19.tar.gz; 5191 sha256 = "1qhmj15a66h90pjl2dgnxsb9jj3b1r5mpvnr87cafcl8g69z0jr4"; 5192 }; 5193 - meta = { 5194 - maintainers = with maintainers; [ ]; 5195 - platforms = stdenv.lib.platforms.unix; 5196 - }; 5197 }; 5198 5199 Error = buildPerlModule rec { ··· 5240 meta = { 5241 description = "Lightweight exceptions"; 5242 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 5243 - maintainers = with maintainers; [ ]; 5244 }; 5245 }; 5246 ··· 5261 }; 5262 buildInputs = [ TestAssert TestUnitLite ]; 5263 propagatedBuildInputs = [ ExceptionBase constantboolean ]; 5264 - meta = { 5265 - maintainers = with maintainers; [ ]; 5266 - platforms = stdenv.lib.platforms.unix; 5267 - }; 5268 }; 5269 5270 ExceptionWarning = buildPerlModule { ··· 5275 }; 5276 buildInputs = [ TestAssert TestUnitLite ]; 5277 propagatedBuildInputs = [ ExceptionBase ]; 5278 - meta = { 5279 - maintainers = with maintainers; [ ]; 5280 - platforms = stdenv.lib.platforms.unix; 5281 - }; 5282 }; 5283 5284 ExporterDeclare = buildPerlModule { ··· 5293 homepage = http://open-exodus.net/projects/Exporter-Declare; 5294 description = "Exporting done right"; 5295 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 5296 - maintainers = with maintainers; [ ]; 5297 - platforms = stdenv.lib.platforms.unix; 5298 }; 5299 }; 5300 ··· 5386 }; 5387 meta = { 5388 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 5389 - maintainers = with maintainers; [ ]; 5390 - platforms = stdenv.lib.platforms.unix; 5391 }; 5392 }; 5393 ··· 5541 }; 5542 buildInputs = [ ExceptionWarning TestAssert TestUnitLite ]; 5543 propagatedBuildInputs = [ ExceptionDied ]; 5544 - meta = { 5545 - maintainers = with maintainers; [ ]; 5546 - platforms = stdenv.lib.platforms.unix; 5547 - }; 5548 }; 5549 5550 FCGI = buildPerlPackage rec { ··· 5577 }; 5578 meta = { 5579 description = "A perl-based FastCGI process manager"; 5580 - license = "unknown"; 5581 }; 5582 }; 5583 ··· 5604 homepage = http://open-exodus.net/projects/Fennec-Lite; 5605 description = "Minimalist Fennec, the commonly used bits"; 5606 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 5607 - maintainers = with maintainers; [ ]; 5608 - platforms = stdenv.lib.platforms.unix; 5609 }; 5610 }; 5611 ··· 5918 url = mirror://cpan/authors/id/B/BB/BBB/File-NFSLock-1.29.tar.gz; 5919 sha256 = "0dzssj15faz9cn1w3xi7jwm64gyjyazapv4bkgglw5l1njcibm31"; 5920 }; 5921 - meta = { 5922 - maintainers = with maintainers; [ ]; 5923 - platforms = stdenv.lib.platforms.unix; 5924 - }; 5925 }; 5926 5927 FilePath = buildPerlPackage rec { ··· 5959 meta = { 5960 description = "Change directory temporarily for a limited scope"; 5961 license = stdenv.lib.licenses.asl20; 5962 - maintainers = with maintainers; [ ]; 5963 - platforms = stdenv.lib.platforms.unix; 5964 }; 5965 }; 5966 ··· 5995 homepage = https://github.com/ingydotnet/file-share-pm/tree; 5996 description = "Extend File::ShareDir to Local Libraries"; 5997 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 5998 - maintainers = with maintainers; [ ]; 5999 - platforms = stdenv.lib.platforms.unix; 6000 }; 6001 }; 6002 ··· 6023 meta = { 6024 description = "Install shared files"; 6025 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 6026 - maintainers = with maintainers; [ ]; 6027 - platforms = stdenv.lib.platforms.unix; 6028 }; 6029 }; 6030 ··· 6065 meta = { 6066 description = "Simple and Efficient Reading/Writing/Modifying of Complete Files"; 6067 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 6068 - platforms = with stdenv.lib.platforms; linux ++ darwin; 6069 }; 6070 }; 6071 ··· 6143 meta = { 6144 description = "File::Type uses magic numbers (typically at the start of a file) to determine the MIME type of that file."; 6145 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 6146 - platforms = with stdenv.lib.platforms; linux ++ darwin; 6147 }; 6148 }; 6149 ··· 6243 meta = { 6244 description = "Extensions and convenience methods to manage background processes"; 6245 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 6246 - platforms = stdenv.lib.platforms.linux; 6247 }; 6248 propagatedBuildInputs = [ URI ]; 6249 }; ··· 6498 sha256 = "af53f2d3f63297e046676eae14a76296afdd2910e09723b6b113708622b7989b"; 6499 }; 6500 buildInputs = [ pkgs.gnupg1orig ]; 6501 - meta = { 6502 - platforms = stdenv.lib.platforms.linux; 6503 - maintainers = with maintainers; [ ]; 6504 - }; 6505 }; 6506 6507 GnuPGInterface = buildPerlPackage rec { ··· 6582 meta = with stdenv.lib; { 6583 description = "Perl interface to the GraphViz graphing tool"; 6584 license = licenses.artistic2; 6585 - maintainers = [ ]; 6586 }; 6587 }; 6588 ··· 6639 homepage = http://gtk2-perl.sourceforge.net/; 6640 description = "Perl interface to the 2.x series of the Gimp Toolkit library"; 6641 license = stdenv.lib.licenses.lgpl21Plus; 6642 - platforms = stdenv.lib.platforms.linux; 6643 }; 6644 }; 6645 ··· 6721 url = "mirror://cpan/authors/id/M/ML/MLEHMANN/${name}.tar.gz"; 6722 sha256 = "34c4ddf91fc93d1090d86da14df706d175b1610c67372c01e12ce9555d4dd1dc"; 6723 }; 6724 - meta = { 6725 - maintainers = with maintainers; [ ]; 6726 - platforms = stdenv.lib.platforms.unix; 6727 - }; 6728 }; 6729 6730 HashDiff = buildPerlPackage rec { ··· 6809 url = mirror://cpan/authors/id/E/ET/ETHER/Hash-Util-FieldHash-Compat-0.11.tar.gz; 6810 sha256 = "06vlygjyk7rkkw0di3252mma141w801qn3xk40aa2yskbfklcbk4"; 6811 }; 6812 - meta = { 6813 - maintainers = with maintainers; [ ]; 6814 - platforms = stdenv.lib.platforms.unix; 6815 - }; 6816 }; 6817 6818 HeapFibonacci = buildPerlPackage { ··· 6820 src = fetchurl { 6821 url = mirror://cpan/authors/id/J/JM/JMM/Heap-0.80.tar.gz; 6822 sha256 = "1plv2djbyhvkdcw2ic54rdqb745cwksxckgzvw7ssxiir7rjknnc"; 6823 - }; 6824 - meta = { 6825 - maintainers = with maintainers; [ ]; 6826 - platforms = stdenv.lib.platforms.unix; 6827 }; 6828 }; 6829 ··· 6980 propagatedBuildInputs = [ CryptBlowfish CryptCBC DataClone DateTimeFormatStrptime EmailValid HTMLTree JSONMaybeXS MooseXGetopt MooseXTypesCommon MooseXTypesLoadableClass aliased ]; 6981 meta = { 6982 description = "HTML forms using Moose"; 6983 - maintainers = with maintainers; [ ]; 6984 - platforms = stdenv.lib.platforms.unix; 6985 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 6986 }; 6987 }; ··· 7072 sha256 = "1qbad8ayffpx7wj76ip05p6rh9p1lkir6qknpl76zy679ghlsp8s"; 7073 }; 7074 buildInputs = [ TestBase ]; 7075 - meta = { 7076 - maintainers = with maintainers; [ ]; 7077 - platforms = stdenv.lib.platforms.unix; 7078 - }; 7079 }; 7080 7081 HTMLScrubber = buildPerlPackage rec { ··· 7174 meta = { 7175 description = "Add XPath support to HTML::TreeBuilder"; 7176 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 7177 - maintainers = with maintainers; [ ]; 7178 - platforms = stdenv.lib.platforms.unix; 7179 }; 7180 }; 7181 ··· 7564 homepage = https://github.com/ingydotnet/io-all-pm/tree; 7565 description = "IO::All of it to Graham and Damian!"; 7566 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 7567 - maintainers = with maintainers; [ ]; 7568 - platforms = stdenv.lib.platforms.unix; 7569 }; 7570 }; 7571 ··· 7603 meta = { 7604 description = "IO Interface to compressed data files/buffers"; 7605 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 7606 - platforms = stdenv.lib.platforms.linux; 7607 }; 7608 # Same as CompressRawZlib 7609 doCheck = false && !stdenv.isDarwin; ··· 7783 homepage = https://github.com/rjbs/io-tiecombine; 7784 description = "Produce tied (and other) separate but combined variables"; 7785 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 7786 - maintainers = with maintainers; [ ]; 7787 - platforms = stdenv.lib.platforms.unix; 7788 }; 7789 }; 7790 ··· 7832 meta = { 7833 description = "System() and background procs w/ piping, redirs, ptys (Unix, Win32)"; 7834 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 7835 - platforms = stdenv.lib.platforms.linux ++ stdenv.lib.platforms.darwin; 7836 }; 7837 propagatedBuildInputs = [ IOTty ]; 7838 buildInputs = [ Readonly ]; ··· 7906 license = with licenses; [ gpl1Plus /* or */ artistic2 ]; 7907 7908 maintainers = [ maintainers.kiloreux ]; 7909 - platforms = platforms.unix; 7910 }; 7911 }; 7912 ··· 7977 ''; 7978 7979 license = stdenv.lib.licenses.artistic2; 7980 - 7981 - maintainers = [ ]; 7982 }; 7983 }; 7984 ··· 8103 sha256 = "0118yrzagwlcfj5yldn3h23zzqs2rx282jlm068nf7fjlvy4m7s7"; 8104 }; 8105 propagatedBuildInputs = [ TypesSerialiser ]; 8106 - meta = { 8107 - platforms = stdenv.lib.platforms.linux ++ stdenv.lib.platforms.darwin; 8108 - }; 8109 buildInputs = [ CanaryStability ]; 8110 }; 8111 ··· 8166 url = mirror://cpan/authors/id/G/GU/GUIDO/libintl-perl-1.31.tar.gz; 8167 sha256 = "1afandrl44mq9c32r57xr489gkfswdgc97h8x86k98dz1byv3l6a"; 8168 }; 8169 - meta = { 8170 - maintainers = with maintainers; [ ]; 8171 - platforms = stdenv.lib.platforms.unix; 8172 - }; 8173 }; 8174 8175 libnet = buildPerlPackage { ··· 8295 }; 8296 meta = { 8297 description = "Convert English text to numbers"; 8298 - license = "unknown"; 8299 }; 8300 }; 8301 ··· 8436 meta = { 8437 description = "Combines List::Util and List::MoreUtils in one bite-sized package"; 8438 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 8439 - maintainers = with maintainers; [ ]; 8440 - platforms = stdenv.lib.platforms.unix; 8441 }; 8442 }; 8443 ··· 8512 url = mirror://cpan/authors/id/P/PE/PEVANS/List-UtilsBy-0.11.tar.gz; 8513 sha256 = "0nkpylkqccxanr8wc7j9wg6jdrizybjjd6p8q3jbh7f29cxz9pgs"; 8514 }; 8515 - meta = { 8516 - maintainers = with maintainers; [ ]; 8517 - platforms = stdenv.lib.platforms.unix; 8518 - }; 8519 }; 8520 8521 LocaleCodes = buildPerlPackage { ··· 8599 propagatedBuildInputs = [ FileSlurp ]; 8600 meta = { 8601 description = "Perl module for manipulating .po entries from GNU gettext"; 8602 - license = "unknown"; 8603 - platforms = stdenv.lib.platforms.linux; 8604 - maintainers = with maintainers; [ ]; 8605 }; 8606 }; 8607 ··· 8736 meta = { 8737 description = "Dispatches messages to one or more outputs"; 8738 license = stdenv.lib.licenses.artistic2; 8739 - maintainers = with maintainers; [ ]; 8740 - platforms = stdenv.lib.platforms.unix; 8741 }; 8742 buildInputs = [ IPCRun3 TestFatal TestNeeds ]; 8743 }; ··· 8871 meta = with stdenv.lib; { 8872 description = "The World-Wide Web library for Perl"; 8873 license = with licenses; [ artistic1 gpl1Plus ]; 8874 - platforms = platforms.unix ++ platforms.windows; 8875 }; 8876 buildInputs = [ TestFatal TestNeeds TestRequiresInternet ]; 8877 }; ··· 8927 meta = { 8928 description = "Provide https support for LWP::UserAgent"; 8929 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 8930 - platforms = with stdenv.lib.platforms; linux ++ darwin; 8931 }; 8932 buildInputs = [ TestRequiresInternet ]; 8933 }; ··· 8954 propagatedBuildInputs = [ LWP ]; 8955 meta = { 8956 description = "A virtual browser that retries errors"; 8957 - license = "unknown"; 8958 }; 8959 }; 8960 ··· 8965 sha256 = "0923ahl22c0gdzrihj7dqnrawia9hmcl462asf4ry8d5wd84z1i5"; 8966 }; 8967 propagatedBuildInputs = [ HookLexWrap LWP SafeIsa ]; 8968 - meta = { 8969 - maintainers = with maintainers; [ ]; 8970 - platforms = stdenv.lib.platforms.unix; 8971 - }; 8972 # Tests require network connectivity 8973 # https://rt.cpan.org/Public/Bug/Display.html?id=63966 is the bug upstream, 8974 # which doesn't look like it will get fixed anytime soon. ··· 9305 meta = { 9306 description = "Perl interface to the ISAAC PRNG algorithm"; 9307 license = with stdenv.lib.licenses; [ publicDomain mit artistic2 gpl3 ]; 9308 - maintainers = with maintainers; [ ]; 9309 - platforms = stdenv.lib.platforms.unix; 9310 }; 9311 }; 9312 ··· 9320 meta = { 9321 description = "Auto-seeded Mersenne Twister PRNGs"; 9322 license = "unrestricted"; 9323 - maintainers = with maintainers; [ ]; 9324 - platforms = stdenv.lib.platforms.unix; 9325 }; 9326 }; 9327 ··· 9336 meta = { 9337 description = "Cryptographically-secure, cross-platform replacement for rand()"; 9338 license = stdenv.lib.licenses.artistic2; 9339 - maintainers = with maintainers; [ ]; 9340 - platforms = stdenv.lib.platforms.unix; 9341 }; 9342 }; 9343 ··· 9388 meta = { 9389 description = "Tools for creating Meta objects to track custom metrics"; 9390 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 9391 - maintainers = with maintainers; [ ]; 9392 - platforms = stdenv.lib.platforms.unix; 9393 }; 9394 }; 9395 ··· 9403 meta = { 9404 description = "Basic method declarations with signatures, without source filters"; 9405 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 9406 - maintainers = with maintainers; [ ]; 9407 - platforms = stdenv.lib.platforms.unix; 9408 }; 9409 }; 9410 ··· 9424 description = "A mail-to-HTML converter"; 9425 maintainers = with maintainers; [ lovek323 ]; 9426 license = licenses.gpl2; 9427 - platforms = platforms.unix; 9428 }; 9429 }; 9430 ··· 9768 meta = { 9769 description = "Declare author-only dependencies"; 9770 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 9771 - maintainers = with maintainers; [ ]; 9772 - platforms = stdenv.lib.platforms.unix; 9773 }; 9774 }; 9775 ··· 9783 meta = { 9784 description = "Designate tests only run by module authors"; 9785 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 9786 - maintainers = with maintainers; [ ]; 9787 - platforms = stdenv.lib.platforms.unix; 9788 }; 9789 }; 9790 ··· 9927 sha256 = "0g7qs6vqg91xpwg1cdy91m3kh9m1zbkzyz1qsy453b572xdscf0d"; 9928 }; 9929 buildInputs = [ pkgs.unzip ]; 9930 - meta = { 9931 - maintainers = with maintainers; [ ]; 9932 - platforms = stdenv.lib.platforms.unix; 9933 - }; 9934 }; 9935 9936 ModuleVersionsReport = buildPerlPackage { ··· 10060 description = "A postmodern object system for Perl 5"; 10061 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 10062 maintainers = [ maintainers.eelco ]; 10063 - platforms = stdenv.lib.platforms.unix; 10064 }; 10065 }; 10066 ··· 10195 meta = { 10196 description = "Abstract base classes for Moose"; 10197 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 10198 - maintainers = with maintainers; [ ]; 10199 - platforms = stdenv.lib.platforms.unix; 10200 }; 10201 }; 10202 ··· 10222 homepage = https://github.com/moose/MooseX-App-Cmd; 10223 description = "Mashes up MooseX::Getopt and App::Cmd"; 10224 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 10225 - maintainers = with maintainers; [ ]; 10226 - platforms = stdenv.lib.platforms.all; 10227 }; 10228 }; 10229 ··· 10372 meta = { 10373 description = "Extend your attribute interfaces (deprecated)"; 10374 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 10375 - maintainers = with maintainers; [ ]; 10376 - platforms = stdenv.lib.platforms.unix; 10377 }; 10378 }; 10379 ··· 10384 sha256 = "19wd74dihybnz1lbbsqn0clwxzb6y0aa0i25a8zhajz7p5fq5myb"; 10385 }; 10386 propagatedBuildInputs = [ DataVisitor HashUtilFieldHashCompat namespaceautoclean ]; 10387 - meta = { 10388 - maintainers = with maintainers; [ ]; 10389 - platforms = stdenv.lib.platforms.unix; 10390 - }; 10391 buildInputs = [ ModuleBuildTiny ]; 10392 }; 10393 ··· 10403 homepage = https://github.com/moose/MooseX-ConfigFromFile; 10404 description = "An abstract Moose role for setting attributes from a configfile"; 10405 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 10406 - platforms = stdenv.lib.platforms.all; 10407 }; 10408 }; 10409 ··· 10463 homepage = https://github.com/pshangov/moosex-has-options; 10464 description = "Succinct options for Moose"; 10465 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 10466 - maintainers = with maintainers; [ ]; 10467 - platforms = stdenv.lib.platforms.unix; 10468 }; 10469 }; 10470 ··· 10617 homepage = https://github.com/moose/MooseX-Runnable; 10618 description = "Tag a class as a runnable application"; 10619 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 10620 - maintainers = with maintainers; [ ]; 10621 - platforms = stdenv.lib.platforms.all; 10622 }; 10623 }; 10624 ··· 10648 sha256 = "0hb5s1chsgbx2nlb0f112mdh2v1zwww8f4i3gvfvcghx3grv5135"; 10649 }; 10650 buildInputs = [ ModuleBuildTiny TestFatal TestRequires TestWarnings ]; 10651 - meta = { 10652 - maintainers = with maintainers; [ ]; 10653 - platforms = stdenv.lib.platforms.unix; 10654 - }; 10655 propagatedBuildInputs = [ Moose ]; 10656 }; 10657 ··· 10763 buildInputs = [ ModuleBuildTiny TestFatal ]; 10764 propagatedBuildInputs = [ MooseXTypes ]; 10765 meta = { 10766 - maintainers = with maintainers; [ ]; 10767 - platforms = stdenv.lib.platforms.unix; 10768 homepage = https://github.com/moose/MooseX-Types-LoadableClass; 10769 description = "ClassName type constraint with coercion to load the class"; 10770 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; ··· 10797 homepage = https://github.com/karenetheridge/moosex-types-path-tiny; 10798 description = "Path::Tiny types and coercions for Moose"; 10799 license = stdenv.lib.licenses.asl20; 10800 - maintainers = with maintainers; [ ]; 10801 - platforms = stdenv.lib.platforms.unix; 10802 }; 10803 }; 10804 ··· 10826 homepage = https://github.com/dagolden/moosex-types-stringlike; 10827 description = "Moose type constraints for strings or string-like objects"; 10828 license = stdenv.lib.licenses.asl20; 10829 - maintainers = with maintainers; [ ]; 10830 - platforms = stdenv.lib.platforms.unix; 10831 }; 10832 }; 10833 ··· 10842 meta = { 10843 description = "MooseX::Types::Structured - Structured Type Constraints for Moose"; 10844 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 10845 - maintainers = with maintainers; [ ]; 10846 - platforms = stdenv.lib.platforms.unix; 10847 }; 10848 }; 10849 ··· 10859 homepage = https://github.com/moose/MooseX-Types-URI; 10860 description = "URI related types and coercions for Moose"; 10861 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 10862 - maintainers = with maintainers; [ ]; 10863 - platforms = stdenv.lib.platforms.all; 10864 }; 10865 }; 10866 ··· 11015 propagatedBuildInputs = [ URI ]; 11016 meta = { 11017 description = "Perl extension to create signatures for AWS requests"; 11018 - maintainers = with maintainers; [ ]; 11019 - platforms = stdenv.lib.platforms.unix; 11020 }; 11021 }; 11022 ··· 11078 meta = { 11079 description = "Manage Amazon S3 policies for HTTP POST forms"; 11080 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 11081 - maintainers = with maintainers; [ ]; 11082 - platforms = stdenv.lib.platforms.unix; 11083 }; 11084 }; 11085 ··· 11095 meta = { 11096 description = "Advanced Message Queue Protocol (de)serialization and representation"; 11097 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 11098 - maintainers = with maintainers; [ ]; 11099 - platforms = stdenv.lib.platforms.unix; 11100 }; 11101 }; 11102 ··· 11109 meta = { 11110 description = "Manipulate IPv4/IPv6 netblocks in CIDR notation"; 11111 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 11112 - platforms = stdenv.lib.platforms.unix; 11113 maintainers = [ maintainers.bjornfor ]; 11114 }; 11115 }; ··· 11122 }; 11123 meta = { 11124 description = "Perl extension for merging IPv4 or IPv6 CIDR addresses"; 11125 - license = "unknown"; 11126 }; 11127 }; 11128 ··· 11138 homepage = https://github.com/metabrainz/CoverArtArchive; 11139 description = "Query the coverartarchive.org"; 11140 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 11141 - maintainers = with maintainers; [ ]; 11142 - platforms = stdenv.lib.platforms.unix; 11143 }; 11144 }; 11145 ··· 11283 sha256 = "70835a926e1c5a8d0324c72fffee82eeb7ec6c141dee04fd446820b64f71c552"; 11284 }; 11285 propagatedBuildInputs = [ NetCIDRLite Socket6 ]; 11286 - meta = { 11287 - license = "unknown"; 11288 - }; 11289 }; 11290 11291 NetPing = buildPerlPackage { ··· 11497 }; 11498 }; 11499 11500 NumberCompare = buildPerlPackage rec { 11501 name = "Number-Compare-0.03"; 11502 src = fetchurl { ··· 11578 meta = { 11579 description = "Comprehensive inside-out object support module"; 11580 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 11581 - maintainers = with maintainers; [ ]; 11582 - platforms = stdenv.lib.platforms.unix; 11583 }; 11584 }; 11585 ··· 11997 meta = { 11998 description = "File path utility"; 11999 license = stdenv.lib.licenses.asl20; 12000 - maintainers = with maintainers; [ ]; 12001 - platforms = stdenv.lib.platforms.unix; 12002 }; 12003 preConfigure = 12004 '' ··· 12037 description = "Communicate with a smart card using PC/SC"; 12038 license = stdenv.lib.licenses.gpl2Plus; 12039 maintainers = with maintainers; [ abbradar ]; 12040 - platforms = stdenv.lib.platforms.linux; 12041 }; 12042 }; 12043 ··· 12083 description = ''Collection of advanced command-line tools to perform a variety of MySQL and system tasks.''; 12084 homepage = http://www.percona.com/software/percona-toolkit; 12085 license = with stdenv.lib.licenses; [ gpl2 ]; 12086 - platforms = stdenv.lib.platforms.linux; 12087 - maintainers = with stdenv.lib.maintainers; [ izorkin ]; 12088 }; 12089 }; 12090 ··· 12231 }; 12232 meta = { 12233 description = "Simple flexible means of converting the output of PHP's serialize() into the equivalent Perl memory structure, and vice versa"; 12234 - license = "unknown"; 12235 }; 12236 }; 12237 ··· 13094 homepage = https://github.com/PerlRedis/perl-redis; 13095 description = "Perl binding for Redis database"; 13096 license = stdenv.lib.licenses.artistic2; 13097 - platforms = stdenv.lib.platforms.unix; 13098 }; 13099 }; 13100 ··· 13159 src = fetchurl { 13160 url = mirror://cpan/authors/id/S/SA/SALVA/Regexp-IPv6-0.03.tar.gz; 13161 sha256 = "d542d17d75ce93631de8ba2156da0e0b58a755c409cd4a0d27a3873a26712ce2"; 13162 - }; 13163 - meta = { 13164 - license = "unknown"; 13165 }; 13166 }; 13167 ··· 13202 homepage = http://jaldhar.github.com/REST-Utils; 13203 description = "Utility functions for REST applications"; 13204 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 13205 - maintainers = with maintainers; [ ]; 13206 - platforms = stdenv.lib.platforms.unix; 13207 }; 13208 }; 13209 ··· 13282 sha256 = "1fcmp4qp7q3xr2mw7clqqwph45icbvgfs2n41gp9zamim2y39p49"; 13283 }; 13284 propagatedBuildInputs = [ locallib ]; 13285 - meta = { 13286 - maintainers = with maintainers; [ ]; 13287 - platforms = stdenv.lib.platforms.unix; 13288 - }; 13289 doCheck = false; /* creates files in HOME */ 13290 }; 13291 ··· 13472 }; 13473 meta = { 13474 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 13475 - maintainers = with maintainers; [ ]; 13476 - platforms = stdenv.lib.platforms.unix; 13477 }; 13478 }; 13479 ··· 13532 meta = { 13533 description = "Perl's Web Services Toolkit"; 13534 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 13535 - maintainers = with maintainers; [ ]; 13536 - platforms = stdenv.lib.platforms.unix; 13537 }; 13538 buildInputs = [ TestWarn XMLParserLite ]; 13539 }; ··· 13698 }; 13699 buildInputs = [ TestException ]; 13700 propagatedBuildInputs = [ ClassAccessor ListMoreUtils RegexpCommon SQLTokenizer ]; 13701 - meta = { 13702 - platforms = stdenv.lib.platforms.linux; 13703 - }; 13704 }; 13705 13706 SQLTokenizer = buildPerlPackage rec { ··· 13722 meta = { 13723 description = "SQL DDL transformations and more"; 13724 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 13725 - platforms = stdenv.lib.platforms.linux; 13726 }; 13727 }; 13728 ··· 13788 propagatedBuildInputs = [ NumberFormat ]; 13789 meta = { 13790 license = "open_source"; 13791 - maintainers = with maintainers; [ ]; 13792 - platforms = stdenv.lib.platforms.unix; 13793 }; 13794 }; 13795 ··· 13889 }; 13890 13891 StringCRC32 = buildPerlPackage rec { 13892 - name = "String-CRC32-1.7"; 13893 - src = fetchurl { 13894 - url = mirror://cpan/authors/id/L/LE/LEEJO/String-CRC32-1.7.tar.gz; 13895 - sha256 = "1j1bwbxcgxfbgw708rfrni3spwnnmnf717vq9s64nd63jmc4w5lg"; 13896 - }; 13897 - meta = { 13898 - maintainers = with maintainers; [ ]; 13899 - platforms = stdenv.lib.platforms.unix; 13900 - }; 13901 }; 13902 13903 StringErrf = buildPerlPackage { ··· 13920 url = mirror://cpan/authors/id/E/EV/EVO/String-Escape-2010.002.tar.gz; 13921 sha256 = "12ls7f7847i4qcikkp3skwraqvjphjiv2zxfhl5d49326f5myr7x"; 13922 }; 13923 - meta = { 13924 - maintainers = with maintainers; [ ]; 13925 - platforms = stdenv.lib.platforms.unix; 13926 - }; 13927 }; 13928 13929 StringFlogger = buildPerlPackage rec { ··· 13989 sha256 = "0dfxhr6hxc2majkkrm0qbx3qcbykzpphbj2ms93dc86f7183c1p6"; 13990 }; 13991 meta = { 13992 - maintainers = with maintainers; [ ]; 13993 - platforms = stdenv.lib.platforms.unix; 13994 - 13995 # http://cpansearch.perl.org/src/ROSCH/String-ShellQuote-1.04/README 13996 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 13997 }; ··· 14038 meta = { 14039 description = "Use TT to interpolate lexical variables"; 14040 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 14041 - maintainers = with maintainers; [ ]; 14042 - platforms = stdenv.lib.platforms.unix; 14043 }; 14044 }; 14045 ··· 14086 meta = with stdenv.lib; { 14087 description = "A Perl module for stripping bits of non-deterministic information"; 14088 license = licenses.gpl3; 14089 - platforms = platforms.all; 14090 maintainers = with maintainers; [ pSub ]; 14091 }; 14092 }; ··· 14282 src = fetchurl { 14283 url = mirror://cpan/authors/id/D/DE/DEXTER/Symbol-Util-0.0203.tar.gz; 14284 sha256 = "0cnwwrd5d6i80f33s7n2ak90rh4s53ss7q57wndrpkpr4bfn3djm"; 14285 - }; 14286 - meta = { 14287 - maintainers = with maintainers; [ ]; 14288 - platforms = stdenv.lib.platforms.unix; 14289 }; 14290 }; 14291 ··· 14318 }; 14319 }; 14320 14321 SysMemInfo = buildPerlPackage rec { 14322 name = "Sys-MemInfo-0.99"; 14323 src = fetchurl { ··· 14347 sha256 = "1jv5n8jv48c1p8svjsigyxndv1ygsq8wgwj9c7ypx1vaf3rns679"; 14348 }; 14349 doCheck = false; # no `hostname' in stdenv 14350 - meta = { 14351 - platforms = stdenv.lib.platforms.linux; 14352 - }; 14353 }; 14354 14355 SysSigAction = buildPerlPackage { ··· 14386 }; 14387 nativeBuildInputs = [ pkgs.pkgconfig ]; 14388 buildInputs = [ pkgs.libvirt CPANChanges TestPod TestPodCoverage XMLXPath ]; 14389 - meta = { 14390 - platforms = stdenv.lib.platforms.linux; 14391 - }; 14392 }; 14393 14394 TAPParserSourceHandlerpgTAP = buildPerlModule rec { ··· 14400 meta = { 14401 description = "Stream TAP from pgTAP test scripts"; 14402 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 14403 - platforms = stdenv.lib.platforms.linux; 14404 - maintainers = with maintainers; [ ]; 14405 }; 14406 }; 14407 ··· 14490 sha256 = "1hq7jy6zg1iaslsyi05afz0i944y9jnv3nb4krkxjfmzwy5gw106"; 14491 }; 14492 propagatedBuildInputs = [ TemplateToolkit ]; 14493 - meta = { 14494 - maintainers = with maintainers; [ ]; 14495 - platforms = stdenv.lib.platforms.unix; 14496 - }; 14497 }; 14498 14499 TemplatePluginIOAll = buildPerlPackage { ··· 14517 sha256 = "1mqqqs0dhfr6bp1305j9ns05q4pq1n3f561l6p8848k5ml3dh87a"; 14518 }; 14519 propagatedBuildInputs = [ TemplateToolkit ]; 14520 - meta = { 14521 - maintainers = with maintainers; [ ]; 14522 - platforms = stdenv.lib.platforms.unix; 14523 - }; 14524 }; 14525 14526 TemplatePluginJSONEscape = buildPerlPackage { ··· 14530 sha256 = "051a8b1d3bc601d58fc51e246067d36450cfe970278a0456e8ab61940f13cd86"; 14531 }; 14532 propagatedBuildInputs = [ JSON TemplateToolkit ]; 14533 - meta = { 14534 - maintainers = with maintainers; [ ]; 14535 - platforms = stdenv.lib.platforms.unix; 14536 - }; 14537 }; 14538 14539 TemplateTimer = buildPerlPackage { ··· 14768 sha256 = "e1ded85ae3d76b59c03b8697f4a6cb01ae31bd62a9354f5bb7d18f9e927b485f"; 14769 }; 14770 propagatedBuildInputs = [ TermVT102 ]; 14771 - meta = { 14772 - license = "unknown"; 14773 - }; 14774 }; 14775 14776 TermAnimation = buildPerlPackage rec { ··· 14835 }; 14836 buildInputs = [ ClassInspector TestUnitLite ]; 14837 propagatedBuildInputs = [ ExceptionBase constantboolean ]; 14838 - meta = { 14839 - maintainers = with maintainers; [ ]; 14840 - platforms = stdenv.lib.platforms.unix; 14841 - }; 14842 }; 14843 14844 TestAssertions = buildPerlPackage rec { ··· 15067 meta = { 15068 description = "Check the correct line endings in your project"; 15069 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 15070 - maintainers = with maintainers; [ ]; 15071 - platforms = stdenv.lib.platforms.unix; 15072 }; 15073 }; 15074 ··· 15091 meta = { 15092 description = "Add test failures if warnings are caught"; 15093 license = stdenv.lib.licenses.asl20; 15094 - maintainers = with maintainers; [ ]; 15095 - platforms = stdenv.lib.platforms.unix; 15096 }; 15097 }; 15098 ··· 15218 sha256 = "1cyp46w3q7dg89qkw31ik2h2a6mdx6pzdz2lmp8m0a61zjr8mh07"; 15219 }; 15220 propagatedBuildInputs = [ JSONAny ]; 15221 - meta = { 15222 - maintainers = with maintainers; [ ]; 15223 - platforms = stdenv.lib.platforms.unix; 15224 - }; 15225 buildInputs = [ TestDifferences ]; 15226 }; 15227 ··· 15294 propagatedBuildInputs = [ DevelCycle PadWalker ]; 15295 meta = { 15296 description = "Verifies code hasn't left circular references"; 15297 - maintainers = with maintainers; [ ]; 15298 - platforms = stdenv.lib.platforms.unix; 15299 }; 15300 }; 15301 ··· 15310 meta = with stdenv.lib; { 15311 description = "Simulating other classes"; 15312 license = licenses.lgpl2Plus; 15313 - maintainers = with maintainers; [ ]; 15314 - platforms = platforms.unix; 15315 }; 15316 }; 15317 ··· 15336 sha256 = "0pggwrlqj6k44qayhbpjqkzry1r626iy2vf30zlf2jdhbjbvlycz"; 15337 }; 15338 propagatedBuildInputs = [ SUPER ]; 15339 - meta = { 15340 - maintainers = with maintainers; [ ]; 15341 - platforms = stdenv.lib.platforms.unix; 15342 - }; 15343 buildInputs = [ TestWarnings ]; 15344 }; 15345 ··· 15453 meta = { 15454 description = "Check the presence of tabs in your project"; 15455 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 15456 - maintainers = with maintainers; [ ]; 15457 - platforms = stdenv.lib.platforms.unix; 15458 }; 15459 }; 15460 ··· 15630 homepage = https://github.com/rjbs/Test-Routine; 15631 description = "Composable units of assertion"; 15632 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 15633 - maintainers = with maintainers; [ ]; 15634 - platforms = stdenv.lib.platforms.unix; 15635 }; 15636 }; 15637 ··· 15840 meta = { 15841 description = "Write tests, not scripts that run them"; 15842 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 15843 - maintainers = with maintainers; [ ]; 15844 - platforms = stdenv.lib.platforms.unix; 15845 }; 15846 }; 15847 ··· 15918 meta = { 15919 description = "Unit testing without external dependencies"; 15920 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 15921 - maintainers = with maintainers; [ ]; 15922 - platforms = stdenv.lib.platforms.unix; 15923 }; 15924 }; 15925 ··· 15959 meta = { 15960 description = "Test fallback behaviour in absence of modules"; 15961 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 15962 - maintainers = with maintainers; [ ]; 15963 - platforms = stdenv.lib.platforms.unix; 15964 }; 15965 }; 15966 ··· 16001 sha256 = "0bwwdk0iai5dlvvfpja971qpgvmf6yq67iag4z4szl9v5sra0xm5"; 16002 }; 16003 propagatedBuildInputs = [ WWWMechanizeCGI ]; 16004 - meta = { 16005 - maintainers = with maintainers; [ ]; 16006 - platforms = stdenv.lib.platforms.unix; 16007 - }; 16008 buildInputs = [ TestLongString TestWWWMechanize ]; 16009 }; 16010 ··· 16029 sha256 = "1wy0488yg15kahfafnlmlhppxik7d0z00wxwj9fszrsq2h6crz6y"; 16030 }; 16031 propagatedBuildInputs = [ XMLLibXML ]; 16032 - meta = { 16033 - maintainers = with maintainers; [ ]; 16034 - platforms = stdenv.lib.platforms.unix; 16035 - }; 16036 }; 16037 16038 TestYAML = buildPerlPackage rec { ··· 16279 meta = { 16280 description = "Micro template engine with Perl5 language"; 16281 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 16282 - maintainers = with maintainers; [ ]; 16283 - platforms = stdenv.lib.platforms.unix; 16284 }; 16285 }; 16286 ··· 16413 homepage = http://www.shlomifish.org/open-source/projects/docmake/; 16414 description = "Organize Data in Tables"; 16415 license = stdenv.lib.licenses.isc; 16416 - platforms = stdenv.lib.platforms.linux; 16417 }; 16418 }; 16419 ··· 16430 src = fetchurl { 16431 url = mirror://cpan/authors/id/M/MS/MSCHOUT/Text-Template-1.53.tar.gz; 16432 sha256 = "ae221cbba2b27967a12bda3f531547e897eb38ae0a92c084607fd5a6a8085bc4"; 16433 - }; 16434 - meta = { 16435 - description = "Unknown"; 16436 - license = "unknown"; 16437 }; 16438 buildInputs = [ TestMoreUTF8 TestWarnings ]; 16439 }; ··· 16490 meta = { 16491 description = "Remove leading and/or trailing whitespace from strings"; 16492 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 16493 - maintainers = with maintainers; [ ]; 16494 - platforms = stdenv.lib.platforms.unix; 16495 }; 16496 }; 16497 ··· 16503 }; 16504 # https://rt.cpan.org/Public/Bug/Display.html?id=124815 16505 NIX_CFLAGS_COMPILE = [ "-DHAS_VPRINTF" ]; 16506 - meta = { 16507 - maintainers = with maintainers; [ ]; 16508 - platforms = stdenv.lib.platforms.linux; 16509 - }; 16510 }; 16511 16512 TextUnidecode = buildPerlPackage rec { ··· 16550 sha256 = "0cxbgx879bsskmnhjzamgsa5862ddixyx4yr77lafmwimnaxjg74"; 16551 }; 16552 propagatedBuildInputs = [ URI ]; 16553 - meta = { 16554 - maintainers = with maintainers; [ ]; 16555 - platforms = stdenv.lib.platforms.unix; 16556 - }; 16557 }; 16558 16559 TextWrapI18N = buildPerlPackage { ··· 16794 doCheck = false; 16795 meta = { 16796 description = "Parse and format time values"; 16797 - license = "unknown"; 16798 }; 16799 }; 16800 ··· 16956 url = mirror://cpan/authors/id/B/BR/BRADFITZ/Unicode-CheckUTF8-1.03.tar.gz; 16957 sha256 = "97f84daf033eb9b49cd8fe31db221fef035a5c2ee1d757f3122c88cf9762414c"; 16958 }; 16959 - meta = { 16960 - license = "unknown"; 16961 - }; 16962 }; 16963 16964 UnicodeLineBreak = buildPerlPackage rec { ··· 17040 meta = { 17041 description = "Build a URI from a set of named parameters"; 17042 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 17043 - maintainers = with maintainers; [ ]; 17044 - platforms = stdenv.lib.platforms.unix; 17045 }; 17046 buildInputs = [ TestFatal ]; 17047 }; ··· 17255 substituteInPlace t/cgi-bin/script.cgi \ 17256 --replace '#!/usr/bin/perl' '#!${perl}/bin/perl' 17257 ''; 17258 - meta = { 17259 - maintainers = with maintainers; [ ]; 17260 - platforms = stdenv.lib.platforms.unix; 17261 - }; 17262 }; 17263 17264 WWWRobotRules = buildPerlPackage { ··· 17578 }; 17579 meta = { 17580 description = "A re-usable XPath engine for DOM-like trees"; 17581 - maintainers = with maintainers; [ ]; 17582 - platforms = stdenv.lib.platforms.unix; 17583 }; 17584 }; 17585 ··· 17664 sha256 = "1xd00821y795fy2rag8aizb5wsbbzfxgmdf9qwpvdxn3pgpyzz85"; 17665 }; 17666 propagatedBuildInputs = [ XMLParser ]; 17667 - meta = { 17668 - maintainers = with maintainers; [ ]; 17669 - platforms = stdenv.lib.platforms.unix; 17670 - }; 17671 }; 17672 17673 XMLSimple = buildPerlPackage {
··· 64 homepage = http://betterthangrep.com/; 65 license = licenses.artistic2; 66 maintainers = with maintainers; [ lovek323 ]; 67 }; 68 # tests fails on nixos and hydra because of different purity issues 69 doCheck = false; ··· 106 sha256 = "1kqn13wd0lfjrf6h19b9kgdqqwp7k2d9yfq5i0wvii0xi8jqh1lw"; 107 }; 108 propagatedBuildInputs = [ AlgorithmDiff ]; 109 }; 110 111 AlienBuild = buildPerlPackage { ··· 337 homepage = https://github.com/rjbs/App-Cmd; 338 description = "Write command line apps with less suffering"; 339 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 340 }; 341 }; 342 ··· 374 homepage = https://github.com/miyagawa/cpanminus; 375 description = "Get, unpack, build and install modules from CPAN"; 376 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 377 }; 378 }; 379 ··· 511 description = "Module for manipulations of cpio archives"; 512 # See https://rt.cpan.org/Public/Bug/Display.html?id=43597#txn-569710 513 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 514 }; 515 }; 516 ··· 726 727 homepage = http://www.aarontrevena.co.uk/opensource/autodia/; 728 license = stdenv.lib.licenses.gpl2Plus; 729 }; 730 buildInputs = [ DBI ]; 731 }; ··· 793 meta = { 794 description = "Wrap OP check callbacks"; 795 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 796 }; 797 }; 798 ··· 816 sha256 = "09m96p8c0ipgz42li2ywdgy0vxb57mb5nf59j9gw7yzc3xkslv9w"; 817 }; 818 propagatedBuildInputs = [ CarpClan ]; 819 }; 820 821 BKeywords = buildPerlPackage rec { ··· 972 sha256 = "1aa2mjn5767b13063nnsrwcikrnbspby7j1c5q007bzaq0gcbcri"; 973 }; 974 propagatedBuildInputs = [ StringCRC32 ]; 975 }; 976 977 CacheMemcachedFast = buildPerlPackage { ··· 983 meta = { 984 description = "Perl client for B<memcached>, in C language"; 985 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 986 }; 987 }; 988 ··· 994 }; 995 propagatedBuildInputs = [ DBFile FileNFSLock HeapFibonacci IOString TimeDate ]; 996 doCheck = false; # can time out 997 }; 998 999 CacheSimpleTimedExpiry = buildPerlPackage { ··· 1061 sha256 = "14j3lk6fhfzda5d3d7z6f373ng3fzxazzwpjyziysrhic1v3b4mq"; 1062 }; 1063 propagatedBuildInputs = [ HTMLTiny LWP ]; 1064 }; 1065 1066 CaptureTiny = buildPerlPackage rec { ··· 1162 meta = { 1163 description = "HTTP Basic and Digest authentication"; 1164 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 1165 }; 1166 }; 1167 ··· 1185 meta = { 1186 description = "A storage class for Catalyst Authentication using DBIx::Class"; 1187 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 1188 }; 1189 buildInputs = [ TestWarn ]; 1190 }; ··· 1243 homepage = http://dev.catalyst.perl.org/; 1244 description = "Catalyst Development Tools"; 1245 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 1246 }; 1247 }; 1248 ··· 1282 meta = { 1283 description = "DBIx::Class::Schema Model Class"; 1284 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 1285 }; 1286 }; 1287 ··· 1297 homepage = http://dev.catalyst.perl.org/; 1298 description = "The Catalyst Framework Runtime"; 1299 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 1300 }; 1301 }; 1302 ··· 1348 meta = { 1349 description = "Role based authorization for Catalyst based on Catalyst::Plugin::Authentication"; 1350 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 1351 }; 1352 }; 1353 ··· 1362 meta = { 1363 description = "Flexible caching support for Catalyst"; 1364 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 1365 }; 1366 }; 1367 ··· 1376 meta = { 1377 description = "HTTP/1.1 cache validators for Catalyst"; 1378 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 1379 }; 1380 }; 1381 ··· 1388 propagatedBuildInputs = [ CatalystPluginSession GDSecurityImage ]; 1389 meta = { 1390 description = "Create and validate Captcha for Catalyst"; 1391 }; 1392 }; 1393 ··· 1472 sha256 = "1rvxbfnpf9x2pc2zgpazlcgdlr2dijmxgmcs0m5nazs0w6xikssb"; 1473 }; 1474 propagatedBuildInputs = [ CatalystPluginSession ]; 1475 }; 1476 1477 CatalystPluginSessionStoreFastMmap = buildPerlPackage rec { ··· 1481 sha256 = "0x3j6zv3wr41jlwr6yb2jpmcx019ibyn11y8653ffnwhpzbpzsxs"; 1482 }; 1483 propagatedBuildInputs = [ CacheFastMmap CatalystPluginSession ]; 1484 }; 1485 1486 CatalystPluginSessionStoreFile = buildPerlPackage rec { ··· 1506 meta = { 1507 description = "Display a stack trace on the debug screen"; 1508 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 1509 }; 1510 }; 1511 ··· 1559 buildInputs = [ CatalystRuntime TestLongString TestSimple13 TestWWWMechanize TestWWWMechanizeCatalyst TextCSV XMLSimple ]; 1560 meta = { 1561 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 1562 }; 1563 }; 1564 ··· 1573 meta = { 1574 description = "JSON view for your data"; 1575 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 1576 }; 1577 }; 1578 ··· 1586 meta = { 1587 description = "Template View Class"; 1588 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 1589 }; 1590 }; 1591 ··· 1618 meta = { 1619 description = "Replace request base with value passed by HTTP proxy"; 1620 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 1621 }; 1622 }; 1623 ··· 1636 meta = { 1637 description = "Replace the development server with Starman"; 1638 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 1639 }; 1640 }; 1641 ··· 1648 meta = { 1649 description = "Get the CDDB info for an audio cd"; 1650 license = stdenv.lib.licenses.artistic1; 1651 maintainers = [ maintainers.endgame ]; 1652 }; 1653 }; ··· 1712 }; 1713 meta = { 1714 description = "Convert flat hash to nested data using TT2's dot convention"; 1715 }; 1716 buildInputs = [ TestException ]; 1717 }; ··· 2587 sha256 = "1s8gxfg4xqp543aqanv5lbp64vqqyw6ic4x3fm4imkk1h3amjb6d"; 2588 }; 2589 propagatedBuildInputs = [ SymbolUtil ]; 2590 }; 2591 2592 curry = buildPerlPackage rec { ··· 2901 meta = { 2902 description = "Get weak or strong random data from pluggable sources"; 2903 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 2904 }; 2905 }; 2906 ··· 2964 meta = with stdenv.lib; { 2965 description = "Perl wrapper around OpenSSL's AES library"; 2966 license = with licenses; [ artistic1 gpl1Plus ]; 2967 }; 2968 }; 2969 ··· 3072 propagatedBuildInputs = [ URI ]; 3073 meta = { 3074 description = "Compact many CSS files into one big file"; 3075 }; 3076 }; 3077 ··· 3138 meta = { 3139 description = "Polymorphic data cloning"; 3140 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 3141 }; 3142 }; 3143 ··· 3239 }; 3240 meta = { 3241 description = "Hexadecimal Dumper"; 3242 + maintainers = with maintainers; [ AndersonTorres ]; 3243 }; 3244 }; 3245 ··· 3447 meta = { 3448 description = "Fast random UUID generator using the Mersenne Twister algorithm"; 3449 license = stdenv.lib.licenses.asl20; 3450 }; 3451 }; 3452 ··· 3509 }; 3510 propagatedBuildInputs = [ BitVector ]; 3511 doCheck = false; # some of the checks rely on the year being <2015 3512 }; 3513 3514 DateExtract = buildPerlPackage { ··· 3674 meta = { 3675 description = "Parses ISO8601 formats"; 3676 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 3677 }; 3678 }; 3679 ··· 3727 meta = { 3728 description = "Parse and format PostgreSQL dates and times"; 3729 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 3730 }; 3731 buildInputs = [ ModuleBuildTiny ]; 3732 }; ··· 4005 homepage = http://dbi.perl.org/; 4006 description = "Database independent interface for Perl"; 4007 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 4008 }; 4009 }; 4010 ··· 4114 meta = { 4115 description = "Fast, safe DBI connection and transaction management"; 4116 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 4117 }; 4118 }; 4119 ··· 4124 sha256 = "7a2a978fb6d9feaa3e4b109c71c963b26a008a2d130c5876ecf24c5a72338a1d"; 4125 }; 4126 propagatedBuildInputs = [ DBI ]; 4127 }; 4128 4129 DBIxHTMLViewLATEST = buildPerlPackage { ··· 4158 propagatedBuildInputs = [ DBI ]; 4159 meta = { 4160 description = "Very complete easy-to-use OO interface to DBI"; 4161 }; 4162 }; 4163 ··· 4180 }; 4181 meta = { 4182 description = "Find memory cycles in objects"; 4183 }; 4184 }; 4185 ··· 4277 sha256 = "01yrsdpn9ns9iwwc92bhjn2605b7ys7i3198gjb935lsllzgzw5f"; 4278 }; 4279 propagatedBuildInputs = [ ClassTiny SubExporter namespaceclean ]; 4280 buildInputs = [ TestSimple13 TestWarnings ]; 4281 }; 4282 ··· 4370 propagatedBuildInputs = [ LWP ]; 4371 meta = { 4372 description = "Perl extension for getting MD5 sums for files and urls"; 4373 }; 4374 }; 4375 ··· 4831 meta = { 4832 description = "Generate world unique message-ids"; 4833 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 4834 }; 4835 }; 4836 ··· 5093 url = mirror://cpan/authors/id/D/DS/DSB/Env-Path-0.19.tar.gz; 5094 sha256 = "1qhmj15a66h90pjl2dgnxsb9jj3b1r5mpvnr87cafcl8g69z0jr4"; 5095 }; 5096 }; 5097 5098 Error = buildPerlModule rec { ··· 5139 meta = { 5140 description = "Lightweight exceptions"; 5141 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 5142 }; 5143 }; 5144 ··· 5159 }; 5160 buildInputs = [ TestAssert TestUnitLite ]; 5161 propagatedBuildInputs = [ ExceptionBase constantboolean ]; 5162 }; 5163 5164 ExceptionWarning = buildPerlModule { ··· 5169 }; 5170 buildInputs = [ TestAssert TestUnitLite ]; 5171 propagatedBuildInputs = [ ExceptionBase ]; 5172 }; 5173 5174 ExporterDeclare = buildPerlModule { ··· 5183 homepage = http://open-exodus.net/projects/Exporter-Declare; 5184 description = "Exporting done right"; 5185 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 5186 }; 5187 }; 5188 ··· 5274 }; 5275 meta = { 5276 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 5277 }; 5278 }; 5279 ··· 5427 }; 5428 buildInputs = [ ExceptionWarning TestAssert TestUnitLite ]; 5429 propagatedBuildInputs = [ ExceptionDied ]; 5430 }; 5431 5432 FCGI = buildPerlPackage rec { ··· 5459 }; 5460 meta = { 5461 description = "A perl-based FastCGI process manager"; 5462 }; 5463 }; 5464 ··· 5485 homepage = http://open-exodus.net/projects/Fennec-Lite; 5486 description = "Minimalist Fennec, the commonly used bits"; 5487 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 5488 }; 5489 }; 5490 ··· 5797 url = mirror://cpan/authors/id/B/BB/BBB/File-NFSLock-1.29.tar.gz; 5798 sha256 = "0dzssj15faz9cn1w3xi7jwm64gyjyazapv4bkgglw5l1njcibm31"; 5799 }; 5800 }; 5801 5802 FilePath = buildPerlPackage rec { ··· 5834 meta = { 5835 description = "Change directory temporarily for a limited scope"; 5836 license = stdenv.lib.licenses.asl20; 5837 }; 5838 }; 5839 ··· 5868 homepage = https://github.com/ingydotnet/file-share-pm/tree; 5869 description = "Extend File::ShareDir to Local Libraries"; 5870 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 5871 }; 5872 }; 5873 ··· 5894 meta = { 5895 description = "Install shared files"; 5896 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 5897 }; 5898 }; 5899 ··· 5934 meta = { 5935 description = "Simple and Efficient Reading/Writing/Modifying of Complete Files"; 5936 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 5937 }; 5938 }; 5939 ··· 6011 meta = { 6012 description = "File::Type uses magic numbers (typically at the start of a file) to determine the MIME type of that file."; 6013 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 6014 }; 6015 }; 6016 ··· 6110 meta = { 6111 description = "Extensions and convenience methods to manage background processes"; 6112 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 6113 }; 6114 propagatedBuildInputs = [ URI ]; 6115 }; ··· 6364 sha256 = "af53f2d3f63297e046676eae14a76296afdd2910e09723b6b113708622b7989b"; 6365 }; 6366 buildInputs = [ pkgs.gnupg1orig ]; 6367 }; 6368 6369 GnuPGInterface = buildPerlPackage rec { ··· 6444 meta = with stdenv.lib; { 6445 description = "Perl interface to the GraphViz graphing tool"; 6446 license = licenses.artistic2; 6447 }; 6448 }; 6449 ··· 6500 homepage = http://gtk2-perl.sourceforge.net/; 6501 description = "Perl interface to the 2.x series of the Gimp Toolkit library"; 6502 license = stdenv.lib.licenses.lgpl21Plus; 6503 }; 6504 }; 6505 ··· 6581 url = "mirror://cpan/authors/id/M/ML/MLEHMANN/${name}.tar.gz"; 6582 sha256 = "34c4ddf91fc93d1090d86da14df706d175b1610c67372c01e12ce9555d4dd1dc"; 6583 }; 6584 }; 6585 6586 HashDiff = buildPerlPackage rec { ··· 6665 url = mirror://cpan/authors/id/E/ET/ETHER/Hash-Util-FieldHash-Compat-0.11.tar.gz; 6666 sha256 = "06vlygjyk7rkkw0di3252mma141w801qn3xk40aa2yskbfklcbk4"; 6667 }; 6668 }; 6669 6670 HeapFibonacci = buildPerlPackage { ··· 6672 src = fetchurl { 6673 url = mirror://cpan/authors/id/J/JM/JMM/Heap-0.80.tar.gz; 6674 sha256 = "1plv2djbyhvkdcw2ic54rdqb745cwksxckgzvw7ssxiir7rjknnc"; 6675 }; 6676 }; 6677 ··· 6828 propagatedBuildInputs = [ CryptBlowfish CryptCBC DataClone DateTimeFormatStrptime EmailValid HTMLTree JSONMaybeXS MooseXGetopt MooseXTypesCommon MooseXTypesLoadableClass aliased ]; 6829 meta = { 6830 description = "HTML forms using Moose"; 6831 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 6832 }; 6833 }; ··· 6918 sha256 = "1qbad8ayffpx7wj76ip05p6rh9p1lkir6qknpl76zy679ghlsp8s"; 6919 }; 6920 buildInputs = [ TestBase ]; 6921 }; 6922 6923 HTMLScrubber = buildPerlPackage rec { ··· 7016 meta = { 7017 description = "Add XPath support to HTML::TreeBuilder"; 7018 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 7019 }; 7020 }; 7021 ··· 7404 homepage = https://github.com/ingydotnet/io-all-pm/tree; 7405 description = "IO::All of it to Graham and Damian!"; 7406 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 7407 }; 7408 }; 7409 ··· 7441 meta = { 7442 description = "IO Interface to compressed data files/buffers"; 7443 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 7444 }; 7445 # Same as CompressRawZlib 7446 doCheck = false && !stdenv.isDarwin; ··· 7620 homepage = https://github.com/rjbs/io-tiecombine; 7621 description = "Produce tied (and other) separate but combined variables"; 7622 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 7623 }; 7624 }; 7625 ··· 7667 meta = { 7668 description = "System() and background procs w/ piping, redirs, ptys (Unix, Win32)"; 7669 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 7670 }; 7671 propagatedBuildInputs = [ IOTty ]; 7672 buildInputs = [ Readonly ]; ··· 7740 license = with licenses; [ gpl1Plus /* or */ artistic2 ]; 7741 7742 maintainers = [ maintainers.kiloreux ]; 7743 }; 7744 }; 7745 ··· 7810 ''; 7811 7812 license = stdenv.lib.licenses.artistic2; 7813 }; 7814 }; 7815 ··· 7934 sha256 = "0118yrzagwlcfj5yldn3h23zzqs2rx282jlm068nf7fjlvy4m7s7"; 7935 }; 7936 propagatedBuildInputs = [ TypesSerialiser ]; 7937 buildInputs = [ CanaryStability ]; 7938 }; 7939 ··· 7994 url = mirror://cpan/authors/id/G/GU/GUIDO/libintl-perl-1.31.tar.gz; 7995 sha256 = "1afandrl44mq9c32r57xr489gkfswdgc97h8x86k98dz1byv3l6a"; 7996 }; 7997 }; 7998 7999 libnet = buildPerlPackage { ··· 8119 }; 8120 meta = { 8121 description = "Convert English text to numbers"; 8122 }; 8123 }; 8124 ··· 8259 meta = { 8260 description = "Combines List::Util and List::MoreUtils in one bite-sized package"; 8261 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 8262 }; 8263 }; 8264 ··· 8333 url = mirror://cpan/authors/id/P/PE/PEVANS/List-UtilsBy-0.11.tar.gz; 8334 sha256 = "0nkpylkqccxanr8wc7j9wg6jdrizybjjd6p8q3jbh7f29cxz9pgs"; 8335 }; 8336 }; 8337 8338 LocaleCodes = buildPerlPackage { ··· 8416 propagatedBuildInputs = [ FileSlurp ]; 8417 meta = { 8418 description = "Perl module for manipulating .po entries from GNU gettext"; 8419 }; 8420 }; 8421 ··· 8550 meta = { 8551 description = "Dispatches messages to one or more outputs"; 8552 license = stdenv.lib.licenses.artistic2; 8553 }; 8554 buildInputs = [ IPCRun3 TestFatal TestNeeds ]; 8555 }; ··· 8683 meta = with stdenv.lib; { 8684 description = "The World-Wide Web library for Perl"; 8685 license = with licenses; [ artistic1 gpl1Plus ]; 8686 }; 8687 buildInputs = [ TestFatal TestNeeds TestRequiresInternet ]; 8688 }; ··· 8738 meta = { 8739 description = "Provide https support for LWP::UserAgent"; 8740 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 8741 }; 8742 buildInputs = [ TestRequiresInternet ]; 8743 }; ··· 8764 propagatedBuildInputs = [ LWP ]; 8765 meta = { 8766 description = "A virtual browser that retries errors"; 8767 }; 8768 }; 8769 ··· 8774 sha256 = "0923ahl22c0gdzrihj7dqnrawia9hmcl462asf4ry8d5wd84z1i5"; 8775 }; 8776 propagatedBuildInputs = [ HookLexWrap LWP SafeIsa ]; 8777 # Tests require network connectivity 8778 # https://rt.cpan.org/Public/Bug/Display.html?id=63966 is the bug upstream, 8779 # which doesn't look like it will get fixed anytime soon. ··· 9110 meta = { 9111 description = "Perl interface to the ISAAC PRNG algorithm"; 9112 license = with stdenv.lib.licenses; [ publicDomain mit artistic2 gpl3 ]; 9113 }; 9114 }; 9115 ··· 9123 meta = { 9124 description = "Auto-seeded Mersenne Twister PRNGs"; 9125 license = "unrestricted"; 9126 }; 9127 }; 9128 ··· 9137 meta = { 9138 description = "Cryptographically-secure, cross-platform replacement for rand()"; 9139 license = stdenv.lib.licenses.artistic2; 9140 }; 9141 }; 9142 ··· 9187 meta = { 9188 description = "Tools for creating Meta objects to track custom metrics"; 9189 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 9190 }; 9191 }; 9192 ··· 9200 meta = { 9201 description = "Basic method declarations with signatures, without source filters"; 9202 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 9203 }; 9204 }; 9205 ··· 9219 description = "A mail-to-HTML converter"; 9220 maintainers = with maintainers; [ lovek323 ]; 9221 license = licenses.gpl2; 9222 }; 9223 }; 9224 ··· 9562 meta = { 9563 description = "Declare author-only dependencies"; 9564 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 9565 }; 9566 }; 9567 ··· 9575 meta = { 9576 description = "Designate tests only run by module authors"; 9577 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 9578 }; 9579 }; 9580 ··· 9717 sha256 = "0g7qs6vqg91xpwg1cdy91m3kh9m1zbkzyz1qsy453b572xdscf0d"; 9718 }; 9719 buildInputs = [ pkgs.unzip ]; 9720 }; 9721 9722 ModuleVersionsReport = buildPerlPackage { ··· 9846 description = "A postmodern object system for Perl 5"; 9847 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 9848 maintainers = [ maintainers.eelco ]; 9849 }; 9850 }; 9851 ··· 9980 meta = { 9981 description = "Abstract base classes for Moose"; 9982 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 9983 }; 9984 }; 9985 ··· 10005 homepage = https://github.com/moose/MooseX-App-Cmd; 10006 description = "Mashes up MooseX::Getopt and App::Cmd"; 10007 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 10008 }; 10009 }; 10010 ··· 10153 meta = { 10154 description = "Extend your attribute interfaces (deprecated)"; 10155 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 10156 }; 10157 }; 10158 ··· 10163 sha256 = "19wd74dihybnz1lbbsqn0clwxzb6y0aa0i25a8zhajz7p5fq5myb"; 10164 }; 10165 propagatedBuildInputs = [ DataVisitor HashUtilFieldHashCompat namespaceautoclean ]; 10166 buildInputs = [ ModuleBuildTiny ]; 10167 }; 10168 ··· 10178 homepage = https://github.com/moose/MooseX-ConfigFromFile; 10179 description = "An abstract Moose role for setting attributes from a configfile"; 10180 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 10181 }; 10182 }; 10183 ··· 10237 homepage = https://github.com/pshangov/moosex-has-options; 10238 description = "Succinct options for Moose"; 10239 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 10240 }; 10241 }; 10242 ··· 10389 homepage = https://github.com/moose/MooseX-Runnable; 10390 description = "Tag a class as a runnable application"; 10391 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 10392 }; 10393 }; 10394 ··· 10418 sha256 = "0hb5s1chsgbx2nlb0f112mdh2v1zwww8f4i3gvfvcghx3grv5135"; 10419 }; 10420 buildInputs = [ ModuleBuildTiny TestFatal TestRequires TestWarnings ]; 10421 propagatedBuildInputs = [ Moose ]; 10422 }; 10423 ··· 10529 buildInputs = [ ModuleBuildTiny TestFatal ]; 10530 propagatedBuildInputs = [ MooseXTypes ]; 10531 meta = { 10532 homepage = https://github.com/moose/MooseX-Types-LoadableClass; 10533 description = "ClassName type constraint with coercion to load the class"; 10534 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; ··· 10561 homepage = https://github.com/karenetheridge/moosex-types-path-tiny; 10562 description = "Path::Tiny types and coercions for Moose"; 10563 license = stdenv.lib.licenses.asl20; 10564 }; 10565 }; 10566 ··· 10588 homepage = https://github.com/dagolden/moosex-types-stringlike; 10589 description = "Moose type constraints for strings or string-like objects"; 10590 license = stdenv.lib.licenses.asl20; 10591 }; 10592 }; 10593 ··· 10602 meta = { 10603 description = "MooseX::Types::Structured - Structured Type Constraints for Moose"; 10604 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 10605 }; 10606 }; 10607 ··· 10617 homepage = https://github.com/moose/MooseX-Types-URI; 10618 description = "URI related types and coercions for Moose"; 10619 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 10620 }; 10621 }; 10622 ··· 10771 propagatedBuildInputs = [ URI ]; 10772 meta = { 10773 description = "Perl extension to create signatures for AWS requests"; 10774 }; 10775 }; 10776 ··· 10832 meta = { 10833 description = "Manage Amazon S3 policies for HTTP POST forms"; 10834 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 10835 }; 10836 }; 10837 ··· 10847 meta = { 10848 description = "Advanced Message Queue Protocol (de)serialization and representation"; 10849 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 10850 }; 10851 }; 10852 ··· 10859 meta = { 10860 description = "Manipulate IPv4/IPv6 netblocks in CIDR notation"; 10861 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 10862 maintainers = [ maintainers.bjornfor ]; 10863 }; 10864 }; ··· 10871 }; 10872 meta = { 10873 description = "Perl extension for merging IPv4 or IPv6 CIDR addresses"; 10874 }; 10875 }; 10876 ··· 10886 homepage = https://github.com/metabrainz/CoverArtArchive; 10887 description = "Query the coverartarchive.org"; 10888 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 10889 }; 10890 }; 10891 ··· 11029 sha256 = "70835a926e1c5a8d0324c72fffee82eeb7ec6c141dee04fd446820b64f71c552"; 11030 }; 11031 propagatedBuildInputs = [ NetCIDRLite Socket6 ]; 11032 }; 11033 11034 NetPing = buildPerlPackage { ··· 11240 }; 11241 }; 11242 11243 + NumberBytesHuman = buildPerlPackage rec { 11244 + name = "Number-Bytes-Human-0.11"; 11245 + src = fetchurl { 11246 + url = "mirror://cpan/authors/id/F/FE/FERREIRA/${name}.tar.gz"; 11247 + sha256 = "0b3gprpbcrdwc2gqalpys5m2ngilh5injhww8y0gf3dln14rrisz"; 11248 + }; 11249 + }; 11250 + 11251 NumberCompare = buildPerlPackage rec { 11252 name = "Number-Compare-0.03"; 11253 src = fetchurl { ··· 11329 meta = { 11330 description = "Comprehensive inside-out object support module"; 11331 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 11332 }; 11333 }; 11334 ··· 11746 meta = { 11747 description = "File path utility"; 11748 license = stdenv.lib.licenses.asl20; 11749 }; 11750 preConfigure = 11751 '' ··· 11784 description = "Communicate with a smart card using PC/SC"; 11785 license = stdenv.lib.licenses.gpl2Plus; 11786 maintainers = with maintainers; [ abbradar ]; 11787 }; 11788 }; 11789 ··· 11829 description = ''Collection of advanced command-line tools to perform a variety of MySQL and system tasks.''; 11830 homepage = http://www.percona.com/software/percona-toolkit; 11831 license = with stdenv.lib.licenses; [ gpl2 ]; 11832 + maintainers = with maintainers; [ izorkin ]; 11833 }; 11834 }; 11835 ··· 11976 }; 11977 meta = { 11978 description = "Simple flexible means of converting the output of PHP's serialize() into the equivalent Perl memory structure, and vice versa"; 11979 }; 11980 }; 11981 ··· 12838 homepage = https://github.com/PerlRedis/perl-redis; 12839 description = "Perl binding for Redis database"; 12840 license = stdenv.lib.licenses.artistic2; 12841 }; 12842 }; 12843 ··· 12902 src = fetchurl { 12903 url = mirror://cpan/authors/id/S/SA/SALVA/Regexp-IPv6-0.03.tar.gz; 12904 sha256 = "d542d17d75ce93631de8ba2156da0e0b58a755c409cd4a0d27a3873a26712ce2"; 12905 }; 12906 }; 12907 ··· 12942 homepage = http://jaldhar.github.com/REST-Utils; 12943 description = "Utility functions for REST applications"; 12944 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 12945 }; 12946 }; 12947 ··· 13020 sha256 = "1fcmp4qp7q3xr2mw7clqqwph45icbvgfs2n41gp9zamim2y39p49"; 13021 }; 13022 propagatedBuildInputs = [ locallib ]; 13023 doCheck = false; /* creates files in HOME */ 13024 }; 13025 ··· 13206 }; 13207 meta = { 13208 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 13209 }; 13210 }; 13211 ··· 13264 meta = { 13265 description = "Perl's Web Services Toolkit"; 13266 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 13267 }; 13268 buildInputs = [ TestWarn XMLParserLite ]; 13269 }; ··· 13428 }; 13429 buildInputs = [ TestException ]; 13430 propagatedBuildInputs = [ ClassAccessor ListMoreUtils RegexpCommon SQLTokenizer ]; 13431 }; 13432 13433 SQLTokenizer = buildPerlPackage rec { ··· 13449 meta = { 13450 description = "SQL DDL transformations and more"; 13451 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 13452 }; 13453 }; 13454 ··· 13514 propagatedBuildInputs = [ NumberFormat ]; 13515 meta = { 13516 license = "open_source"; 13517 }; 13518 }; 13519 ··· 13613 }; 13614 13615 StringCRC32 = buildPerlPackage rec { 13616 + name = "String-CRC32-1.7"; 13617 + src = fetchurl { 13618 + url = mirror://cpan/authors/id/L/LE/LEEJO/String-CRC32-1.7.tar.gz; 13619 + sha256 = "1j1bwbxcgxfbgw708rfrni3spwnnmnf717vq9s64nd63jmc4w5lg"; 13620 + }; 13621 }; 13622 13623 StringErrf = buildPerlPackage { ··· 13640 url = mirror://cpan/authors/id/E/EV/EVO/String-Escape-2010.002.tar.gz; 13641 sha256 = "12ls7f7847i4qcikkp3skwraqvjphjiv2zxfhl5d49326f5myr7x"; 13642 }; 13643 }; 13644 13645 StringFlogger = buildPerlPackage rec { ··· 13705 sha256 = "0dfxhr6hxc2majkkrm0qbx3qcbykzpphbj2ms93dc86f7183c1p6"; 13706 }; 13707 meta = { 13708 # http://cpansearch.perl.org/src/ROSCH/String-ShellQuote-1.04/README 13709 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 13710 }; ··· 13751 meta = { 13752 description = "Use TT to interpolate lexical variables"; 13753 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 13754 }; 13755 }; 13756 ··· 13797 meta = with stdenv.lib; { 13798 description = "A Perl module for stripping bits of non-deterministic information"; 13799 license = licenses.gpl3; 13800 maintainers = with maintainers; [ pSub ]; 13801 }; 13802 }; ··· 13992 src = fetchurl { 13993 url = mirror://cpan/authors/id/D/DE/DEXTER/Symbol-Util-0.0203.tar.gz; 13994 sha256 = "0cnwwrd5d6i80f33s7n2ak90rh4s53ss7q57wndrpkpr4bfn3djm"; 13995 }; 13996 }; 13997 ··· 14024 }; 14025 }; 14026 14027 + SysMmap = buildPerlPackage rec { 14028 + name = "Sys-Mmap-0.19"; 14029 + src = fetchurl { 14030 + url = "mirror://cpan/authors/id/S/SW/SWALTERS/${name}.tar.gz"; 14031 + sha256 = "1yh0170xfw3z7n3lynffcb6axv7wi6zb46cx03crj1cvrhjmwa89"; 14032 + }; 14033 + meta = with stdenv.lib; { 14034 + description = "Use mmap to map in a file as a Perl variable"; 14035 + maintainers = with maintainers; [ peterhoeg ]; 14036 + license = with licenses; [ gpl2Plus ]; 14037 + }; 14038 + }; 14039 + 14040 SysMemInfo = buildPerlPackage rec { 14041 name = "Sys-MemInfo-0.99"; 14042 src = fetchurl { ··· 14066 sha256 = "1jv5n8jv48c1p8svjsigyxndv1ygsq8wgwj9c7ypx1vaf3rns679"; 14067 }; 14068 doCheck = false; # no `hostname' in stdenv 14069 }; 14070 14071 SysSigAction = buildPerlPackage { ··· 14102 }; 14103 nativeBuildInputs = [ pkgs.pkgconfig ]; 14104 buildInputs = [ pkgs.libvirt CPANChanges TestPod TestPodCoverage XMLXPath ]; 14105 }; 14106 14107 TAPParserSourceHandlerpgTAP = buildPerlModule rec { ··· 14113 meta = { 14114 description = "Stream TAP from pgTAP test scripts"; 14115 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 14116 }; 14117 }; 14118 ··· 14201 sha256 = "1hq7jy6zg1iaslsyi05afz0i944y9jnv3nb4krkxjfmzwy5gw106"; 14202 }; 14203 propagatedBuildInputs = [ TemplateToolkit ]; 14204 }; 14205 14206 TemplatePluginIOAll = buildPerlPackage { ··· 14224 sha256 = "1mqqqs0dhfr6bp1305j9ns05q4pq1n3f561l6p8848k5ml3dh87a"; 14225 }; 14226 propagatedBuildInputs = [ TemplateToolkit ]; 14227 }; 14228 14229 TemplatePluginJSONEscape = buildPerlPackage { ··· 14233 sha256 = "051a8b1d3bc601d58fc51e246067d36450cfe970278a0456e8ab61940f13cd86"; 14234 }; 14235 propagatedBuildInputs = [ JSON TemplateToolkit ]; 14236 }; 14237 14238 TemplateTimer = buildPerlPackage { ··· 14467 sha256 = "e1ded85ae3d76b59c03b8697f4a6cb01ae31bd62a9354f5bb7d18f9e927b485f"; 14468 }; 14469 propagatedBuildInputs = [ TermVT102 ]; 14470 }; 14471 14472 TermAnimation = buildPerlPackage rec { ··· 14531 }; 14532 buildInputs = [ ClassInspector TestUnitLite ]; 14533 propagatedBuildInputs = [ ExceptionBase constantboolean ]; 14534 }; 14535 14536 TestAssertions = buildPerlPackage rec { ··· 14759 meta = { 14760 description = "Check the correct line endings in your project"; 14761 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 14762 }; 14763 }; 14764 ··· 14781 meta = { 14782 description = "Add test failures if warnings are caught"; 14783 license = stdenv.lib.licenses.asl20; 14784 }; 14785 }; 14786 ··· 14906 sha256 = "1cyp46w3q7dg89qkw31ik2h2a6mdx6pzdz2lmp8m0a61zjr8mh07"; 14907 }; 14908 propagatedBuildInputs = [ JSONAny ]; 14909 buildInputs = [ TestDifferences ]; 14910 }; 14911 ··· 14978 propagatedBuildInputs = [ DevelCycle PadWalker ]; 14979 meta = { 14980 description = "Verifies code hasn't left circular references"; 14981 }; 14982 }; 14983 ··· 14992 meta = with stdenv.lib; { 14993 description = "Simulating other classes"; 14994 license = licenses.lgpl2Plus; 14995 }; 14996 }; 14997 ··· 15016 sha256 = "0pggwrlqj6k44qayhbpjqkzry1r626iy2vf30zlf2jdhbjbvlycz"; 15017 }; 15018 propagatedBuildInputs = [ SUPER ]; 15019 buildInputs = [ TestWarnings ]; 15020 }; 15021 ··· 15129 meta = { 15130 description = "Check the presence of tabs in your project"; 15131 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 15132 }; 15133 }; 15134 ··· 15304 homepage = https://github.com/rjbs/Test-Routine; 15305 description = "Composable units of assertion"; 15306 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 15307 }; 15308 }; 15309 ··· 15512 meta = { 15513 description = "Write tests, not scripts that run them"; 15514 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 15515 }; 15516 }; 15517 ··· 15588 meta = { 15589 description = "Unit testing without external dependencies"; 15590 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 15591 }; 15592 }; 15593 ··· 15627 meta = { 15628 description = "Test fallback behaviour in absence of modules"; 15629 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 15630 }; 15631 }; 15632 ··· 15667 sha256 = "0bwwdk0iai5dlvvfpja971qpgvmf6yq67iag4z4szl9v5sra0xm5"; 15668 }; 15669 propagatedBuildInputs = [ WWWMechanizeCGI ]; 15670 buildInputs = [ TestLongString TestWWWMechanize ]; 15671 }; 15672 ··· 15691 sha256 = "1wy0488yg15kahfafnlmlhppxik7d0z00wxwj9fszrsq2h6crz6y"; 15692 }; 15693 propagatedBuildInputs = [ XMLLibXML ]; 15694 }; 15695 15696 TestYAML = buildPerlPackage rec { ··· 15937 meta = { 15938 description = "Micro template engine with Perl5 language"; 15939 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 15940 }; 15941 }; 15942 ··· 16069 homepage = http://www.shlomifish.org/open-source/projects/docmake/; 16070 description = "Organize Data in Tables"; 16071 license = stdenv.lib.licenses.isc; 16072 }; 16073 }; 16074 ··· 16085 src = fetchurl { 16086 url = mirror://cpan/authors/id/M/MS/MSCHOUT/Text-Template-1.53.tar.gz; 16087 sha256 = "ae221cbba2b27967a12bda3f531547e897eb38ae0a92c084607fd5a6a8085bc4"; 16088 }; 16089 buildInputs = [ TestMoreUTF8 TestWarnings ]; 16090 }; ··· 16141 meta = { 16142 description = "Remove leading and/or trailing whitespace from strings"; 16143 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 16144 }; 16145 }; 16146 ··· 16152 }; 16153 # https://rt.cpan.org/Public/Bug/Display.html?id=124815 16154 NIX_CFLAGS_COMPILE = [ "-DHAS_VPRINTF" ]; 16155 }; 16156 16157 TextUnidecode = buildPerlPackage rec { ··· 16195 sha256 = "0cxbgx879bsskmnhjzamgsa5862ddixyx4yr77lafmwimnaxjg74"; 16196 }; 16197 propagatedBuildInputs = [ URI ]; 16198 }; 16199 16200 TextWrapI18N = buildPerlPackage { ··· 16435 doCheck = false; 16436 meta = { 16437 description = "Parse and format time values"; 16438 }; 16439 }; 16440 ··· 16596 url = mirror://cpan/authors/id/B/BR/BRADFITZ/Unicode-CheckUTF8-1.03.tar.gz; 16597 sha256 = "97f84daf033eb9b49cd8fe31db221fef035a5c2ee1d757f3122c88cf9762414c"; 16598 }; 16599 }; 16600 16601 UnicodeLineBreak = buildPerlPackage rec { ··· 16677 meta = { 16678 description = "Build a URI from a set of named parameters"; 16679 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 16680 }; 16681 buildInputs = [ TestFatal ]; 16682 }; ··· 16890 substituteInPlace t/cgi-bin/script.cgi \ 16891 --replace '#!/usr/bin/perl' '#!${perl}/bin/perl' 16892 ''; 16893 }; 16894 16895 WWWRobotRules = buildPerlPackage { ··· 17209 }; 17210 meta = { 17211 description = "A re-usable XPath engine for DOM-like trees"; 17212 }; 17213 }; 17214 ··· 17293 sha256 = "1xd00821y795fy2rag8aizb5wsbbzfxgmdf9qwpvdxn3pgpyzz85"; 17294 }; 17295 propagatedBuildInputs = [ XMLParser ]; 17296 }; 17297 17298 XMLSimple = buildPerlPackage {
+4 -8
pkgs/top-level/python-packages.nix
··· 1287 1288 CommonMark = callPackage ../development/python-modules/commonmark { }; 1289 1290 - CommonMark_54 = self.CommonMark.overridePythonAttrs (oldAttrs: rec { 1291 - version = "0.5.4"; 1292 - src = oldAttrs.src.override { 1293 - inherit version; 1294 - sha256 = "34d73ec8085923c023930dfc0bcd1c4286e28a2a82de094bb72fabcc0281cbe5"; 1295 - }; 1296 - }); 1297 - 1298 coilmq = callPackage ../development/python-modules/coilmq { }; 1299 1300 colander = callPackage ../development/python-modules/colander { }; ··· 2806 2807 journalwatch = callPackage ../tools/system/journalwatch { 2808 inherit (self) systemd pytest; 2809 }; 2810 2811 jsondate = callPackage ../development/python-modules/jsondate { };
··· 1287 1288 CommonMark = callPackage ../development/python-modules/commonmark { }; 1289 1290 coilmq = callPackage ../development/python-modules/coilmq { }; 1291 1292 colander = callPackage ../development/python-modules/colander { }; ··· 2798 2799 journalwatch = callPackage ../tools/system/journalwatch { 2800 inherit (self) systemd pytest; 2801 + }; 2802 + 2803 + jq = callPackage ../development/python-modules/jq { 2804 + inherit (pkgs) jq; 2805 }; 2806 2807 jsondate = callPackage ../development/python-modules/jsondate { };