lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge master into staging-next

+2223 -1286
+18
doc/languages-frameworks/rust.section.md
··· 75 75 } 76 76 ``` 77 77 78 + ### Building a crate with an absent or out-of-date Cargo.lock file 79 + 80 + `buildRustPackage` needs a `Cargo.lock` file to get all dependencies in the 81 + source code in a reproducible way. If it is missing or out-of-date one can use 82 + the `cargoPatches` attribute to update or add it. 83 + 84 + ``` 85 + { lib, rustPlatform, fetchFromGitHub }: 86 + 87 + rustPlatform.buildRustPackage rec { 88 + (...) 89 + cargoPatches = [ 90 + # a patch file to add/update Cargo.lock in the source code 91 + ./add-Cargo.lock.patch 92 + ]; 93 + } 94 + ``` 95 + 78 96 ## Compiling Rust crates using Nix instead of Cargo 79 97 80 98 ### Simple operation
+1 -1
lib/minver.nix
··· 1 1 # Expose the minimum required version for evaluating Nixpkgs 2 - "2.0" 2 + "2.2"
+6
maintainers/maintainer-list.nix
··· 7062 7062 githubId = 1588288; 7063 7063 name = "Shahrukh Khan"; 7064 7064 }; 7065 + shamilton = { 7066 + email = "sgn.hamilton@protonmail.com"; 7067 + github = "SCOTT-HAMILTON"; 7068 + githubId = 24496705; 7069 + name = "Scott Hamilton"; 7070 + }; 7065 7071 shanemikel = { 7066 7072 email = "shanepearlman@pm.me"; 7067 7073 github = "shanemikel";
+14
nixos/doc/manual/release-notes/rl-2009.xml
··· 441 441 recommended to only use lower-case characters. 442 442 </para> 443 443 </listitem> 444 + <listitem> 445 + <para> 446 + The GRUB specific option <option>boot.loader.grub.extraInitrd</option> 447 + has been replaced with the generic option 448 + <option>boot.initrd.secrets</option>. This option creates a secondary 449 + initrd from the specified files, rather than using a manually created 450 + initrd file. 451 + 452 + Due to an existing bug with <option>boot.loader.grub.extraInitrd</option>, 453 + it is not possible to directly boot an older generation that used that 454 + option. It is still possible to rollback to that generation if the required 455 + initrd file has not been deleted. 456 + </para> 457 + </listitem> 444 458 </itemizedlist> 445 459 </section> 446 460
+1 -3
nixos/modules/config/system-path.nix
··· 8 8 let 9 9 10 10 requiredPackages = map (pkg: setPrio ((pkg.meta.priority or 5) + 3) pkg) 11 - [ config.nix.package 12 - pkgs.acl 11 + [ pkgs.acl 13 12 pkgs.attr 14 13 pkgs.bashInteractive # bash with ncurses support 15 14 pkgs.bzip2 ··· 33 32 pkgs.nano 34 33 pkgs.ncurses 35 34 pkgs.netcat 36 - pkgs.nix-info 37 35 config.programs.ssh.package 38 36 pkgs.perl 39 37 pkgs.procps
-1
nixos/modules/module-list.nix
··· 806 806 ./services/security/torsocks.nix 807 807 ./services/security/usbguard.nix 808 808 ./services/security/vault.nix 809 - ./services/system/cgmanager.nix 810 809 ./services/system/cloud-init.nix 811 810 ./services/system/dbus.nix 812 811 ./services/system/earlyoom.nix
-3
nixos/modules/programs/bash/bash.nix
··· 238 238 "/share/bash-completion" 239 239 ]; 240 240 241 - environment.systemPackages = optional cfg.enableCompletion 242 - pkgs.nix-bash-completions; 243 - 244 241 environment.shells = 245 242 [ "/run/current-system/sw/bin/bash" 246 243 "/run/current-system/sw/bin/sh"
+1
nixos/modules/rename.nix
··· 24 24 (mkRemovedOptionModule [ "environment" "blcr" "enable" ] "The BLCR module has been removed") 25 25 (mkRemovedOptionModule [ "services" "beegfsEnable" ] "The BeeGFS module has been removed") 26 26 (mkRemovedOptionModule [ "services" "beegfs" ] "The BeeGFS module has been removed") 27 + (mkRemovedOptionModule ["services" "cgmanager" "enable"] "cgmanager was deprecated by lxc and therefore removed from nixpkgs.") 27 28 (mkRemovedOptionModule [ "services" "osquery" ] "The osquery module has been removed") 28 29 (mkRemovedOptionModule [ "services" "fourStore" ] "The fourStore module has been removed") 29 30 (mkRemovedOptionModule [ "services" "fourStoreEndpoint" ] "The fourStoreEndpoint module has been removed")
+18 -4
nixos/modules/services/continuous-integration/buildbot/master.nix
··· 16 16 factory = util.BuildFactory() 17 17 c = BuildmasterConfig = dict( 18 18 workers = [${concatStringsSep "," cfg.workers}], 19 - protocols = { 'pb': {'port': ${toString cfg.bpPort} } }, 19 + protocols = { 'pb': {'port': ${toString cfg.pbPort} } }, 20 20 title = '${escapeStr cfg.title}', 21 21 titleURL = '${escapeStr cfg.titleUrl}', 22 22 buildbotURL = '${escapeStr cfg.buildbotUrl}', ··· 155 155 description = "Specifies the Buildbot directory."; 156 156 }; 157 157 158 - bpPort = mkOption { 158 + pbPort = mkOption { 159 159 default = 9989; 160 - type = types.int; 161 - description = "Port where the master will listen to Buildbot Worker."; 160 + type = types.either types.str types.int; 161 + example = "'tcp:9990:interface=127.0.0.1'"; 162 + description = '' 163 + The buildmaster will listen on a TCP port of your choosing 164 + for connections from workers. 165 + It can also use this port for connections from remote Change Sources, 166 + status clients, and debug tools. 167 + This port should be visible to the outside world, and you’ll need to tell 168 + your worker admins about your choice. 169 + If put in (single) quotes, this can also be used as a connection string, 170 + as defined in the <link xlink:href="https://twistedmatrix.com/documents/current/core/howto/endpoints.html">ConnectionStrings guide</link>. 171 + ''; 162 172 }; 163 173 164 174 listenAddress = mkOption { ··· 263 273 }; 264 274 }; 265 275 }; 276 + 277 + imports = [ 278 + (mkRenamedOptionModule [ "services" "buildbot-master" "bpPort" ] [ "services" "buildbot-master" "pbPort" ]) 279 + ]; 266 280 267 281 meta.maintainers = with lib.maintainers; [ nand0p mic92 ]; 268 282 }
+3
nixos/modules/services/misc/gitlab.nix
··· 43 43 44 44 [gitlab-shell] 45 45 dir = "${cfg.packages.gitlab-shell}" 46 + secret_file = "${cfg.statePath}/gitlab_shell_secret" 47 + gitlab_url = "http+unix://${pathUrlQuote gitlabSocket}" 48 + http_settings = { self_signed_cert = false } 46 49 47 50 ${concatStringsSep "\n" (attrValues (mapAttrs (k: v: '' 48 51 [[storage]]
+6
nixos/modules/services/misc/nix-daemon.nix
··· 442 442 nix.binaryCachePublicKeys = [ "cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY=" ]; 443 443 nix.binaryCaches = [ "https://cache.nixos.org/" ]; 444 444 445 + environment.systemPackages = 446 + [ nix 447 + pkgs.nix-info 448 + ] 449 + ++ optional (config.programs.bash.enableCompletion && !versionAtLeast nixVersion "2.4pre") pkgs.nix-bash-completions; 450 + 445 451 environment.etc."nix/nix.conf".source = nixConf; 446 452 447 453 environment.etc."nix/registry.json".text = builtins.toJSON {
-26
nixos/modules/services/system/cgmanager.nix
··· 1 - { config, lib, pkgs, ... }: 2 - 3 - with lib; 4 - 5 - let 6 - cfg = config.services.cgmanager; 7 - in { 8 - meta.maintainers = [ maintainers.mic92 ]; 9 - 10 - ###### interface 11 - options.services.cgmanager.enable = mkEnableOption "cgmanager"; 12 - 13 - ###### implementation 14 - config = mkIf cfg.enable { 15 - systemd.services.cgmanager = { 16 - wantedBy = [ "multi-user.target" ]; 17 - description = "Cgroup management daemon"; 18 - restartIfChanged = false; 19 - serviceConfig = { 20 - ExecStart = "${pkgs.cgmanager}/bin/cgmanager -m name=systemd"; 21 - KillMode = "process"; 22 - Restart = "on-failure"; 23 - }; 24 - }; 25 - }; 26 - }
+21 -14
nixos/modules/system/boot/loader/grub/grub.nix
··· 60 60 inherit (efi) canTouchEfiVariables; 61 61 inherit (cfg) 62 62 version extraConfig extraPerEntryConfig extraEntries forceInstall useOSProber 63 - extraEntriesBeforeNixOS extraPrepareConfig extraInitrd configurationLimit copyKernels 63 + extraEntriesBeforeNixOS extraPrepareConfig configurationLimit copyKernels 64 64 default fsIdentifier efiSupport efiInstallAsRemovable gfxmodeEfi gfxmodeBios gfxpayloadEfi gfxpayloadBios; 65 65 path = with pkgs; makeBinPath ( 66 66 [ coreutils gnused gnugrep findutils diffutils btrfs-progs utillinux mdadm ] ··· 292 292 ''; 293 293 }; 294 294 295 - extraInitrd = mkOption { 296 - type = types.nullOr types.path; 297 - default = null; 298 - example = "/boot/extra_initramfs.gz"; 299 - description = '' 300 - The path to a second initramfs to be supplied to the kernel. 301 - This ramfs will not be copied to the store, so that it can 302 - contain secrets such as LUKS keyfiles or ssh keys. 303 - This implies that rolling back to a previous configuration 304 - won't rollback the state of this file. 305 - ''; 306 - }; 307 - 308 295 useOSProber = mkOption { 309 296 default = false; 310 297 type = types.bool; ··· 608 595 { path = "/boot"; inherit (cfg) devices; inherit (efi) efiSysMountPoint; } 609 596 ]; 610 597 598 + boot.loader.supportsInitrdSecrets = true; 599 + 611 600 system.build.installBootLoader = 612 601 let 613 602 install-grub-pl = pkgs.substituteAll { ··· 705 694 (mkRenamedOptionModule [ "boot" "grubDevice" ] [ "boot" "loader" "grub" "device" ]) 706 695 (mkRenamedOptionModule [ "boot" "bootMount" ] [ "boot" "loader" "grub" "bootDevice" ]) 707 696 (mkRenamedOptionModule [ "boot" "grubSplashImage" ] [ "boot" "loader" "grub" "splashImage" ]) 697 + (mkRemovedOptionModule [ "boot" "loader" "grub" "extraInitrd" ] '' 698 + This option has been replaced with the bootloader agnostic 699 + boot.initrd.secrets option. To migrate to the initrd secrets system, 700 + extract the extraInitrd archive into your main filesystem: 701 + 702 + # zcat /boot/extra_initramfs.gz | cpio -idvmD /etc/secrets/initrd 703 + /path/to/secret1 704 + /path/to/secret2 705 + 706 + then replace boot.loader.grub.extraInitrd with boot.initrd.secrets: 707 + 708 + boot.initrd.secrets = { 709 + "/path/to/secret1" = "/etc/secrets/initrd/path/to/secret1"; 710 + "/path/to/secret2" = "/etc/secrets/initrd/path/to/secret2"; 711 + }; 712 + 713 + See the boot.initrd.secrets option documentation for more information. 714 + '') 708 715 ]; 709 716 710 717 }
+23 -13
nixos/modules/system/boot/loader/grub/install-grub.pl
··· 49 49 my $extraPerEntryConfig = get("extraPerEntryConfig"); 50 50 my $extraEntries = get("extraEntries"); 51 51 my $extraEntriesBeforeNixOS = get("extraEntriesBeforeNixOS") eq "true"; 52 - my $extraInitrd = get("extraInitrd"); 53 52 my $splashImage = get("splashImage"); 54 53 my $splashMode = get("splashMode"); 55 54 my $backgroundColor = get("backgroundColor"); ··· 232 231 if ($copyKernels == 0) { 233 232 $grubStore = GrubFs($storePath); 234 233 } 235 - my $extraInitrdPath; 236 - if ($extraInitrd) { 237 - if (! -f $extraInitrd) { 238 - print STDERR "Warning: the specified extraInitrd " . $extraInitrd . " doesn't exist. Your system won't boot without it.\n"; 239 - } 240 - $extraInitrdPath = GrubFs($extraInitrd); 241 - } 242 234 243 235 # Generate the header. 244 236 my $conf .= "# Automatically generated. DO NOT EDIT THIS FILE!\n"; ··· 363 355 364 356 my $kernel = copyToKernelsDir(Cwd::abs_path("$path/kernel")); 365 357 my $initrd = copyToKernelsDir(Cwd::abs_path("$path/initrd")); 366 - if ($extraInitrd) { 367 - $initrd .= " " .$extraInitrdPath->path; 358 + 359 + # Include second initrd with secrets 360 + if (-e -x "$path/append-initrd-secrets") { 361 + my $initrdName = basename($initrd); 362 + my $initrdSecretsPath = "$bootPath/kernels/$initrdName-secrets"; 363 + 364 + mkpath(dirname($initrdSecretsPath), 0, 0755); 365 + my $oldUmask = umask; 366 + # Make sure initrd is not world readable (won't work if /boot is FAT) 367 + umask 0137; 368 + my $initrdSecretsPathTemp = File::Temp::mktemp("$initrdSecretsPath.XXXXXXXX"); 369 + system("$path/append-initrd-secrets", $initrdSecretsPathTemp) == 0 or die "failed to create initrd secrets\n"; 370 + # Check whether any secrets were actually added 371 + if (-e $initrdSecretsPathTemp && ! -z _) { 372 + rename $initrdSecretsPathTemp, $initrdSecretsPath or die "failed to move initrd secrets into place\n"; 373 + $copied{$initrdSecretsPath} = 1; 374 + $initrd .= " " . ($grubBoot->path eq "/" ? "" : $grubBoot->path) . "/kernels/$initrdName-secrets"; 375 + } else { 376 + unlink $initrdSecretsPathTemp; 377 + rmdir dirname($initrdSecretsPathTemp); 378 + } 379 + umask $oldUmask; 368 380 } 381 + 369 382 my $xen = -e "$path/xen.gz" ? copyToKernelsDir(Cwd::abs_path("$path/xen.gz")) : undef; 370 383 371 384 # FIXME: $confName ··· 387 400 $conf .= $grubBoot->search . "\n"; 388 401 if ($copyKernels == 0) { 389 402 $conf .= $grubStore->search . "\n"; 390 - } 391 - if ($extraInitrd) { 392 - $conf .= $extraInitrdPath->search . "\n"; 393 403 } 394 404 $conf .= " $extraPerEntryConfig\n" if $extraPerEntryConfig; 395 405 $conf .= " multiboot $xen $xenParams\n" if $xen;
+1 -2
nixos/modules/system/boot/stage-1.nix
··· 517 517 }; 518 518 519 519 boot.initrd.secrets = mkOption 520 - { internal = true; 521 - default = {}; 520 + { default = {}; 522 521 type = types.attrsOf (types.nullOr types.path); 523 522 description = 524 523 ''
+76 -16
nixos/tests/mysql/mysql.nix
··· 5 5 }; 6 6 7 7 nodes = { 8 - mysql = 8 + mysql57 = 9 9 { pkgs, ... }: 10 10 11 11 { 12 + users.users.testuser = { }; 13 + users.users.testuser2 = { }; 12 14 services.mysql.enable = true; 13 15 services.mysql.initialDatabases = [ 14 - { name = "testdb"; schema = ./testdb.sql; } 15 - { name = "empty_testdb"; } 16 + { name = "testdb3"; schema = ./testdb.sql; } 16 17 ]; 17 18 # note that using pkgs.writeText here is generally not a good idea, 18 19 # as it will store the password in world-readable /nix/store ;) 19 20 services.mysql.initialScript = pkgs.writeText "mysql-init.sql" '' 20 - CREATE USER 'passworduser'@'localhost' IDENTIFIED BY 'password123'; 21 + CREATE USER 'testuser3'@'localhost' IDENTIFIED BY 'secure'; 22 + GRANT ALL PRIVILEGES ON testdb3.* TO 'testuser3'@'localhost'; 21 23 ''; 24 + services.mysql.ensureDatabases = [ "testdb" "testdb2" ]; 25 + services.mysql.ensureUsers = [{ 26 + name = "testuser"; 27 + ensurePermissions = { 28 + "testdb.*" = "ALL PRIVILEGES"; 29 + }; 30 + } { 31 + name = "testuser2"; 32 + ensurePermissions = { 33 + "testdb2.*" = "ALL PRIVILEGES"; 34 + }; 35 + }]; 22 36 services.mysql.package = pkgs.mysql57; 23 37 }; 24 38 ··· 30 44 # Kernel panic - not syncing: Out of memory: compulsory panic_on_oom is enabled 31 45 virtualisation.memorySize = 1024; 32 46 47 + users.users.testuser = { }; 48 + users.users.testuser2 = { }; 33 49 services.mysql.enable = true; 34 50 services.mysql.initialDatabases = [ 35 - { name = "testdb"; schema = ./testdb.sql; } 36 - { name = "empty_testdb"; } 51 + { name = "testdb3"; schema = ./testdb.sql; } 37 52 ]; 38 53 # note that using pkgs.writeText here is generally not a good idea, 39 54 # as it will store the password in world-readable /nix/store ;) 40 55 services.mysql.initialScript = pkgs.writeText "mysql-init.sql" '' 41 - CREATE USER 'passworduser'@'localhost' IDENTIFIED BY 'password123'; 56 + CREATE USER 'testuser3'@'localhost' IDENTIFIED BY 'secure'; 57 + GRANT ALL PRIVILEGES ON testdb3.* TO 'testuser3'@'localhost'; 42 58 ''; 59 + services.mysql.ensureDatabases = [ "testdb" "testdb2" ]; 60 + services.mysql.ensureUsers = [{ 61 + name = "testuser"; 62 + ensurePermissions = { 63 + "testdb.*" = "ALL PRIVILEGES"; 64 + }; 65 + } { 66 + name = "testuser2"; 67 + ensurePermissions = { 68 + "testdb2.*" = "ALL PRIVILEGES"; 69 + }; 70 + }]; 43 71 services.mysql.package = pkgs.mysql80; 44 72 }; 45 73 ··· 81 109 testScript = '' 82 110 start_all() 83 111 84 - mysql.wait_for_unit("mysql") 85 - mysql.succeed("echo 'use empty_testdb;' | mysql -u root") 86 - mysql.succeed("echo 'use testdb; select * from tests;' | mysql -u root -N | grep 4") 87 - # ';' acts as no-op, just check whether login succeeds with the user created from the initialScript 88 - mysql.succeed("echo ';' | mysql -u passworduser --password=password123") 112 + mysql57.wait_for_unit("mysql") 113 + mysql57.succeed( 114 + "echo 'use testdb; create table tests (test_id INT, PRIMARY KEY (test_id));' | sudo -u testuser mysql -u testuser" 115 + ) 116 + mysql57.succeed( 117 + "echo 'use testdb; insert into tests values (41);' | sudo -u testuser mysql -u testuser" 118 + ) 119 + # Ensure testuser2 is not able to insert into testdb as mysql testuser2 120 + mysql57.fail( 121 + "echo 'use testdb; insert into tests values (22);' | sudo -u testuser2 mysql -u testuser2" 122 + ) 123 + # Ensure testuser2 is not able to authenticate as mysql testuser 124 + mysql57.fail( 125 + "echo 'use testdb; insert into tests values (22);' | sudo -u testuser2 mysql -u testuser" 126 + ) 127 + mysql57.succeed( 128 + "echo 'use testdb; select test_id from tests;' | sudo -u testuser mysql -u testuser -N | grep 41" 129 + ) 130 + mysql57.succeed( 131 + "echo 'use testdb3; select * from tests;' | mysql -u testuser3 --password=secure -N | grep 4" 132 + ) 89 133 90 134 mysql80.wait_for_unit("mysql") 91 - mysql80.succeed("echo 'use empty_testdb;' | mysql -u root") 92 - mysql80.succeed("echo 'use testdb; select * from tests;' | mysql -u root -N | grep 4") 93 - # ';' acts as no-op, just check whether login succeeds with the user created from the initialScript 94 - mysql80.succeed("echo ';' | mysql -u passworduser --password=password123") 135 + mysql80.succeed( 136 + "echo 'use testdb; create table tests (test_id INT, PRIMARY KEY (test_id));' | sudo -u testuser mysql -u testuser" 137 + ) 138 + mysql80.succeed( 139 + "echo 'use testdb; insert into tests values (41);' | sudo -u testuser mysql -u testuser" 140 + ) 141 + # Ensure testuser2 is not able to insert into testdb as mysql testuser2 142 + mysql80.fail( 143 + "echo 'use testdb; insert into tests values (22);' | sudo -u testuser2 mysql -u testuser2" 144 + ) 145 + # Ensure testuser2 is not able to authenticate as mysql testuser 146 + mysql80.fail( 147 + "echo 'use testdb; insert into tests values (22);' | sudo -u testuser2 mysql -u testuser" 148 + ) 149 + mysql80.succeed( 150 + "echo 'use testdb; select test_id from tests;' | sudo -u testuser mysql -u testuser -N | grep 41" 151 + ) 152 + mysql80.succeed( 153 + "echo 'use testdb3; select * from tests;' | mysql -u testuser3 --password=secure -N | grep 4" 154 + ) 95 155 96 156 mariadb.wait_for_unit("mysql") 97 157 mariadb.succeed(
+1 -1
pkgs/applications/editors/vscode/with-extensions.nix
··· 70 70 ln -sT "${vscode}/share/applications/${executableName}.desktop" "$out/share/applications/${executableName}.desktop" 71 71 ln -sT "${vscode}/share/applications/${executableName}-url-handler.desktop" "$out/share/applications/${executableName}-url-handler.desktop" 72 72 makeWrapper "${vscode}/bin/${executableName}" "$out/bin/${executableName}" ${lib.optionalString (vscodeExtensions != []) '' 73 - --add-flags "--extensions-dir ${combinedExtensionsDrv}" 73 + --add-flags "--extensions-dir ${combinedExtensionsDrv}/share/vscode/extensions" 74 74 ''} 75 75 ''
-28
pkgs/applications/graphics/PythonMagick/default.nix
··· 1 - # This expression provides Python bindings to ImageMagick. Python libraries are supposed to be called via `python-packages.nix`. 2 - 3 - { stdenv, fetchurl, python, pkgconfig, imagemagick, autoreconfHook }: 4 - 5 - stdenv.mkDerivation rec { 6 - pname = "pythonmagick"; 7 - version = "0.9.16"; 8 - 9 - src = fetchurl { 10 - url = "mirror://imagemagick/python/releases/PythonMagick-${version}.tar.xz"; 11 - sha256 = "137278mfb5079lns2mmw73x8dhpzgwha53dyl00mmhj2z25varpn"; 12 - }; 13 - 14 - postPatch = '' 15 - rm configure 16 - ''; 17 - 18 - configureFlags = [ "--with-boost=${python.pkgs.boost}" ]; 19 - 20 - nativeBuildInputs = [ pkgconfig autoreconfHook ]; 21 - buildInputs = [ python python.pkgs.boost imagemagick ]; 22 - 23 - meta = with stdenv.lib; { 24 - homepage = "http://www.imagemagick.org/script/api.php"; 25 - license = licenses.imagemagick; 26 - description = "PythonMagick provides object oriented bindings for the ImageMagick Library."; 27 - }; 28 - }
+14 -6
pkgs/applications/graphics/freecad/default.nix
··· 1 - { stdenv, mkDerivation, fetchFromGitHub, fetchpatch, cmake, ninja, coin3d, xercesc, ode 2 - , eigen, qtbase, qttools, qtwebkit, opencascade-occt, gts, hdf5, vtk, medfile 3 - , zlib, python3Packages, swig, gfortran, libXmu, soqt, libf2c, libGLU 4 - , makeWrapper, pkgconfig, mpi ? null }: 1 + { stdenv, mkDerivation, fetchFromGitHub, fetchpatch, cmake, ninja, coin3d, 2 + xercesc, ode, eigen, qtbase, qttools, qtwebkit, wrapQtAppsHook, 3 + opencascade-occt, gts, hdf5, vtk, medfile, zlib, python3Packages, swig, 4 + gfortran, libXmu, soqt, libf2c, libGLU, makeWrapper, pkgconfig, mpi ? null }: 5 5 6 6 assert mpi != null; 7 7 ··· 18 18 sha256 = "1phs9a0px5fnzpyx930cz39p5dis0f0yajxzii3c3sazgkzrd55s"; 19 19 }; 20 20 21 - nativeBuildInputs = [ cmake ninja pkgconfig pythonPackages.pyside2-tools ]; 22 - buildInputs = [ cmake coin3d xercesc ode eigen opencascade-occt gts 21 + nativeBuildInputs = [ 22 + cmake 23 + ninja 24 + pkgconfig 25 + pythonPackages.pyside2-tools 26 + wrapQtAppsHook 27 + ]; 28 + 29 + buildInputs = [ 30 + cmake coin3d xercesc ode eigen opencascade-occt gts 23 31 zlib swig gfortran soqt libf2c makeWrapper mpi vtk hdf5 medfile 24 32 libGLU libXmu qtbase qttools qtwebkit 25 33 ] ++ (with pythonPackages; [
+4 -4
pkgs/applications/misc/josm/default.nix
··· 1 1 { stdenv, fetchurl, fetchsvn, makeWrapper, unzip, jre, libXxf86vm }: 2 2 let 3 3 pname = "josm"; 4 - version = "16239"; 4 + version = "16538"; 5 5 srcs = { 6 6 jar = fetchurl { 7 7 url = "https://josm.openstreetmap.de/download/josm-snapshot-${version}.jar"; 8 - sha256 = "041n81mnd587043f8wwjv8ckbx0hlsqf3pc7hzbns1y89xdghms1"; 8 + sha256 = "07hzwcjnfbl3s8l0m6japln0clm6wjm1zd3r1pd47b1dvclnyv28"; 9 9 }; 10 10 macosx = fetchurl { 11 11 url = "https://josm.openstreetmap.de/download/macosx/josm-macosx-${version}.zip"; 12 - sha256 = "1nlw1rvwdfp1hhsxyjli8pylm0hb7k62sa0nqvgyiw54dz78n00c"; 12 + sha256 = "1y0ssrwfqnmcvxwjfa3gdc3m9a952n8l3pdx0zmmaqwws4kak2a2"; 13 13 }; 14 14 pkg = fetchsvn { 15 15 url = "https://josm.openstreetmap.de/svn/trunk/native/linux/tested"; 16 16 rev = version; 17 - sha256 = "1qqk4bal84wnb66jym6qrdi10ypzvdzihd4jk5rnyfl3wm5qafbi"; 17 + sha256 = "0ybjca6dhnbwl3xqwrc91c444fzs1zrlnz7qr3l79s1vll9r4qd1"; 18 18 }; 19 19 }; 20 20 in
+3 -3
pkgs/applications/misc/keepass-plugins/keeagent/default.nix
··· 1 1 { stdenv, buildEnv, fetchzip, mono }: 2 2 3 3 let 4 - version = "0.10.1"; 4 + version = "0.12.0"; 5 5 drv = stdenv.mkDerivation { 6 6 pname = "keeagent"; 7 7 inherit version; 8 8 9 9 src = fetchzip { 10 - url = "https://lechnology.com/wp-content/uploads/2018/04/KeeAgent_v0.10.1.zip"; 11 - sha256 = "0j7az6l9wcr8z66mfplkxwydd4bgz2p2vd69xncf0nxlfb0lshh7"; 10 + url = "https://lechnology.com/wp-content/uploads/2020/05/KeeAgent_v0.12.0.zip"; 11 + sha256 = "0fcfbj3yikiv3dmp69236h9r3c416amdq849kn131w1129gb68xd"; 12 12 stripRoot = false; 13 13 }; 14 14
-18
pkgs/applications/misc/keepass/fix-paths.patch
··· 56 56 index ab49ee2..7f6c50f 100644 57 57 --- a/KeePass/Util/ClipboardUtil.Unix.cs 58 58 +++ b/KeePass/Util/ClipboardUtil.Unix.cs 59 - @@ -42,7 +42,7 @@ namespace KeePass.Util 60 - // string strGtk = GtkGetString(); 61 - // if(strGtk != null) return strGtk; 62 - 63 - - return (NativeLib.RunConsoleApp("pbpaste", "-pboard general") ?? 64 - + return (NativeLib.RunConsoleApp("@pbpaste@", "-pboard general") ?? 65 - string.Empty); 66 - } 67 - 68 - @@ -50,7 +50,7 @@ namespace KeePass.Util 69 - { 70 - // if(GtkSetString(str)) return; 71 - 72 - - NativeLib.RunConsoleApp("pbcopy", "-pboard general", str); 73 - + NativeLib.RunConsoleApp("@pbcopy@", "-pboard general", str); 74 - } 75 - 76 - private static string GetStringU() 77 59 @@ -62,7 +62,7 @@ namespace KeePass.Util 78 60 // "-out -selection clipboard"); 79 61 // if(str != null) return str;
+1 -1
pkgs/applications/misc/keepass/keepass-plugins-load.patch
··· 1 - + m_pluginManager.LoadAllPlugins("$PATH$/lib/dotnet/keepass", SearchOption.TopDirectoryOnly, new string[] {}); 1 + + m_pluginManager.LoadAllPlugins("$PATH$/lib/dotnet/keepass", System.IO.SearchOption.TopDirectoryOnly, new string[] {});
+1 -1
pkgs/applications/misc/keepass/keepass-plugins.patch
··· 11 11 index 347eaf5..b92e1e2 100644 12 12 --- a/KeePass/Forms/MainForm.cs 13 13 +++ b/KeePass/Forms/MainForm.cs 14 - @@ -440,7 +440,7 @@ namespace KeePass.Forms 14 + @@ -440,7 +440,$OUTPUT_LC$ @@ namespace KeePass.Forms 15 15 ToolStripItemCollection tsicT = m_ctxTray.Items; 16 16 ToolStripItem tsiPrevT = m_ctxTrayOptions; 17 17
+43
pkgs/applications/misc/ksmoothdock/default.nix
··· 1 + { lib 2 + , mkDerivation 3 + , fetchFromGitHub 4 + , fetchpatch 5 + , cmake 6 + , extra-cmake-modules 7 + , kactivities 8 + , qtbase 9 + }: 10 + 11 + mkDerivation rec { 12 + pname = "KSmoothDock"; 13 + version = "6.2"; 14 + 15 + src = fetchFromGitHub { 16 + owner = "dangvd"; 17 + repo = "ksmoothdock"; 18 + rev = "v${version}"; 19 + sha256 = "182x47cymgnp5xisa0xx93hmd5wrfigy8zccrr23p4r9hp8xbnam"; 20 + }; 21 + 22 + patches = [ 23 + # Fixed hard coded installation path to use CMAKE_INSTALL_BINDIR and CMAKE_INSTALL_PREFIX instead 24 + (fetchpatch { 25 + url = "https://github.com/dangvd/ksmoothdock/commit/00799bef8a1c1fe61ef9274866267d9fe9194041.patch"; 26 + sha256 = "1nmb7gf1ggzicxz8k4fd67xhwjy404myqzjpgjym66wqxm0arni4"; 27 + }) 28 + ]; 29 + 30 + nativeBuildInputs = [ cmake extra-cmake-modules ]; 31 + 32 + buildInputs = [ kactivities qtbase ]; 33 + 34 + cmakeDir = "../src"; 35 + 36 + meta = with lib; { 37 + description = "A cool desktop panel for KDE Plasma 5"; 38 + license = licenses.mit; 39 + homepage = "https://dangvd.github.io/ksmoothdock/"; 40 + maintainers = with maintainers; [ shamilton ]; 41 + platforms = platforms.linux; 42 + }; 43 + }
+4 -2
pkgs/applications/misc/overmind/default.nix
··· 2 2 3 3 buildGoPackage rec { 4 4 pname = "overmind"; 5 - version = "2.0.3"; 5 + version = "2.1.1"; 6 6 goPackagePath = "github.com/DarthSim/overmind"; 7 7 8 8 nativeBuildInputs = [ makeWrapper ]; ··· 15 15 owner = "DarthSim"; 16 16 repo = pname; 17 17 rev = "v${version}"; 18 - sha256 = "0c551c240lqxdjg0jj01rh2fyhwls02k5lczlxacj05prp1plz9p"; 18 + sha256 = "0akqn8s1mgk5q00gzh3ymq7nrnkyi6avyaxxvbxnjyq9bxsqz327"; 19 19 }; 20 + 21 + goDeps = ./deps.nix; 20 22 21 23 meta = with lib; { 22 24 homepage = "https://github.com/DarthSim/overmind";
+147
pkgs/applications/misc/overmind/deps.nix
··· 1 + # file generated from go.mod using vgo2nix (https://github.com/adisbladis/vgo2nix) 2 + [ 3 + { 4 + goPackagePath = "github.com/BurntSushi/toml"; 5 + fetch = { 6 + type = "git"; 7 + url = "https://github.com/BurntSushi/toml"; 8 + rev = "v0.3.1"; 9 + sha256 = "1fjdwwfzyzllgiwydknf1pwjvy49qxfsczqx5gz3y0izs7as99j6"; 10 + }; 11 + } 12 + { 13 + goPackagePath = "github.com/DarthSim/godotenv"; 14 + fetch = { 15 + type = "git"; 16 + url = "https://github.com/DarthSim/godotenv"; 17 + rev = "v1.3.1"; 18 + sha256 = "0fb9nl5qrnv7f9w0pgg00ak34afw9kjgcql0l38z22faz2bhgl1q"; 19 + }; 20 + } 21 + { 22 + goPackagePath = "github.com/cpuguy83/go-md2man"; 23 + fetch = { 24 + type = "git"; 25 + url = "https://github.com/cpuguy83/go-md2man"; 26 + rev = "f79a8a8ca69d"; 27 + sha256 = "0r1f7v475dxxgzqci1mxfliwadcrk86ippflx9n411325l4g3ghv"; 28 + }; 29 + } 30 + { 31 + goPackagePath = "github.com/kardianos/osext"; 32 + fetch = { 33 + type = "git"; 34 + url = "https://github.com/kardianos/osext"; 35 + rev = "2bc1f35cddc0"; 36 + sha256 = "1pvrbrvmrf4mx0fxbfaphbzgqgwn8v6lkfk2vyrs0znxrs1xyc5r"; 37 + }; 38 + } 39 + { 40 + goPackagePath = "github.com/matoous/go-nanoid"; 41 + fetch = { 42 + type = "git"; 43 + url = "https://github.com/matoous/go-nanoid"; 44 + rev = "eab626deece6"; 45 + sha256 = "1a82lclk56y7c44jg7wn5vq733dmn0g20r5yqbchrxnpfl75dw89"; 46 + }; 47 + } 48 + { 49 + goPackagePath = "github.com/pkg/term"; 50 + fetch = { 51 + type = "git"; 52 + url = "https://github.com/pkg/term"; 53 + rev = "aa71e9d9e942"; 54 + sha256 = "1gyxnj4jq3z2k4gjwwlz8hn56c1ys8jvafdd61nd6qs8jwp6iqp3"; 55 + }; 56 + } 57 + { 58 + goPackagePath = "github.com/pmezard/go-difflib"; 59 + fetch = { 60 + type = "git"; 61 + url = "https://github.com/pmezard/go-difflib"; 62 + rev = "v1.0.0"; 63 + sha256 = "0c1cn55m4rypmscgf0rrb88pn58j3ysvc2d0432dp3c6fqg6cnzw"; 64 + }; 65 + } 66 + { 67 + goPackagePath = "github.com/russross/blackfriday"; 68 + fetch = { 69 + type = "git"; 70 + url = "https://github.com/russross/blackfriday"; 71 + rev = "v2.0.1"; 72 + sha256 = "0nlz7isdd4rgnwzs68499hlwicxz34j2k2a0b8jy0y7ycd2bcr5j"; 73 + }; 74 + } 75 + { 76 + goPackagePath = "github.com/sevlyar/go-daemon"; 77 + fetch = { 78 + type = "git"; 79 + url = "https://github.com/sevlyar/go-daemon"; 80 + rev = "v0.1.5"; 81 + sha256 = "1y3gnxaifykcjcbzx91lz9bc93b95w3xj4rjxjbii26pm3j7gqyk"; 82 + }; 83 + } 84 + { 85 + goPackagePath = "github.com/shurcooL/sanitized_anchor_name"; 86 + fetch = { 87 + type = "git"; 88 + url = "https://github.com/shurcooL/sanitized_anchor_name"; 89 + rev = "v1.0.0"; 90 + sha256 = "1gv9p2nr46z80dnfjsklc6zxbgk96349sdsxjz05f3z6wb6m5l8f"; 91 + }; 92 + } 93 + { 94 + goPackagePath = "github.com/urfave/cli"; 95 + fetch = { 96 + type = "git"; 97 + url = "https://github.com/urfave/cli"; 98 + rev = "v1.22.2"; 99 + sha256 = "10mcnvi5qmn00vpyk6si8gjka7p654wr9hac4zc9w5h3ickhvbdc"; 100 + }; 101 + } 102 + { 103 + goPackagePath = "golang.org/x/crypto"; 104 + fetch = { 105 + type = "git"; 106 + url = "https://go.googlesource.com/crypto"; 107 + rev = "88737f569e3a"; 108 + sha256 = "02vkqfd6kc28zm6lffagw8nr78sayv6jabfgk9dcifl7826vi3k7"; 109 + }; 110 + } 111 + { 112 + goPackagePath = "golang.org/x/sys"; 113 + fetch = { 114 + type = "git"; 115 + url = "https://go.googlesource.com/sys"; 116 + rev = "81d4e9dc473e"; 117 + sha256 = "0074zjpkhclz5qbgjv0zmdwy6hmf5k2ri5yagnm6i12ahxaa48dr"; 118 + }; 119 + } 120 + { 121 + goPackagePath = "gopkg.in/check.v1"; 122 + fetch = { 123 + type = "git"; 124 + url = "https://gopkg.in/check.v1"; 125 + rev = "20d25e280405"; 126 + sha256 = "0k1m83ji9l1a7ng8a7v40psbymxasmssbrrhpdv2wl4rhs0nc3np"; 127 + }; 128 + } 129 + { 130 + goPackagePath = "gopkg.in/urfave/cli.v1"; 131 + fetch = { 132 + type = "git"; 133 + url = "https://gopkg.in/urfave/cli.v1"; 134 + rev = "v1.20.0"; 135 + sha256 = "0y6f4sbzkiiwrxbl15biivj8c7qwxnvm3zl2dd3mw4wzg4x10ygj"; 136 + }; 137 + } 138 + { 139 + goPackagePath = "gopkg.in/yaml.v2"; 140 + fetch = { 141 + type = "git"; 142 + url = "https://gopkg.in/yaml.v2"; 143 + rev = "v2.2.2"; 144 + sha256 = "01wj12jzsdqlnidpyjssmj0r4yavlqy7dwrg7adqd8dicjc4ncsa"; 145 + }; 146 + } 147 + ]
+2 -2
pkgs/applications/networking/browsers/palemoon/default.nix
··· 16 16 17 17 in stdenv.mkDerivation rec { 18 18 pname = "palemoon"; 19 - version = "28.9.1"; 19 + version = "28.9.3"; 20 20 21 21 src = fetchgit { 22 22 url = "https://github.com/MoonchildProductions/Pale-Moon.git"; 23 23 rev = "${version}_Release"; 24 - sha256 = "1772by9r9l1l0wmj4hs89r3zyckcbrq1krb09bn3pxvjjywzvkfl"; 24 + sha256 = "1f8vfjyihlr2l79mkfgdcvwjnh261n6imkps310x9x3977jiq2wr"; 25 25 fetchSubmodules = true; 26 26 }; 27 27
+3 -2
pkgs/applications/networking/instant-messengers/riot/riot-desktop-package.json
··· 2 2 "name": "riot-desktop", 3 3 "productName": "Riot", 4 4 "main": "src/electron-main.js", 5 - "version": "1.6.2", 5 + "version": "1.6.3", 6 6 "description": "A feature-rich client for Matrix.org", 7 7 "author": "New Vector Ltd.", 8 8 "repository": { ··· 14 14 "scripts": { 15 15 "mkdirs": "mkdirp packages deploys", 16 16 "fetch": "yarn run mkdirs && node scripts/fetch-package.js", 17 + "asar-webapp": "asar p webapp webapp.asar", 17 18 "start": "electron .", 18 19 "lint": "eslint src/ scripts/ hak/", 19 20 "build:native": "yarn run hak", ··· 47 48 "find-npm-prefix": "^1.0.2", 48 49 "fs-extra": "^8.1.0", 49 50 "glob": "^7.1.6", 50 - "matrix-js-sdk": "6.1.0", 51 + "matrix-js-sdk": "6.2.0", 51 52 "mkdirp": "^1.0.3", 52 53 "needle": "^2.3.2", 53 54 "node-pre-gyp": "^0.14.0",
+8 -8
pkgs/applications/networking/instant-messengers/riot/riot-desktop-yarndeps.nix
··· 146 146 }; 147 147 } 148 148 { 149 - name = "acorn___acorn_6.4.0.tgz"; 149 + name = "acorn___acorn_6.4.1.tgz"; 150 150 path = fetchurl { 151 - name = "acorn___acorn_6.4.0.tgz"; 152 - url = "https://registry.yarnpkg.com/acorn/-/acorn-6.4.0.tgz"; 153 - sha1 = "b659d2ffbafa24baf5db1cdbb2c94a983ecd2784"; 151 + name = "acorn___acorn_6.4.1.tgz"; 152 + url = "https://registry.yarnpkg.com/acorn/-/acorn-6.4.1.tgz"; 153 + sha1 = "531e58ba3f51b9dacb9a6646ca4debf5b14ca474"; 154 154 }; 155 155 } 156 156 { ··· 3154 3154 }; 3155 3155 } 3156 3156 { 3157 - name = "matrix_js_sdk___matrix_js_sdk_6.1.0.tgz"; 3157 + name = "matrix_js_sdk___matrix_js_sdk_6.2.0.tgz"; 3158 3158 path = fetchurl { 3159 - name = "matrix_js_sdk___matrix_js_sdk_6.1.0.tgz"; 3160 - url = "https://registry.yarnpkg.com/matrix-js-sdk/-/matrix-js-sdk-6.1.0.tgz"; 3161 - sha1 = "c28ad67c113c4aa9c8bce409c7ba550170bdc2ee"; 3159 + name = "matrix_js_sdk___matrix_js_sdk_6.2.0.tgz"; 3160 + url = "https://registry.yarnpkg.com/matrix-js-sdk/-/matrix-js-sdk-6.2.0.tgz"; 3161 + sha1 = "b1aa6f23858ab3ee4b66be25d3e854f6e287d36b"; 3162 3162 }; 3163 3163 } 3164 3164 {
+2 -2
pkgs/applications/networking/instant-messengers/riot/riot-desktop.nix
··· 8 8 9 9 let 10 10 executableName = "riot-desktop"; 11 - version = "1.6.2"; 11 + version = "1.6.3"; 12 12 src = fetchFromGitHub { 13 13 owner = "vector-im"; 14 14 repo = "riot-desktop"; 15 15 rev = "v${version}"; 16 - sha256 = "1anmch9z3na7rphxb0p9cnk55388z22iwfnfjhmjps1ii5wx4rls"; 16 + sha256 = "0dic2xpasf4m22275yrf7s8xnkh77n14cr62gd86j6g7x9rxa8fd"; 17 17 }; 18 18 electron = electron_7; 19 19
+2 -2
pkgs/applications/networking/instant-messengers/riot/riot-web.nix
··· 12 12 13 13 in stdenv.mkDerivation rec { 14 14 pname = "riot-web"; 15 - version = "1.6.2"; 15 + version = "1.6.3"; 16 16 17 17 src = fetchurl { 18 18 url = "https://github.com/vector-im/riot-web/releases/download/v${version}/riot-v${version}.tar.gz"; 19 - sha256 = "1cyjw3x9yh96cn84r95zziwxgifkmzd5kdf4l69b7mwnqcr78dp0"; 19 + sha256 = "1v8sz2shj2gjf0vlj7r8g9d2v0qbsg9x64bq5g62nglbnphkcv0k"; 20 20 }; 21 21 22 22 installPhase = ''
+2 -2
pkgs/applications/networking/instant-messengers/zoom-us/default.nix
··· 15 15 let 16 16 inherit (stdenv.lib) concatStringsSep makeBinPath optional; 17 17 18 - version = "5.0.413237.0524"; 18 + version = "5.0.418682.0603"; 19 19 srcs = { 20 20 x86_64-linux = fetchurl { 21 21 url = "https://zoom.us/client/${version}/zoom_x86_64.tar.xz"; 22 - sha256 = "09hr31pzjgwaa898akl953k7fcshkq8r065i2047mk247bjy278k"; 22 + sha256 = "1vlba3jgp3dr16n5g29l0dpdd054d8h6lkwk3a6346shvd46mpja"; 23 23 }; 24 24 }; 25 25
+245 -245
pkgs/applications/networking/mailreaders/thunderbird-bin/release_sources.nix
··· 1 1 { 2 - version = "68.8.1"; 2 + version = "68.9.0"; 3 3 sources = [ 4 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.8.1/linux-x86_64/ar/thunderbird-68.8.1.tar.bz2"; 4 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.9.0/linux-x86_64/ar/thunderbird-68.9.0.tar.bz2"; 5 5 locale = "ar"; 6 6 arch = "linux-x86_64"; 7 - sha512 = "0f604cf3e5efff225cc544b3f289056be05ec430cf1481162f3ab1a84234660802c2777de1552f2900ca9cbf43ff13a468d3c97a44896ea02189471676243d22"; 7 + sha512 = "7e0a07631f2130d2876e020f7f28817cbca343e0666abd156d8f5c48a7f4bb0f4775f6366deeffdcd0676172e3b75c48c02635d018a5f1050f635f334834908d"; 8 8 } 9 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.8.1/linux-x86_64/ast/thunderbird-68.8.1.tar.bz2"; 9 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.9.0/linux-x86_64/ast/thunderbird-68.9.0.tar.bz2"; 10 10 locale = "ast"; 11 11 arch = "linux-x86_64"; 12 - sha512 = "4c5a5dfdc6d81577df445cee8e4f875c95394f87037feffd47fa22bf4e153fc260f48676e8ff005d3248c31aa346b6756ba9468ae95e542e5814c5a98cfcf7e3"; 12 + sha512 = "47ef45548aeb20dc8dbd4f35bf12913b642986cf6071f060611696da99da30a2b10c9c8aaff8974f4fc02403026146b516e84f8f2244932f290202ef2aa59853"; 13 13 } 14 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.8.1/linux-x86_64/be/thunderbird-68.8.1.tar.bz2"; 14 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.9.0/linux-x86_64/be/thunderbird-68.9.0.tar.bz2"; 15 15 locale = "be"; 16 16 arch = "linux-x86_64"; 17 - sha512 = "fca5948534a7de3c8a6dafab22e45478b79c20d1722d58fc3f423e3c792d754bcf63993b9a8c1f1c6758ea1585dd700b1ce7631a21274b0f8a05e631992ae5ed"; 17 + sha512 = "c704c3e4be866d70c098b07bacdd4a1020ec109e92eb85c9c04d20d90db668a36bfef711acbe8bacb897543e3b8d499d35e54875bbe10fb3fc5436f8759828c3"; 18 18 } 19 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.8.1/linux-x86_64/bg/thunderbird-68.8.1.tar.bz2"; 19 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.9.0/linux-x86_64/bg/thunderbird-68.9.0.tar.bz2"; 20 20 locale = "bg"; 21 21 arch = "linux-x86_64"; 22 - sha512 = "907d252bdc8cf65b8d42ca5ee95cd7f43efe48f44d822558139ee04cee2b628966e11599f1d6db0ef5cff33a8ae424d514dc1df4e049a36432647dd3fa1039bf"; 22 + sha512 = "ac31e7ceb3042c2f2ac4c833687a9a44b6ec593b2d50da2edf9f11fa9bba378dea192cd472470cb7cdb2a0b708b84de688f2988f6161447cf00e5a13fe6cdd9f"; 23 23 } 24 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.8.1/linux-x86_64/br/thunderbird-68.8.1.tar.bz2"; 24 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.9.0/linux-x86_64/br/thunderbird-68.9.0.tar.bz2"; 25 25 locale = "br"; 26 26 arch = "linux-x86_64"; 27 - sha512 = "ca82cbb9f61c6ee285a7b075c79aaf4ae09a86b009ea004818fffb7abd8a12708943e5f2edeb89362f7841ed5f6b9099c9e15f6a7efb2dc261a1e63e569d83c9"; 27 + sha512 = "1c3342c2cca3061d07be17f57d967b1e9e478f5ff91cac1df1dbc901e102e2fbeb68375af20ccc0b6922364c62fcc44a6d7715aee43fef0b2165ac091427708c"; 28 28 } 29 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.8.1/linux-x86_64/ca/thunderbird-68.8.1.tar.bz2"; 29 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.9.0/linux-x86_64/ca/thunderbird-68.9.0.tar.bz2"; 30 30 locale = "ca"; 31 31 arch = "linux-x86_64"; 32 - sha512 = "3cc29b0a077b48ea0ab0d3cde6fb9cf6fe6cdcb1ea914be6ed6d38e1bf382f910fad7920e918d2c9c9131845bb24b2818cfc45349270ff636e8bc216fd2b3059"; 32 + sha512 = "2a0bca4b9fe58bb7872265384151ae7d2ed87122a9372ffd52752a11bec29b24a8d28f0e3102c0d6f84e545ccc6004fdace3bba7d68de206a3be5c72962c1a9e"; 33 33 } 34 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.8.1/linux-x86_64/cak/thunderbird-68.8.1.tar.bz2"; 34 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.9.0/linux-x86_64/cak/thunderbird-68.9.0.tar.bz2"; 35 35 locale = "cak"; 36 36 arch = "linux-x86_64"; 37 - sha512 = "184f74a10722a72ad622c54f221b62193259cdd54cd9dc4d71326219fd6dc533c723d5e926bfa0e7a3231a41864fefe578030329f0e24765ddad7459945cc75d"; 37 + sha512 = "ef27a17f5a44072596b753cd110ed4d24d7355649ddfae988a2d6622871421088d1502866226fc1f18bf8233478b5c00e98f10cf3f920ad6b4a7bad9c5e9cae2"; 38 38 } 39 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.8.1/linux-x86_64/cs/thunderbird-68.8.1.tar.bz2"; 39 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.9.0/linux-x86_64/cs/thunderbird-68.9.0.tar.bz2"; 40 40 locale = "cs"; 41 41 arch = "linux-x86_64"; 42 - sha512 = "1f76a6f2e9a4804c697d2842389d9fe0aaf1e8b30eaaf0aaf9ccd252c64a20d10b876011ec6cf54e4d6778d03a51673f4d941d1875ba66d31946bd446006daf8"; 42 + sha512 = "1a68ecf3ae228078c67b296a1642578d8e5a7808707e8a7eab4cbe8191a6b19057fca8e3c4faa660d6a64732ca3a052579fa652bbe5bb30a85d577f7b702e55e"; 43 43 } 44 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.8.1/linux-x86_64/cy/thunderbird-68.8.1.tar.bz2"; 44 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.9.0/linux-x86_64/cy/thunderbird-68.9.0.tar.bz2"; 45 45 locale = "cy"; 46 46 arch = "linux-x86_64"; 47 - sha512 = "28f9314997024728691ea43b4bb2eec51a8ce8a0da26025c1f6213eb2f20c140dee0c87950a325589c7af8b037f7378025dc05346a7156ee8ea200e89705ed84"; 47 + sha512 = "4d3cc4a57f3e210129ba47c2fc0798d852e4369a62dfefaf3b9a8fc77939431a7cc5839c667a062231ccf49e6eeedfc60c5492fdbf5eec080233b851203305f4"; 48 48 } 49 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.8.1/linux-x86_64/da/thunderbird-68.8.1.tar.bz2"; 49 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.9.0/linux-x86_64/da/thunderbird-68.9.0.tar.bz2"; 50 50 locale = "da"; 51 51 arch = "linux-x86_64"; 52 - sha512 = "d65d1b71b93b08bf783a691b26d39a6749c3b0ece109889ea9342f8dce681e47d4785010548f388d943e10632e9539f9747eb4b9ec7da524d8087300961fe3df"; 52 + sha512 = "79e655f62bc95b65640e3556d2690725ff012a16b2cbe656223a118294915c5619563fbdef9b88fd5db3f982cea5e8ad85a9bc389776ea95ab155539d6a4c217"; 53 53 } 54 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.8.1/linux-x86_64/de/thunderbird-68.8.1.tar.bz2"; 54 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.9.0/linux-x86_64/de/thunderbird-68.9.0.tar.bz2"; 55 55 locale = "de"; 56 56 arch = "linux-x86_64"; 57 - sha512 = "e140fe5153f3c2eadc5bac3891d4c2d2e03e0823da146d78c21884a28bbaa1fc1ea394c726bceaa20ffd2bfd8c1f841966de22fedd3e789b39b8dfabc2bbd930"; 57 + sha512 = "cad5d0c08e07f6d1247cae9737d0747875b9b35036892093230423d92530fe2de2975174dfd6ec0d2e2d7ddf86027601d37d3fce14343ad4cb89be5d68052785"; 58 58 } 59 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.8.1/linux-x86_64/dsb/thunderbird-68.8.1.tar.bz2"; 59 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.9.0/linux-x86_64/dsb/thunderbird-68.9.0.tar.bz2"; 60 60 locale = "dsb"; 61 61 arch = "linux-x86_64"; 62 - sha512 = "6c17e859826e48d59777a022273540696ec9c1da026922b46f4538067e34561d3717d2e4d092eae8de9c98bdf7d06a76ddc1af7f2832cd690a466a05d0e0e317"; 62 + sha512 = "15ca27de99125e4be3f6cf79ebe5e897efea14ea469040ab39ef2e0ab4a6ce61bb22f9afe95a670fcf9e1cf077512b8214226946e4f4a02e7bb04d136390bf6e"; 63 63 } 64 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.8.1/linux-x86_64/el/thunderbird-68.8.1.tar.bz2"; 64 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.9.0/linux-x86_64/el/thunderbird-68.9.0.tar.bz2"; 65 65 locale = "el"; 66 66 arch = "linux-x86_64"; 67 - sha512 = "c6d830ad93e67262e22dfc1b2551bd40034a3867fa61e5a4bba773db98405fc8c7683c5f606c591242ce95f1c520d754fbeb3eebb36458e3d78a4b8b19c5a3cf"; 67 + sha512 = "8fdda97681d04d9247d8030535d15888d24f3462ee8d91ac86ae9b0489ca4a2c759bbbcb151548786febed90de2ff4bf6e77fa55b8bc2b1cd4c8faef374fcc45"; 68 68 } 69 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.8.1/linux-x86_64/en-GB/thunderbird-68.8.1.tar.bz2"; 69 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.9.0/linux-x86_64/en-GB/thunderbird-68.9.0.tar.bz2"; 70 70 locale = "en-GB"; 71 71 arch = "linux-x86_64"; 72 - sha512 = "b39dc8f17de38c94332ed3dabfcd29bd8d8334e83010630cf2fc19f2a601dba9d6db64140a604dd4e1fb401d4d5dca718795503345a4e7bdab666e6fa7776d9b"; 72 + sha512 = "51ccb86fc17862c9264823568fb2453318a8b6625f1d51eecaa150358a9efe4a15126c1a132bc57834645ba3d5799f75dd48e7cacc6305970698bdcad85c0bfd"; 73 73 } 74 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.8.1/linux-x86_64/en-US/thunderbird-68.8.1.tar.bz2"; 74 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.9.0/linux-x86_64/en-US/thunderbird-68.9.0.tar.bz2"; 75 75 locale = "en-US"; 76 76 arch = "linux-x86_64"; 77 - sha512 = "ba1a090f72aa286d94dded8edfbadc7b9c05c4a7f37d485d0d91275dd97ec40322241b3c74f3c183ed13a6cdf6b1d8667858539fba130514eed72dc54e1f4a90"; 77 + sha512 = "ed6caacf356c6487a489e983275a2c3d00eac3b2282445667a1f26ac9ce217afb8261a929ccc9aa2bdf7a89101a86faee2ef87c16f0677ecf5abcc727397275f"; 78 78 } 79 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.8.1/linux-x86_64/es-AR/thunderbird-68.8.1.tar.bz2"; 79 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.9.0/linux-x86_64/es-AR/thunderbird-68.9.0.tar.bz2"; 80 80 locale = "es-AR"; 81 81 arch = "linux-x86_64"; 82 - sha512 = "8b280a3329421c9949821d78c891b7a0b9f7ac6e7ad40f99e49233ad6b3848188e7ed42c40bbaa67a31b270cb19644b033d4046ebeed0b1031567a2988ba98ce"; 82 + sha512 = "b8e75f5579740c8d0ae7ef30afb133b827c2e217bf9b0acdc8f117b6ffbd6c2674ff8670db87ede6db3c842af8d6f820bfa4370c0d611b7e74e99e8ad67a31b8"; 83 83 } 84 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.8.1/linux-x86_64/es-ES/thunderbird-68.8.1.tar.bz2"; 84 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.9.0/linux-x86_64/es-ES/thunderbird-68.9.0.tar.bz2"; 85 85 locale = "es-ES"; 86 86 arch = "linux-x86_64"; 87 - sha512 = "4f103d329c694c6b9d676739936ecb1fc61e23d7210252d8c87a28c916f063ef15437cb57949b5935269c922bc0221e2e9c6d536152503b087f0f00ea0946777"; 87 + sha512 = "e51df8034b18c8dc0d7fa024c3e58317a614f4da4d286c837efac3d21c59d1e58a786cc2ae0afae8730f81e96a4f0263e4fa09b552df3b58f915fd0cad133c62"; 88 88 } 89 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.8.1/linux-x86_64/et/thunderbird-68.8.1.tar.bz2"; 89 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.9.0/linux-x86_64/et/thunderbird-68.9.0.tar.bz2"; 90 90 locale = "et"; 91 91 arch = "linux-x86_64"; 92 - sha512 = "a3e61bfd84ac0c2087abdd2c311c53533ebcc79a87289469aa1708e4d276d44f41ddd657afec21b93d0b499a003014d500939af9d6bd0d4773072019cc19f59c"; 92 + sha512 = "a81e2bf12df9ba23b8d330599eb9d32d25cb862d3cbd109183c0164ccfd2036bd327aaba36248e85f738d02d15d59f9fcaa837101b154834b53b04d2925ad666"; 93 93 } 94 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.8.1/linux-x86_64/eu/thunderbird-68.8.1.tar.bz2"; 94 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.9.0/linux-x86_64/eu/thunderbird-68.9.0.tar.bz2"; 95 95 locale = "eu"; 96 96 arch = "linux-x86_64"; 97 - sha512 = "898add1a1d7315993b18b2e0d0851f07379c346efe905ca1ef8ee9e5fb249f819b720a1de127ce558b576c0c6b4916c52069d117a0d050414ccdeee239e04e11"; 97 + sha512 = "98a3b4e765683a9fdb9f1b128354ddc8f81ffb7bcdfb3ecc04431e84862d65184f220cddf86ba2a3442f87c27ea990a2868ebf68dce7328857718f9e02ecd474"; 98 98 } 99 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.8.1/linux-x86_64/fi/thunderbird-68.8.1.tar.bz2"; 99 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.9.0/linux-x86_64/fi/thunderbird-68.9.0.tar.bz2"; 100 100 locale = "fi"; 101 101 arch = "linux-x86_64"; 102 - sha512 = "d8e6a78f615af1d99c5d23ad050e49add43b06e3cccc727dae512a066d348adda414869adebcce1a4d6b32b0bf666e3a793c9150f521591fd53ab3bb2df04f25"; 102 + sha512 = "75d0523e83f9f95fdef45fb8b6de632eedb8b274225ac5c6d6d460cc7c129f7e34f735262cbc44e8f99957358e33eb8c8e2ce0cdbbd59d237dde468991139e6f"; 103 103 } 104 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.8.1/linux-x86_64/fr/thunderbird-68.8.1.tar.bz2"; 104 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.9.0/linux-x86_64/fr/thunderbird-68.9.0.tar.bz2"; 105 105 locale = "fr"; 106 106 arch = "linux-x86_64"; 107 - sha512 = "67541072216f3362d81bd0f2894a735562ad6703f583b51cfd114e9f591b3f4f7bf9ba70573f124e5209ff805e192d19ab37df6068306ed34ac98ef9292e7edd"; 107 + sha512 = "c7b070e1b5dbb682e6dd119436512c5e2200105294f1c4e84c88fc8326f342196da1abaf8b7b4882397cf797070a524c19b640fc41d532885b9ce867de46d055"; 108 108 } 109 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.8.1/linux-x86_64/fy-NL/thunderbird-68.8.1.tar.bz2"; 109 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.9.0/linux-x86_64/fy-NL/thunderbird-68.9.0.tar.bz2"; 110 110 locale = "fy-NL"; 111 111 arch = "linux-x86_64"; 112 - sha512 = "1a2be59965ab12c8380373e0dfff660b62d6f9121549799055cb0318dc40bb517b64d203b7c18c80814f0f1a1426db04781ddc896bdcc5c679f7de234fe35068"; 112 + sha512 = "bd93c4d482231c0c5444b653c045f4951d73c0c4c1ef9126757c41b30280f0009fddec38d8532af2c2e379a26128fe3b5e8db2857709fd2ed226d2fa73f0d88b"; 113 113 } 114 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.8.1/linux-x86_64/ga-IE/thunderbird-68.8.1.tar.bz2"; 114 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.9.0/linux-x86_64/ga-IE/thunderbird-68.9.0.tar.bz2"; 115 115 locale = "ga-IE"; 116 116 arch = "linux-x86_64"; 117 - sha512 = "37159206d5d6533b431ed445bd0fe7d22b654531a4f0f9313db35b8c2c55345d1f6cad18a1711aab6042a082324a843e3362a1399ecb20b3595575dea356b220"; 117 + sha512 = "f6da6b1635d44f217b1ffe9e446d4ce8fbc82ecd5fa8a0421abdf83a0bdaf46db35343a5345b009fdf09a8237475b393d2cf0cd3f52fa16cd2cca63b792a546b"; 118 118 } 119 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.8.1/linux-x86_64/gd/thunderbird-68.8.1.tar.bz2"; 119 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.9.0/linux-x86_64/gd/thunderbird-68.9.0.tar.bz2"; 120 120 locale = "gd"; 121 121 arch = "linux-x86_64"; 122 - sha512 = "b42fe49465f0bfc3d950006be6d6422f60572ad3e6be69e0bf78123e4672d5e93bc1abffc51226608a23a8786cd8689f46819cd1e098f38d94b201038ee7bf5b"; 122 + sha512 = "d6e4c7e51432c4bc81a9470615349624f2d8eea0d6092e53afb833a2cb4a9e770ea4c373fbef424e9139a1668cb695841fe2cf8c752befb650d0e72185693c5c"; 123 123 } 124 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.8.1/linux-x86_64/gl/thunderbird-68.8.1.tar.bz2"; 124 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.9.0/linux-x86_64/gl/thunderbird-68.9.0.tar.bz2"; 125 125 locale = "gl"; 126 126 arch = "linux-x86_64"; 127 - sha512 = "58be0afc433eb4ea47a2467efe8470cb710b56624cb64c308a7e54955b2792fef72b2f697e3055f86faee51f17a4e111f25f23e88e2e48f2377474e59a555d21"; 127 + sha512 = "763f2dc852ac4ecc4accd7140ea9c1945bc343342a01efe8b09470cc41f76fad4f61ec25c9456b10a16f9db528fc6aed802d949252b12e0d73c89c299ee813be"; 128 128 } 129 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.8.1/linux-x86_64/he/thunderbird-68.8.1.tar.bz2"; 129 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.9.0/linux-x86_64/he/thunderbird-68.9.0.tar.bz2"; 130 130 locale = "he"; 131 131 arch = "linux-x86_64"; 132 - sha512 = "15c24a2abfc20cd8ce7207f45707bb691b742ff07aa90cce1a79dbc20199ee06bb6f80d2db7cae521672678f37b824c567cc21844e234bb4e132866da490389d"; 132 + sha512 = "82d66c85f843978d9b2e3e0353e831c7779a16cc3a977f225ef93c92cd8eb8ac98afd255e40b1da0c21a356a7f290027b7f2c1c2ecce656524f21d3f8d962a4d"; 133 133 } 134 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.8.1/linux-x86_64/hr/thunderbird-68.8.1.tar.bz2"; 134 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.9.0/linux-x86_64/hr/thunderbird-68.9.0.tar.bz2"; 135 135 locale = "hr"; 136 136 arch = "linux-x86_64"; 137 - sha512 = "c4bd90516b22c77ea3fe667d198dc9e304b06495bad96715ea90172488b09083920099d282768d11ff86b1518cf0a9d56613c9243ab7416b0495addd85081822"; 137 + sha512 = "7c013aff2eb1d4d2330df3ec81dd4e6bc99f4ec9b620fd13cc487a02825669f7fbab84d8f9a2cb76cc34290dc301522505352b0985f75b7f26133cc0987d30e3"; 138 138 } 139 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.8.1/linux-x86_64/hsb/thunderbird-68.8.1.tar.bz2"; 139 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.9.0/linux-x86_64/hsb/thunderbird-68.9.0.tar.bz2"; 140 140 locale = "hsb"; 141 141 arch = "linux-x86_64"; 142 - sha512 = "e1ff1afdbb83579308927301e683d8c515928ce3dc50ca45391c81d9f66c0af8a61ca4ae140634760e0c0e4f3420a560e837d8490444282b480aea6c23ed92f8"; 142 + sha512 = "707059d39c02b2c95f18817757a4ab5fcdef4eba63645c93a8e1cdb37dd013633aaa7b67628d357e8c530a7d9394448d61fde9fae32befdb351502c27db3cd93"; 143 143 } 144 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.8.1/linux-x86_64/hu/thunderbird-68.8.1.tar.bz2"; 144 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.9.0/linux-x86_64/hu/thunderbird-68.9.0.tar.bz2"; 145 145 locale = "hu"; 146 146 arch = "linux-x86_64"; 147 - sha512 = "aaed51d4181ff7bd6eccd9801a21a653926ea448d8049c5a52a897f83a2cb463444e1f12d5c6d4a37b69a712a1bc5428a12d42eddb823c4a02732264fc5a1c1c"; 147 + sha512 = "238047229050a38375a05d9d16514c88c5312d56857b179d7818be4421e3fb6450558f378c18035707d2abbbbb878656f1aeff461fb9f6b0f7a1b9e7e9863b96"; 148 148 } 149 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.8.1/linux-x86_64/hy-AM/thunderbird-68.8.1.tar.bz2"; 149 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.9.0/linux-x86_64/hy-AM/thunderbird-68.9.0.tar.bz2"; 150 150 locale = "hy-AM"; 151 151 arch = "linux-x86_64"; 152 - sha512 = "5df858d448b72d5a6f320048df9ec3cfb8c08914d7c7b63006eb01b1dc6c77e9b7487a951be7e89bc41922e9c3bb9087298a55ae9da146291ea1d284967bdc6d"; 152 + sha512 = "871c444b878cdc2c63d96d389ff0ece2773862e825bf00bb4534475130f4b0b684dcad1002bc1d183f6c81b730bb3af1098d29b81dd7d07a5321e01fff3c39c6"; 153 153 } 154 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.8.1/linux-x86_64/id/thunderbird-68.8.1.tar.bz2"; 154 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.9.0/linux-x86_64/id/thunderbird-68.9.0.tar.bz2"; 155 155 locale = "id"; 156 156 arch = "linux-x86_64"; 157 - sha512 = "3ac1a1acd6b85404594caa11da1be1e55a980179a027b23fb323fb735c4d3bcf1ad12d25608d0f1ac3a89c30cd73a81fbb031112822fccb10e93d0c911504451"; 157 + sha512 = "518ce09cb9cedf086549873f6cc868235afa24fd04be3e2af00d92dcce8c1f08c7855c7af9c4cc21d2329187f2a28ddcbcdd46fb5a7f26f2993261e0f2cf7afc"; 158 158 } 159 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.8.1/linux-x86_64/is/thunderbird-68.8.1.tar.bz2"; 159 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.9.0/linux-x86_64/is/thunderbird-68.9.0.tar.bz2"; 160 160 locale = "is"; 161 161 arch = "linux-x86_64"; 162 - sha512 = "fb9569aa59fb4a084fa1c578c4d1ac49765e2e1a5f8a2445081797999d6c877b2e4aa13879d03b54b3f885d5d1054647cd891cc38f7e54db58b5c58b7e906486"; 162 + sha512 = "855c8d301067538bdd1494fb9a6b57e0182e94deab34a9aadc65dbe6a5829023145d88d4233f10702947fbbc7361812fea94b6a1352f687bc006988618781816"; 163 163 } 164 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.8.1/linux-x86_64/it/thunderbird-68.8.1.tar.bz2"; 164 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.9.0/linux-x86_64/it/thunderbird-68.9.0.tar.bz2"; 165 165 locale = "it"; 166 166 arch = "linux-x86_64"; 167 - sha512 = "0c3063e9deebdb4ef1bd08f0d7c0208fe16363fb87c7de0bae772987fa5a3800baf723482506c5957ed0b641cc04cdfa9a80e3e200cacf0eafd9b5fc1870a3b3"; 167 + sha512 = "d447dcae327ceab2edc4302235d9055d1b11ff0407dc3a05cb1f16f8a53c6bd71dbaf5c33766f5c343ec357cbf8a8702c637c0748f658aa2083d244de9fff968"; 168 168 } 169 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.8.1/linux-x86_64/ja/thunderbird-68.8.1.tar.bz2"; 169 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.9.0/linux-x86_64/ja/thunderbird-68.9.0.tar.bz2"; 170 170 locale = "ja"; 171 171 arch = "linux-x86_64"; 172 - sha512 = "bd12eb6ba2ac0c2c7caab313b726909ba35b2eaf21d70c7df98bd970a18e943042c69b7269a038f7edb852d0036cd2e34273aae77a2a4e31dbc05b3c61ec251e"; 172 + sha512 = "1ad5d5c0c7cb04fe7f471ea85557f8c4aac62eb9b7276b53fcc3111d3e37a7eed56e2e4521c1e978acc32c973618d84c05792b4100fbf9175d2a5db0c74eac1c"; 173 173 } 174 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.8.1/linux-x86_64/ka/thunderbird-68.8.1.tar.bz2"; 174 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.9.0/linux-x86_64/ka/thunderbird-68.9.0.tar.bz2"; 175 175 locale = "ka"; 176 176 arch = "linux-x86_64"; 177 - sha512 = "1ba48f3544e179b75c972c376a2dad256b7657124af9b4037cdef8a87bc0a3e237be79be8a53cf5286f6f5bfd048ecfa6f09624d4559bf5eb38432b4864995ab"; 177 + sha512 = "0d0f376c9a13165978e1b5d77e6b098f17ec552baa9e8e64d32b5d33c5b2d52f78c6e45ff92901f6c94cf9efc1d0349025c3dd7baff9693c9e5ce9f62e0a7c4f"; 178 178 } 179 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.8.1/linux-x86_64/kab/thunderbird-68.8.1.tar.bz2"; 179 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.9.0/linux-x86_64/kab/thunderbird-68.9.0.tar.bz2"; 180 180 locale = "kab"; 181 181 arch = "linux-x86_64"; 182 - sha512 = "5f598ae0de491cf253860c87eb80fa15e1fbbd06f17667f0a78747f412ad8fee9b4a472c1a89f096c9e765ad289ad8d80f86aed50b538e52c68188c41caffa3b"; 182 + sha512 = "76927cd9f2630d8aa4b501a8ff49ebdabeaf75ecf5dc166aaccc254d38493a94df7dc6d432bb68511b78b5e31b483859503bf846b4c2e7fee2ea4d40e4506db9"; 183 183 } 184 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.8.1/linux-x86_64/kk/thunderbird-68.8.1.tar.bz2"; 184 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.9.0/linux-x86_64/kk/thunderbird-68.9.0.tar.bz2"; 185 185 locale = "kk"; 186 186 arch = "linux-x86_64"; 187 - sha512 = "7e9d7cb00122945a2b74650b71712d1c761cc6df93de74c11812f0d39d25666c911beba60eba97376d9c1212ad0604577cfb46053052be420da1d2f6d53ad445"; 187 + sha512 = "1a0d0a328341a7efffb6fa5ebb7bdced15f8202d37520b1e2972a3f82f37053669d52e0a8a815a8a9f2cb439227fba2c6f25a5967f459b1d2d7140e16315cac1"; 188 188 } 189 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.8.1/linux-x86_64/ko/thunderbird-68.8.1.tar.bz2"; 189 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.9.0/linux-x86_64/ko/thunderbird-68.9.0.tar.bz2"; 190 190 locale = "ko"; 191 191 arch = "linux-x86_64"; 192 - sha512 = "5c4406cb82a5dc18235d158fc756eeeaa51bb2e791663ef00d315a56a595fa6290f030f0cad726a9ef98706a80146fe63a3cd5d3edea6869f7ceb4aeb1b7676e"; 192 + sha512 = "d4b654cfc6f0f8be641d844a52eb332c2218b419c7a699852ad693b90958d185ef29c2c1bba5b7b9e397e05fe1572b80b0f0df01e83b65edede368e0c6ad9ead"; 193 193 } 194 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.8.1/linux-x86_64/lt/thunderbird-68.8.1.tar.bz2"; 194 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.9.0/linux-x86_64/lt/thunderbird-68.9.0.tar.bz2"; 195 195 locale = "lt"; 196 196 arch = "linux-x86_64"; 197 - sha512 = "3bb3655934068fcb965fb73dd8ff455e48ea4cfe578e0f33a0c442f1f001731aef9fd3d426cf720b9decf610192d1d7722f408e9b8362e25932c3715e396ae27"; 197 + sha512 = "fdedc91f7bffbc4f464682f3a020ab161592015fe5c50180899eecf951e9f775cf5ef3cc6b5baf7faa58221f00e19fe99074f60d292ca258cf44dad2db0d0d69"; 198 198 } 199 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.8.1/linux-x86_64/ms/thunderbird-68.8.1.tar.bz2"; 199 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.9.0/linux-x86_64/ms/thunderbird-68.9.0.tar.bz2"; 200 200 locale = "ms"; 201 201 arch = "linux-x86_64"; 202 - sha512 = "0c6635d9e366a85b29549ba3329861d7912f9e1493bc7becb8cfa0225980c0c67b8e671f4f841a5aebb17e123ac4d38aa90ce9cc0bf72525918557a474262931"; 202 + sha512 = "1ecb61c99626dfbc8386364b747e94de7080facd6434813c8afeca60373d3cf07d2259ba90ed6de01c68a65e8b8408e58647d4e72b62f150f82da4a81e78f861"; 203 203 } 204 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.8.1/linux-x86_64/nb-NO/thunderbird-68.8.1.tar.bz2"; 204 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.9.0/linux-x86_64/nb-NO/thunderbird-68.9.0.tar.bz2"; 205 205 locale = "nb-NO"; 206 206 arch = "linux-x86_64"; 207 - sha512 = "2c9cca7bd403a0a20ad1911d924555612e8eba7b572d4ac3cc3d1fecf3ff294c729147e77675be1f1026702b41000e43b0930815cf08ea03f7fde757266bc15e"; 207 + sha512 = "45ec1f8def3d2b57e29a3fd22bc38f08a9c7b1ebf44e6dfb736ee13d09cb1bcfcd632c2f8594e3c531d35aa7b696d45ffa1bf5c4cad7e1304fa92763f923df43"; 208 208 } 209 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.8.1/linux-x86_64/nl/thunderbird-68.8.1.tar.bz2"; 209 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.9.0/linux-x86_64/nl/thunderbird-68.9.0.tar.bz2"; 210 210 locale = "nl"; 211 211 arch = "linux-x86_64"; 212 - sha512 = "a16f58d19f6ec59e9dd557a3b1cf8cc22326596d5505289b93bcd04e801e551608a286df03832e4711b91887c9a408bf36364e9a47be4840a828ce53e0f96f49"; 212 + sha512 = "20dd4c7e946e0fca871fddc3481f2f44b72939de3a7f5064ab8f062981ea717d47f2a3c09af32c9913556e2f5fc01fe1dd78c2d35b5fd44a7f35cdef1e4252d7"; 213 213 } 214 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.8.1/linux-x86_64/nn-NO/thunderbird-68.8.1.tar.bz2"; 214 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.9.0/linux-x86_64/nn-NO/thunderbird-68.9.0.tar.bz2"; 215 215 locale = "nn-NO"; 216 216 arch = "linux-x86_64"; 217 - sha512 = "10a0ce11cf64713079143cf8f357f8abc5001e9d285eb56b4c7e9f4f560d660de7e3bce544b7099e588f599a4a4b1c73241ea5e542d149d41dc8a4ccf21b332e"; 217 + sha512 = "c366bdbd0cda3143c7684c1cfd948965c2b80bd5076878cf3e98b9b5fb82baa6df419445ab0da134209a969baa0e36d759297bfda701d2ea4cd8c6720b61f123"; 218 218 } 219 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.8.1/linux-x86_64/pl/thunderbird-68.8.1.tar.bz2"; 219 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.9.0/linux-x86_64/pl/thunderbird-68.9.0.tar.bz2"; 220 220 locale = "pl"; 221 221 arch = "linux-x86_64"; 222 - sha512 = "8a6fec22b065d43ba320508992dca6d21f0782d4c4c28dbc6721852029f74c45b1451002c03f5deac70f09f3e9d07fcb161dd1a3943239231d10da4b2972f7ff"; 222 + sha512 = "163130f55ed9e0cbc68b48c41541748aa320d7a8fdb954c38fc25ca7e2dac6fea98b30b2653b6e8b31230ebd8364ca12281551e00375e4dd64b87515f08e6bec"; 223 223 } 224 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.8.1/linux-x86_64/pt-BR/thunderbird-68.8.1.tar.bz2"; 224 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.9.0/linux-x86_64/pt-BR/thunderbird-68.9.0.tar.bz2"; 225 225 locale = "pt-BR"; 226 226 arch = "linux-x86_64"; 227 - sha512 = "d57e6e42fef8a13bbe515089d2ee761509f464cc0a97a984e369bd96022dba7cd15dd40aaa9715b63531a161d708e06ec809bcda56c92968da1f11f5e66e62ac"; 227 + sha512 = "5e362e0c53f898d1d156c53415469fe965162047bf5ab55798ece681a33322d677a874b80f9f934067a847da9f2c45a62d63753b866e368585ac5f0844e410df"; 228 228 } 229 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.8.1/linux-x86_64/pt-PT/thunderbird-68.8.1.tar.bz2"; 229 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.9.0/linux-x86_64/pt-PT/thunderbird-68.9.0.tar.bz2"; 230 230 locale = "pt-PT"; 231 231 arch = "linux-x86_64"; 232 - sha512 = "064d2b04a60bceb7e300ec5f71e13fd1dd427bb89ae471760dc1933c574a36427581bd0d671335e9f52cdfc33f6b9addafcc703a093e2223d58e96e90982c491"; 232 + sha512 = "b322096fd6fb0778fc26146b69fa9a63f249e927de6d2ae3fd6093e3e24b4825ed29a1d09cb68de274aebeb06effdec78e6445fa5282dd6a733b2181ead21248"; 233 233 } 234 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.8.1/linux-x86_64/rm/thunderbird-68.8.1.tar.bz2"; 234 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.9.0/linux-x86_64/rm/thunderbird-68.9.0.tar.bz2"; 235 235 locale = "rm"; 236 236 arch = "linux-x86_64"; 237 - sha512 = "4a3025096ce81672a45de762c2ec2fa43d302310206fe04331fb6bd12d73e49427c3a9b9576f39fcfedceaedfa4d44f044b26245b15a8c2ef2fd8e127befe70a"; 237 + sha512 = "715075dabca54e27001f68b11e6c3c99fc5e20f1fcba637e7613584d84a97520e06fd73761bc6c780ae8abbec3121504fb1b51b615a35c0d8660381d71f94eb0"; 238 238 } 239 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.8.1/linux-x86_64/ro/thunderbird-68.8.1.tar.bz2"; 239 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.9.0/linux-x86_64/ro/thunderbird-68.9.0.tar.bz2"; 240 240 locale = "ro"; 241 241 arch = "linux-x86_64"; 242 - sha512 = "7b28416c0e2cbf248a7ab9cb6d72b5280f7e60f7bf8925a45575afb9a549dbed39f38a9d9984864d7c9dd246546b7597fa51ef7dc14597330fc4cd80cfebe95b"; 242 + sha512 = "fc279090426b3baef609f23228ac11d4665fd805d6118a4ecc2bfd1dd7b36d37004033db4be1095275c677a092026a083199e699b553c6eb82192db0190d844d"; 243 243 } 244 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.8.1/linux-x86_64/ru/thunderbird-68.8.1.tar.bz2"; 244 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.9.0/linux-x86_64/ru/thunderbird-68.9.0.tar.bz2"; 245 245 locale = "ru"; 246 246 arch = "linux-x86_64"; 247 - sha512 = "da97be95512ca48f688ff04c701bc7a0e351ad979f9c3ecf2c493aec79f694ecb09cb5399613262b90132934d6600852213d26a3281b48f1598aa692d2e13bd9"; 247 + sha512 = "8c575c2749cd719878ffba2c8158597222d1d494f2c3749c6b5253a8d75607f42a45799a288f85042d8390225f74ac55d7497abc76a8fc870f89f8f7b7a3c699"; 248 248 } 249 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.8.1/linux-x86_64/si/thunderbird-68.8.1.tar.bz2"; 249 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.9.0/linux-x86_64/si/thunderbird-68.9.0.tar.bz2"; 250 250 locale = "si"; 251 251 arch = "linux-x86_64"; 252 - sha512 = "d97a111b90bea06760ea58dcafdfb279de340ea1cdecde008e47f9eb101e77e39466890e70f874bcb7f6061de96ce32807476da7aa97c867bf8d9ac4c4d022ac"; 252 + sha512 = "b2edb098eea69332528f24a352e2cd318161ab3383cf13f878c7fdbca14f923f74a769fd494b435d0ef2fd760d4b7cfead063c91112fd44dfd3d4a47d4597549"; 253 253 } 254 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.8.1/linux-x86_64/sk/thunderbird-68.8.1.tar.bz2"; 254 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.9.0/linux-x86_64/sk/thunderbird-68.9.0.tar.bz2"; 255 255 locale = "sk"; 256 256 arch = "linux-x86_64"; 257 - sha512 = "f35670ec66342aa95c50d5cff47a9eff9faf3123174bbf5cf4156bbb1fd3ba98f47972328c0c33513cb92767e0a5dc67550a4a3259981c84b1bca035731544d9"; 257 + sha512 = "2dde57c16b15b823a698f7c17d98eadd5528ea29cbc50d22a586c3ad7357289f2c4719edf8ba47c59c3419383c64b8ff948582a58356719990340f5db0be84c9"; 258 258 } 259 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.8.1/linux-x86_64/sl/thunderbird-68.8.1.tar.bz2"; 259 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.9.0/linux-x86_64/sl/thunderbird-68.9.0.tar.bz2"; 260 260 locale = "sl"; 261 261 arch = "linux-x86_64"; 262 - sha512 = "49a9f388c696c1708b0bf76dbe3fb7a2836c128f6d40055c585f83c0b62b84b5efa3cc4e2c26889846045340ed8bf95fead053e79b8d7064b1488c3d306d9c94"; 262 + sha512 = "0014d8985ee139ec3ffae5ff18bcb8ac6f0921930853bab3ddcdcd6d21b9453aaa0af058068770dacb04bd1521b555945f9bfa7d9f47ba4a2adfd667fb067d78"; 263 263 } 264 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.8.1/linux-x86_64/sq/thunderbird-68.8.1.tar.bz2"; 264 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.9.0/linux-x86_64/sq/thunderbird-68.9.0.tar.bz2"; 265 265 locale = "sq"; 266 266 arch = "linux-x86_64"; 267 - sha512 = "77e9090243b04cc1f0e3dbd074f55f40949556f0284962d5a4cdac53f7c31ca2740fc71602d6eb7b391f0ad71c9a8e81e699ea94871f209c5771745241783698"; 267 + sha512 = "5aa41dfc73adbad839452077b436ff302d0e611fb342998a7f6bffe98fd634d7995a30f49f8640645052b9f68c149c71a6bcdf0fd2df7e3c67783bca3c4ef511"; 268 268 } 269 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.8.1/linux-x86_64/sr/thunderbird-68.8.1.tar.bz2"; 269 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.9.0/linux-x86_64/sr/thunderbird-68.9.0.tar.bz2"; 270 270 locale = "sr"; 271 271 arch = "linux-x86_64"; 272 - sha512 = "9fb67b03585edba5b1d25d4d5667f1cde44e53b7b9c32730fa294e2118698c63527c0abaecc90b2778943490f9167d8bc2cd4bba2aca7054a592fe653a11c759"; 272 + sha512 = "266d0030c7d018dd68d5cd8496eeba061453e1d5a37e99c1645aa9c677492d0da397b2a9e70aed5d927c2e955449ff5b75efbad74d60fea4bb4ef90c36d765ec"; 273 273 } 274 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.8.1/linux-x86_64/sv-SE/thunderbird-68.8.1.tar.bz2"; 274 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.9.0/linux-x86_64/sv-SE/thunderbird-68.9.0.tar.bz2"; 275 275 locale = "sv-SE"; 276 276 arch = "linux-x86_64"; 277 - sha512 = "d8aa3a745266ab30aa8c32c7ef034576ec293a02f214f8ce96beefecba877e2de3b7944aeca9a218dc587ab77b95f327a619bab5c192857327810c6e81e1b05f"; 277 + sha512 = "6ce755bf48a29522e1f0805d6fb37bdbf145f75a4b6fa176c06562bd1b6b272d752a3d638ab66bf66dd6dc67fd817d76e70cc31fdf9b201f56c6bacd058e49df"; 278 278 } 279 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.8.1/linux-x86_64/tr/thunderbird-68.8.1.tar.bz2"; 279 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.9.0/linux-x86_64/tr/thunderbird-68.9.0.tar.bz2"; 280 280 locale = "tr"; 281 281 arch = "linux-x86_64"; 282 - sha512 = "56ac7582ffd7fb8c0c8bc02216c2d0a5d4405e356385406c7fd6ae545d128c8c18488e75ea8d8d63de9313aa48f2fc93f3e5e1947298b2b32937af8d40c0fa51"; 282 + sha512 = "302b03ab2e23f6c0cac0fff85cfeacfcebabea838fef824b7d1733054fd9a3cb766dcff1dad333b199ea876a16ab7a059fe4e01289aef4ed481126c27011b4c6"; 283 283 } 284 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.8.1/linux-x86_64/uk/thunderbird-68.8.1.tar.bz2"; 284 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.9.0/linux-x86_64/uk/thunderbird-68.9.0.tar.bz2"; 285 285 locale = "uk"; 286 286 arch = "linux-x86_64"; 287 - sha512 = "d783440bdf153ee044204f1b1739f1fa771bfac6d8ed4c5e6fa2b72d406e3c50b3e76b5f9b644fcf5b5e0183584a51336670d5788a949070994206db7187c8e2"; 287 + sha512 = "b3d59d62dd3d3e6e9ce8be3c4c746c41a0a0962d1327d1187b0b2034d0c1691970d181405cc7ab7e2f1fcafec6caaa26863020f5edae4479e453718619b7d02e"; 288 288 } 289 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.8.1/linux-x86_64/uz/thunderbird-68.8.1.tar.bz2"; 289 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.9.0/linux-x86_64/uz/thunderbird-68.9.0.tar.bz2"; 290 290 locale = "uz"; 291 291 arch = "linux-x86_64"; 292 - sha512 = "7aa40bf1d31cc59d42f90f821b75a75610ca2a66a37003d103f1aaa83d5897388599d41a61346f614db7005bf14fbe0c45cfabbe3dc304c9a2704d2c5466362f"; 292 + sha512 = "73d36534f000d00a52988825c0145288d8d1eb944065d11231501f6e2906e97b0beb89d59b796d3f2828054ed9393e8f65866cfcaed6eb7f939cf657b6f3d740"; 293 293 } 294 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.8.1/linux-x86_64/vi/thunderbird-68.8.1.tar.bz2"; 294 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.9.0/linux-x86_64/vi/thunderbird-68.9.0.tar.bz2"; 295 295 locale = "vi"; 296 296 arch = "linux-x86_64"; 297 - sha512 = "ebe1eb9914f489e679d7b4935681b3c5c266e5cb3868507f662e1b4c6a5f791f8a653f3d1cf788758b9aed13fc436a76b20b80fd293563f25543af41372e2f7b"; 297 + sha512 = "b3ec66f92f5d023933e8dae18f0827f0fc8c5880890f9986b339f06b4e565cbe228bc2b0843924bd2a524a77ded7667e63c2747d2ff6c3789d57c8a68e440714"; 298 298 } 299 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.8.1/linux-x86_64/zh-CN/thunderbird-68.8.1.tar.bz2"; 299 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.9.0/linux-x86_64/zh-CN/thunderbird-68.9.0.tar.bz2"; 300 300 locale = "zh-CN"; 301 301 arch = "linux-x86_64"; 302 - sha512 = "b15026fffffba21ef50c98a8fe391a3f949a300b104d9d238c07d154d4279b70228e261083a00aca529f69739d3e79a36da3919bbb3cc19043faf182c25464c0"; 302 + sha512 = "e61e72c3dcd376d74e732d76c5a49203b47e2ea31c86bcdcaad673583795f5c01549fa2c5526205857e565f2a72b8abf8b2aa4e7ede45a94b218428607662a1e"; 303 303 } 304 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.8.1/linux-x86_64/zh-TW/thunderbird-68.8.1.tar.bz2"; 304 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.9.0/linux-x86_64/zh-TW/thunderbird-68.9.0.tar.bz2"; 305 305 locale = "zh-TW"; 306 306 arch = "linux-x86_64"; 307 - sha512 = "d5f654661851b4079e7fab3f71e4135f8928d59b822d87e8fa6cc8388fcd5aecc067a88790c27fa8bc4e7d95ff9fa123b8841efaa0e3eaa7bb9e97a50e2c7076"; 307 + sha512 = "f47bfe43ec5b570863ed1fc81828a23beb250db24fb77d2df2dfb5ec60a9c750f188cbda1a0f2927688865219f6a36695d87e4a8eb1fd642c4c9650dcf2e9063"; 308 308 } 309 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.8.1/linux-i686/ar/thunderbird-68.8.1.tar.bz2"; 309 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.9.0/linux-i686/ar/thunderbird-68.9.0.tar.bz2"; 310 310 locale = "ar"; 311 311 arch = "linux-i686"; 312 - sha512 = "9608a6b9e2ad0fa3853f413ae644d5a1c9cf56432b3fe546ad9fb60cd6fda2f42cd8e1a4eff5ac4acc6b95817d03107d248cd6971f049f7f1d95419a3125b0cf"; 312 + sha512 = "83a77d9f39196a8a3ec72469c038c835fb6b50872a2dd611519b178f5e46ef40293bfbdd908b3ce236681205b9b3ed133c845e357abb70285f9920401ad90cd2"; 313 313 } 314 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.8.1/linux-i686/ast/thunderbird-68.8.1.tar.bz2"; 314 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.9.0/linux-i686/ast/thunderbird-68.9.0.tar.bz2"; 315 315 locale = "ast"; 316 316 arch = "linux-i686"; 317 - sha512 = "1e06d68a8a7999005eee84e3da15c23c2bfc5b4fd03fd1c5ff9e8100f64f974bf894bd62e974d52db4ecf8030dc41de6446f797d83a62529679730b0f24861cd"; 317 + sha512 = "83084855cf03e66968d20d2caca749a9ff9d47b0cfdecdcedf0320b4bc7e628ff5f3a971ae1f6472c5a44facfcaee419250f55ebb254bff9f344c64772f54791"; 318 318 } 319 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.8.1/linux-i686/be/thunderbird-68.8.1.tar.bz2"; 319 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.9.0/linux-i686/be/thunderbird-68.9.0.tar.bz2"; 320 320 locale = "be"; 321 321 arch = "linux-i686"; 322 - sha512 = "82122ff9a1b1327bd3164f1d7c8d18e47d63dbb2981765f7fa7499ebf26f2937f714cddf7882c6c47a6b4f4a480e5a43c44c35eb7a4769988461945ff657e48f"; 322 + sha512 = "722bcaa29137994e36f70a438fddb5be55355cd85d414fcf70cb8bbaf66a9ab0fc21408cf282272dbe977f46b5aa63575c7504bef8292adbd8d4c6e308655411"; 323 323 } 324 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.8.1/linux-i686/bg/thunderbird-68.8.1.tar.bz2"; 324 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.9.0/linux-i686/bg/thunderbird-68.9.0.tar.bz2"; 325 325 locale = "bg"; 326 326 arch = "linux-i686"; 327 - sha512 = "1d95aa7716f43591943be6f2f5eedf502cdcb5f08d262e359e3560da7198e9108052d0c5bc5b5d594fd2d8a2560f9332acd661f518c1e3f534843d65dffd02a7"; 327 + sha512 = "95464ffd5256fb181599ad795fbfe5d9cfe8ef0c02a7830174ee4732761cd94a2cca75b6a686559e07d996640f5e973a660fc857f0839d6bea5594e61f2f7e4e"; 328 328 } 329 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.8.1/linux-i686/br/thunderbird-68.8.1.tar.bz2"; 329 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.9.0/linux-i686/br/thunderbird-68.9.0.tar.bz2"; 330 330 locale = "br"; 331 331 arch = "linux-i686"; 332 - sha512 = "6ee97fb0942474747676c191c25c27fffd91810b3ce3d4ae24bac25c3dd90b99192210c242192d533d6e85497f3d4638b0c8d2e939bae93f4dc1648c6b5c9dee"; 332 + sha512 = "fe09bb21248975aa60ffd74a970c9dcfbef578c1188bc1c3704c7411c2e94f88976ac7ac5e52a69ac6235723332f2fc76757ef9118092833fe64bf0a05e3ecf3"; 333 333 } 334 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.8.1/linux-i686/ca/thunderbird-68.8.1.tar.bz2"; 334 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.9.0/linux-i686/ca/thunderbird-68.9.0.tar.bz2"; 335 335 locale = "ca"; 336 336 arch = "linux-i686"; 337 - sha512 = "6b7a0e8b8e42b62585ccb333c16ffb19337afd2d68c673bb364f92248248a814ca57d6409a49959d2b8fa7bed1f9031bad1296e24ee7091e62b78a81c059a0bb"; 337 + sha512 = "01ac3c0090448f1ffc7c97623df8576a7a3c184a2bc1a2761f0e3451a18dee6d4f6bc37b305dcaea89930a1750a9541116bdf03f613b333ddc47d5f257b3bfc0"; 338 338 } 339 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.8.1/linux-i686/cak/thunderbird-68.8.1.tar.bz2"; 339 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.9.0/linux-i686/cak/thunderbird-68.9.0.tar.bz2"; 340 340 locale = "cak"; 341 341 arch = "linux-i686"; 342 - sha512 = "faf8b1a06ffc96cbc6a16e09290652f7a9c270d8dae4aba0d5685d250f8686957341b68459affc8215522cdd6166d1b5e7c498713e9ad8c981d07a97156ca4ab"; 342 + sha512 = "27dad086126a268f2c6700a5f01006c40e911ecbc95dc994da7cd2dadc3f2bd3bc94d5da15a297b2e72e8b20254d40c757456c308b70bae2c1d451ec6ad7d1d8"; 343 343 } 344 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.8.1/linux-i686/cs/thunderbird-68.8.1.tar.bz2"; 344 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.9.0/linux-i686/cs/thunderbird-68.9.0.tar.bz2"; 345 345 locale = "cs"; 346 346 arch = "linux-i686"; 347 - sha512 = "5aaa310e3e67b174114b6c440cc1ceb2b7d0d934b10685ca89e3b7a1cc859bd026ca8fdb8607d70da16c039c853a9f1f11ef94701c90172220d988da03e902d2"; 347 + sha512 = "b99dc13bf43a9aebd08f13fb113186e6e4a72c68d609895afc8a52c4909a0506f646ba394c705004272d1b91db4efc81a5518bbd06e359a8a24c85f4fbb30102"; 348 348 } 349 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.8.1/linux-i686/cy/thunderbird-68.8.1.tar.bz2"; 349 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.9.0/linux-i686/cy/thunderbird-68.9.0.tar.bz2"; 350 350 locale = "cy"; 351 351 arch = "linux-i686"; 352 - sha512 = "7523a32ca26e46cd388142850c96ae256fa2e7774f5552771b3ea13a2b632feab637a2552b762b1f4bc56b81f92bed3b8139e994b46b515e98070115dd3624e5"; 352 + sha512 = "36c1557a9955e461128929b7be0f679a02592b65e4b401b052ecf1f467a231ba725c92eb96b8118bb75d49ae45f8287bb5fbeb22d94ba11dcf311cdb87170ee0"; 353 353 } 354 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.8.1/linux-i686/da/thunderbird-68.8.1.tar.bz2"; 354 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.9.0/linux-i686/da/thunderbird-68.9.0.tar.bz2"; 355 355 locale = "da"; 356 356 arch = "linux-i686"; 357 - sha512 = "0b528d5b0b4838fdb62e49c136f1d997ecfac946154a8c5515ac22a542e7c4e00c1a44dd8aefb4e20528301001d79c88e3fc97b60a10674ec4a3562c0807b508"; 357 + sha512 = "e81b41e38b322f2eddfd68c07f326ec9d716bdbdf31c3a02d22d9377002fd21b58a68a8ac952fed2ed164a02f8b20e9f6678c52fbaca741a4bcde1079ecbe38a"; 358 358 } 359 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.8.1/linux-i686/de/thunderbird-68.8.1.tar.bz2"; 359 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.9.0/linux-i686/de/thunderbird-68.9.0.tar.bz2"; 360 360 locale = "de"; 361 361 arch = "linux-i686"; 362 - sha512 = "792545f3fcbad3cb303bb5d91a90788374db1d41962180225f7d1ffaced19dd8b4352d36645df06926347dc31d6ff00eb0fee32efad27a15260115896e7cbcb0"; 362 + sha512 = "da6a44a2a6545b10bbe12644e433932c4410471f5948278b919baca1c6eb0181366114c1a6f611b897c71bf4091a6734393fd36f997c118f49466faa8dd2264d"; 363 363 } 364 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.8.1/linux-i686/dsb/thunderbird-68.8.1.tar.bz2"; 364 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.9.0/linux-i686/dsb/thunderbird-68.9.0.tar.bz2"; 365 365 locale = "dsb"; 366 366 arch = "linux-i686"; 367 - sha512 = "105c814511f32d85ede8c1991074bcde6ce72eb67280a883de13b69de4f74c4f97828dc3e5c170b1346ad22b4ad8b51329c3600979ca468bdbc444cc49b880bd"; 367 + sha512 = "6d19a0010553d1b08bc47a22c0c7f23bf4c86ca79ef3ca26c970cd502e6db003ccf045488f88d68a5b1b0ece4436de55d65592b314126b9b5792be30c9def553"; 368 368 } 369 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.8.1/linux-i686/el/thunderbird-68.8.1.tar.bz2"; 369 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.9.0/linux-i686/el/thunderbird-68.9.0.tar.bz2"; 370 370 locale = "el"; 371 371 arch = "linux-i686"; 372 - sha512 = "e7000a3e243b77cdaf6b46cff8380dfd1ecad3d07f69566f5d34f8e1ae15c582ef56eca8227fc75a8983bbb78736e935fe94dd1e7814e9b95158c9620985da4c"; 372 + sha512 = "67e6382474356c4ff25e6f49a7ee3859eba5bb29a4e795668e1ec52131dbaf0d87b9cfb8ffe1fa855bf8f34e841b8fac90c356545f47a711b533e3593219e957"; 373 373 } 374 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.8.1/linux-i686/en-GB/thunderbird-68.8.1.tar.bz2"; 374 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.9.0/linux-i686/en-GB/thunderbird-68.9.0.tar.bz2"; 375 375 locale = "en-GB"; 376 376 arch = "linux-i686"; 377 - sha512 = "87446eebfdc281eac83e7ad67900d06a2088b67d809f6f5ba1551a069a75d4ec4e642a241954671800ed4900b2930a11c4b8080fff06888c78acc0521d50e39e"; 377 + sha512 = "f4e1d9b10ffc96aa7ef4202e73445d98a06082abcb87fb60d951ce491ead7cee4bad5c1009270004540d03aaf383eb5b8203845f84335b523d92bb586ed5932c"; 378 378 } 379 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.8.1/linux-i686/en-US/thunderbird-68.8.1.tar.bz2"; 379 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.9.0/linux-i686/en-US/thunderbird-68.9.0.tar.bz2"; 380 380 locale = "en-US"; 381 381 arch = "linux-i686"; 382 - sha512 = "644a6d2b6df53d624dbc26301640d4b5f601f60fafafbd4a1ed07583d9258f89a4276655686187e09268c25dd9ecf1d8400ba3bc7e6c55d21dbd19a034614bca"; 382 + sha512 = "a8fcf918c869e8064c2dd39a03bb768616b1a5e4e1c6121aa544d72626bfb790625e2cc48dc973443b947c6e619f9481cb20239d544b10bdf287b7fa4e05128c"; 383 383 } 384 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.8.1/linux-i686/es-AR/thunderbird-68.8.1.tar.bz2"; 384 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.9.0/linux-i686/es-AR/thunderbird-68.9.0.tar.bz2"; 385 385 locale = "es-AR"; 386 386 arch = "linux-i686"; 387 - sha512 = "227ddddf7bbf47527f8911b122d74f9c718639a3028ba56a22b2c93dd665521d82b543b0b0814b5bf1923fbc6ef2b39d52fa60616c1c5e5474de067b762c5af4"; 387 + sha512 = "6b98ed36080e8eba879e305aa34ccc77e1735700d104f592095cf9810545bdf25665dd36a527e19cf12ec4cf782a6387e30f7b4406b76230c08a350f4cfd5fcc"; 388 388 } 389 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.8.1/linux-i686/es-ES/thunderbird-68.8.1.tar.bz2"; 389 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.9.0/linux-i686/es-ES/thunderbird-68.9.0.tar.bz2"; 390 390 locale = "es-ES"; 391 391 arch = "linux-i686"; 392 - sha512 = "746cc55bfab6a7c71282ebf63738bd7f8c8cab67a01329a3d125a84bdc5a7c210958a52881734315612845a0d386baa75373cc26ce9c5f51c7ccbddbbd752db2"; 392 + sha512 = "0cf479d98ce943e20871e7073188db3c9162dec8cf2b0abaedbaabfac9b29411dad39fdf44c038680956c42f7f7e303d5e2bf8d7ef9225fa093821ce760e9974"; 393 393 } 394 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.8.1/linux-i686/et/thunderbird-68.8.1.tar.bz2"; 394 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.9.0/linux-i686/et/thunderbird-68.9.0.tar.bz2"; 395 395 locale = "et"; 396 396 arch = "linux-i686"; 397 - sha512 = "655bf1fe4942388f357d89c2e7cdeacc4c09f95e3c7a6e25d3991aebd571c6270d45fc52e4b80884c87705232d8113b50f28d657abe49f907878187e03f6b752"; 397 + sha512 = "51584ee5c76710a9b805d4da528d5463f1e51e3efa6ca3b9cf3fc6bb6b953cac6b7919f908975905f619d9be75e4b9ea32980bd5f198f77dae0f75795465fc23"; 398 398 } 399 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.8.1/linux-i686/eu/thunderbird-68.8.1.tar.bz2"; 399 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.9.0/linux-i686/eu/thunderbird-68.9.0.tar.bz2"; 400 400 locale = "eu"; 401 401 arch = "linux-i686"; 402 - sha512 = "4581e53d1202bd5fbca9b20979a71d51752e8f1883855510722f499489fa40d77070bc71834d371843e6d5a601e0bde8a6c86a5c1c9857a1150a792ca9aeebb7"; 402 + sha512 = "bbcbd4a91856ebb9418c00feed41f00c93ffc5eed4af7c1c27585c707aa8dbfe4e48b0204cbb236a8205a219f0044811dc43f4cc94b6610f30d38120e3ab4b21"; 403 403 } 404 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.8.1/linux-i686/fi/thunderbird-68.8.1.tar.bz2"; 404 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.9.0/linux-i686/fi/thunderbird-68.9.0.tar.bz2"; 405 405 locale = "fi"; 406 406 arch = "linux-i686"; 407 - sha512 = "4109ca4d181485ead1ed865b101787c6d12879764fd5c399f73eeb23b157f09ad12f237d8b9460634441601d51e5cd4a3365657e3269aef614b6306339a3682f"; 407 + sha512 = "f03014cd7a28b4d85c2d896e8e2a5a1db959c7290c98cfd0c12839170956e98e0087685ab4304fbbdae42b06a8ff7b5563e70c9bbe0a787d2d9b4103019cf31a"; 408 408 } 409 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.8.1/linux-i686/fr/thunderbird-68.8.1.tar.bz2"; 409 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.9.0/linux-i686/fr/thunderbird-68.9.0.tar.bz2"; 410 410 locale = "fr"; 411 411 arch = "linux-i686"; 412 - sha512 = "53437450a3d67c79c4e44a223e846ac59eb2c534121e923649e0c44891437d5c180d15b43a00955706ada271ecfe651f1a9ca1c1e28830b200bbd6689411a536"; 412 + sha512 = "ce7b187a572da6bee677cc7849bd5123545bf437005b16a855d9e4bfcd58a10f3b095a3b0a767d5a67aa113c0a9e0d437827c37fe1c8bf84a3fc8c8d2c702a8d"; 413 413 } 414 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.8.1/linux-i686/fy-NL/thunderbird-68.8.1.tar.bz2"; 414 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.9.0/linux-i686/fy-NL/thunderbird-68.9.0.tar.bz2"; 415 415 locale = "fy-NL"; 416 416 arch = "linux-i686"; 417 - sha512 = "5c9cecc67893973aafad3b2eba78e82fe459b70a5b467fbeb9839ddad93371b6f6d77f96dad6f7a757821645d680f561f1cda45a360e556229e6202d60f2a75f"; 417 + sha512 = "2062090196c7b07ce148a2937027637469e7593ac092db0bf7139286faac51d350c786c0bfed6e32903bcb7f2ddc4e3df6e993f8637fc68c1aae1be89ceddc98"; 418 418 } 419 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.8.1/linux-i686/ga-IE/thunderbird-68.8.1.tar.bz2"; 419 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.9.0/linux-i686/ga-IE/thunderbird-68.9.0.tar.bz2"; 420 420 locale = "ga-IE"; 421 421 arch = "linux-i686"; 422 - sha512 = "2e23ae199d505493dff47191c599d116749d7d4d362906ab9022e1cf3b06d41694247167c96a3c92d58fc7e6c39e850773b7a2dfc2e1a8dbc63385e20a4ffa87"; 422 + sha512 = "fb11eadd35e46081a16116843a4a134b8197c4e8e1d1a52981a085f02bbda7ca49dbf1d9a88f4a7fe2542a99ff24f6d35fc661414cef1fb50edecb98c6693f4f"; 423 423 } 424 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.8.1/linux-i686/gd/thunderbird-68.8.1.tar.bz2"; 424 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.9.0/linux-i686/gd/thunderbird-68.9.0.tar.bz2"; 425 425 locale = "gd"; 426 426 arch = "linux-i686"; 427 - sha512 = "1d703587272271a8787c0ea6020888b202f5f07f529e8f5e448b57adab781946625511941d37d6527e52d027d02be121ef8e5b0d6ff05494a2aad775bfa467e8"; 427 + sha512 = "e9b985732d6619555c24ababbbe38303998750986395c647aadebb0c209467fcdfe5f9dca99ecef0e0b747aa8598f887ef2218140ad1d97e7e3d73b430dad1d6"; 428 428 } 429 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.8.1/linux-i686/gl/thunderbird-68.8.1.tar.bz2"; 429 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.9.0/linux-i686/gl/thunderbird-68.9.0.tar.bz2"; 430 430 locale = "gl"; 431 431 arch = "linux-i686"; 432 - sha512 = "7f07e56433349000859c8dfa420160d9388c4fe70494f0b614b9740aed4cc00f17f3be475303a74a5ef58c16bd334dc8fa8e7d73d989202841a171afca4388bf"; 432 + sha512 = "3b8eff0004db222eff3b4f42be4eff168310fd0e17e676ae92fddd9c11e3a6d4826c63a35f9de37095a7fa88f7f4931e36bc17ace548e36f91bd8334fa53799f"; 433 433 } 434 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.8.1/linux-i686/he/thunderbird-68.8.1.tar.bz2"; 434 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.9.0/linux-i686/he/thunderbird-68.9.0.tar.bz2"; 435 435 locale = "he"; 436 436 arch = "linux-i686"; 437 - sha512 = "2ca1b2f949af32e3af1fa80de361c2d35bed79e7e832dc4d7dfa3b3ac3866ae0a5d7c1fe22fe2a49f4d92f4136abb06cdccb44daa4fbce41596a8cf3f30f3711"; 437 + sha512 = "e3dcd319e08ddb5aef2bc576f136eae7838e3aca3c9160aabdaecc32332f0c250201a80f31724233a77f4dd2857684f2bcd9b194df5ec965d69cc04a9e9b7da9"; 438 438 } 439 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.8.1/linux-i686/hr/thunderbird-68.8.1.tar.bz2"; 439 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.9.0/linux-i686/hr/thunderbird-68.9.0.tar.bz2"; 440 440 locale = "hr"; 441 441 arch = "linux-i686"; 442 - sha512 = "cc01c61ef5c2fd136283b035b3baa282b57643afdc4feb82e014475c6afc7aae73f41b607e16a19367b010fb551f39cccf48250bae6650cfc2882a40e8d59d00"; 442 + sha512 = "84164d00d087e507ab79aa4db6567311bd0cecbde1cb1be7337f4ffc42abc8c7cd0f4fe9a3aae2e35b01683f96e1bfbc816fa96e6fb872157cb473128679e19f"; 443 443 } 444 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.8.1/linux-i686/hsb/thunderbird-68.8.1.tar.bz2"; 444 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.9.0/linux-i686/hsb/thunderbird-68.9.0.tar.bz2"; 445 445 locale = "hsb"; 446 446 arch = "linux-i686"; 447 - sha512 = "abd12a6378f51ef7ec3e5f3cfc4b5f5774a7386887bd39f0d4cf715483810436f258e80753eccc204eaec61f602e90525d63f027a3ac264127eaec3261c30cdc"; 447 + sha512 = "a3fac91f5e2fbf739d2f2c164c6d58ea89026c1e8250a41c51ee11640bd7831c73a4c3148cd80ae2b40a2e1a369d47d3832f96a276dae2c80ba2d90d6990d062"; 448 448 } 449 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.8.1/linux-i686/hu/thunderbird-68.8.1.tar.bz2"; 449 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.9.0/linux-i686/hu/thunderbird-68.9.0.tar.bz2"; 450 450 locale = "hu"; 451 451 arch = "linux-i686"; 452 - sha512 = "d4ce5b41a15b40539bf123dbf4f075b00da495007eca83c9c49c5ba5578a0744fd3e38ee71d6746432eb8ef79490ea9b5991497946ed6246537ac4d592a85b62"; 452 + sha512 = "002c42f700616d2ddcf1753d37de064959965e4504112e96507a8aaf2398fa25f650e1fcb50189aebf3bc3d0c3de795b496d1f8e1550fc0186d74ef312a11d74"; 453 453 } 454 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.8.1/linux-i686/hy-AM/thunderbird-68.8.1.tar.bz2"; 454 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.9.0/linux-i686/hy-AM/thunderbird-68.9.0.tar.bz2"; 455 455 locale = "hy-AM"; 456 456 arch = "linux-i686"; 457 - sha512 = "caea7744d3e7d5e76ab5bfb98d18ce27b869f8f3c8e8be206ef4ca8b34819ba8a552dbcbb409d53cb45ba709288fab550f2f46607dd8f67908272be3b64d55ce"; 457 + sha512 = "41fe16657886ccde1c6410e3e62ade72d8890a50e77526994e82cb929c8296110d0aa32d8d02dd7d1482d594322325d28cfa54afe113dc69e2520dcfd56516f1"; 458 458 } 459 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.8.1/linux-i686/id/thunderbird-68.8.1.tar.bz2"; 459 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.9.0/linux-i686/id/thunderbird-68.9.0.tar.bz2"; 460 460 locale = "id"; 461 461 arch = "linux-i686"; 462 - sha512 = "a4e7862dbc71b7af2eb2f348de8632ea7865408c72b8ae6a3f78aaf97746662020b61757072d49639293b529395359e35f459ee11c4f37cabbb848fc363fa16f"; 462 + sha512 = "8fb8703220a801bb2d29e436d28325a3310b61f6a22d3d8964b98bd9cea9e74f9e53cd41c8c9a501057d1915a6c71f6f5d27fea267b802082488d2690a0ee088"; 463 463 } 464 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.8.1/linux-i686/is/thunderbird-68.8.1.tar.bz2"; 464 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.9.0/linux-i686/is/thunderbird-68.9.0.tar.bz2"; 465 465 locale = "is"; 466 466 arch = "linux-i686"; 467 - sha512 = "cca9db1eba2143dc567ca454d33b7c6dbc7d1d3d3daa858bfe2e2db1910b8260c74af0a5b5cbe53d94487d42cd12e7bab143deec5dab33c2bd14f889f2ceeaa5"; 467 + sha512 = "09c59bca1a0282416aff4043b7d64e5f8ce308792efd35e197b2d91125715453769b482e5815c9f33cd0d9d3809bbe898c40e767c13786868673bc7f041f1c17"; 468 468 } 469 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.8.1/linux-i686/it/thunderbird-68.8.1.tar.bz2"; 469 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.9.0/linux-i686/it/thunderbird-68.9.0.tar.bz2"; 470 470 locale = "it"; 471 471 arch = "linux-i686"; 472 - sha512 = "185e5c4246f73bb5fc46187bfcb73ea1bf8749f67558bb162f4557e35e8657ffb19b61a04fe425b7bad32c20bcbde67894848422c350ba38a27c32624ab0829b"; 472 + sha512 = "c3f09f2681d0aa197084b0935855dba98517d6f5595595385d93dd7a998ff5b0c98f35141091f41ea8e91ea10b25f6464f242218cd7030351347f77f35396ca2"; 473 473 } 474 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.8.1/linux-i686/ja/thunderbird-68.8.1.tar.bz2"; 474 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.9.0/linux-i686/ja/thunderbird-68.9.0.tar.bz2"; 475 475 locale = "ja"; 476 476 arch = "linux-i686"; 477 - sha512 = "1ad054c656cb4d4ea906603aef9370014480f5bd4041d56027fb0f9602f5aacaee709e130fd29cf4a0b1fa638ea52085eb1b86e27e38731da9b22f5b69197e15"; 477 + sha512 = "4bdea34b50edfea5b3dd3bb80935e1148b3ad926c95d84a3d265268f783ff3c487527726b0151643c8f3eb5d061d441742da23f6cb03297894a8076a87275574"; 478 478 } 479 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.8.1/linux-i686/ka/thunderbird-68.8.1.tar.bz2"; 479 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.9.0/linux-i686/ka/thunderbird-68.9.0.tar.bz2"; 480 480 locale = "ka"; 481 481 arch = "linux-i686"; 482 - sha512 = "366542d5b1ca00092fecc577d92111a2db6bc7e3fcc66753d91fc971b9536717494c13a256ccf43522fcdb9964f629870a327488e8201ef5185d6d6e2fe2a1af"; 482 + sha512 = "ec029d7a58aa502742160e131eab70f50f83851124297fef72214d58f1309f047b9881d824432a8bd3841dd158493ca2b41e41f4f9bf9dc043db9ec4df1a1d24"; 483 483 } 484 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.8.1/linux-i686/kab/thunderbird-68.8.1.tar.bz2"; 484 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.9.0/linux-i686/kab/thunderbird-68.9.0.tar.bz2"; 485 485 locale = "kab"; 486 486 arch = "linux-i686"; 487 - sha512 = "f19a99f2824cd65a10ee264ddc8d21516dcbe2c2d807e076e8d137b56375237307d3adedbaaaff5a3f88a1d4ed80faca292abb7941a349a42bad6207fd267ca2"; 487 + sha512 = "cf291b9d2924e72b9871a4eadf10118cd0299e2206151c67bf36fe0c766b75c9e67e9b11e8612ca5d95c50c6cd3d90e95210e9625ed8eb1c14ba5a8d45bb997b"; 488 488 } 489 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.8.1/linux-i686/kk/thunderbird-68.8.1.tar.bz2"; 489 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.9.0/linux-i686/kk/thunderbird-68.9.0.tar.bz2"; 490 490 locale = "kk"; 491 491 arch = "linux-i686"; 492 - sha512 = "12903b5f1df5ec077c5ea7cd53a8cec4489613fa87862bdb594819b87d70be76997f9b9c825e1335a3a5e785a070b25f75cc2ac19dac726638aa454822bd2a4a"; 492 + sha512 = "1031db4a9f0716973fb1ddbc8e12b2252bdb8450617a6c642ad4001c119cd3eb3bad999b861e8204a85699b415fdc5d768b6aafa6fee2c5b9efb7e9a3558eda2"; 493 493 } 494 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.8.1/linux-i686/ko/thunderbird-68.8.1.tar.bz2"; 494 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.9.0/linux-i686/ko/thunderbird-68.9.0.tar.bz2"; 495 495 locale = "ko"; 496 496 arch = "linux-i686"; 497 - sha512 = "d246ac4a6f110075e7efa1da523e1a171d34415752536c8ecc40d296187d65e589e1a9a20e3da93813dbba058c6c3d820ce93f8473c207190d2b58bda6496326"; 497 + sha512 = "bde75ae38856970c4da871cdbd63d96f31021f707869be7517d4c719ecce3f505f886c65e9faad8bcc0ac26885777e070246576fd47f75669b77f0247689954f"; 498 498 } 499 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.8.1/linux-i686/lt/thunderbird-68.8.1.tar.bz2"; 499 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.9.0/linux-i686/lt/thunderbird-68.9.0.tar.bz2"; 500 500 locale = "lt"; 501 501 arch = "linux-i686"; 502 - sha512 = "cce06ce9899dd9cd50bcd09f2699fe8fce1a08666240bd997cf03a813befe4c1e15823e4e3ff16148a301e3725210a2bdf2af2ec72b9c55c470519860454a14c"; 502 + sha512 = "9459b50e1fd01ce742bfe6f13ac26241958ad5307c08e3980ed5a84023a12be009dc6a83085ad52c68e162e6a45f4f430e79e21e4d19f67e470ab07151c40bc8"; 503 503 } 504 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.8.1/linux-i686/ms/thunderbird-68.8.1.tar.bz2"; 504 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.9.0/linux-i686/ms/thunderbird-68.9.0.tar.bz2"; 505 505 locale = "ms"; 506 506 arch = "linux-i686"; 507 - sha512 = "f9facdfbde7ba320c9d16ca41194fed7a0b7aec758b83c57c64fb2a778aef90ad9840f0b0dea838598d8786ce5318d7ea790048c877d492f1f6f77ea7ce5ad44"; 507 + sha512 = "0632af25fd5245ec2a15a09a075db24a64e3020ea6353e88f72fa74f929d8507cb868cc617da8e97f01efff19a9108c9b2b30adc8e58b0e7e6353332219e658d"; 508 508 } 509 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.8.1/linux-i686/nb-NO/thunderbird-68.8.1.tar.bz2"; 509 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.9.0/linux-i686/nb-NO/thunderbird-68.9.0.tar.bz2"; 510 510 locale = "nb-NO"; 511 511 arch = "linux-i686"; 512 - sha512 = "994d93d68806ec039ae59fb9ef5a27a940305ca7919ebc427267affc797e5b386cf96d67cbacff0f708b659d4aec8692271f376dc4eb56e510096387a83af0f6"; 512 + sha512 = "b16523b5a40dbe496537df487d72f8cb16ccf338c1a96e6ec3dc7e1a5d3073991c12ada23fc6b31f34d2fb712050334eae145a45420994c607a63799ed42d264"; 513 513 } 514 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.8.1/linux-i686/nl/thunderbird-68.8.1.tar.bz2"; 514 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.9.0/linux-i686/nl/thunderbird-68.9.0.tar.bz2"; 515 515 locale = "nl"; 516 516 arch = "linux-i686"; 517 - sha512 = "8ae07cb28e0f777b79c005e0c6848854ed40f072f63b98d68841c3aab4dacab04d90131e4c76c65943eeee05ec01bdf79c3872f0a0df1b10e02be1707e2709ce"; 517 + sha512 = "82f0ab2e4969323ea8294f732b13144ddd453a613a68b582ff398cb85aee88874a5fb5eb61627f142ce8124b476f49fa6cf68cdaa41fdaf3621519c53c4ac16b"; 518 518 } 519 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.8.1/linux-i686/nn-NO/thunderbird-68.8.1.tar.bz2"; 519 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.9.0/linux-i686/nn-NO/thunderbird-68.9.0.tar.bz2"; 520 520 locale = "nn-NO"; 521 521 arch = "linux-i686"; 522 - sha512 = "994e22db5edc1d1b6ec4f51dbbcdd200695e468aaf7cefa228f54c5ec4eca7aaf5faea8afeb1efcc1db5dd221e2022e666bbee65a685409790dd7614d0dc4b20"; 522 + sha512 = "815d0010de5f6d9144a182a2170c59a502b167f18eec65d23987e4b73e6d5bae46be18d7f55462a3ec8634466639aceca03ad9b772c7e8b232eb874998e6148c"; 523 523 } 524 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.8.1/linux-i686/pl/thunderbird-68.8.1.tar.bz2"; 524 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.9.0/linux-i686/pl/thunderbird-68.9.0.tar.bz2"; 525 525 locale = "pl"; 526 526 arch = "linux-i686"; 527 - sha512 = "4efb0643491e7b469e277f98d16f106e046514a35a3f33d30ceb25809a037e521639c2c5c6304be6716fc9f7f39c216dd2ecc204d47f81bc9d1a3987808d8ac9"; 527 + sha512 = "5be434a54c91097d4f6477767af96f8b862828912783eee48577cc450a14eceee2e067e9c10697633a2833f473b9d10bea33b3c6c6377b898a18d3d7c6568f96"; 528 528 } 529 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.8.1/linux-i686/pt-BR/thunderbird-68.8.1.tar.bz2"; 529 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.9.0/linux-i686/pt-BR/thunderbird-68.9.0.tar.bz2"; 530 530 locale = "pt-BR"; 531 531 arch = "linux-i686"; 532 - sha512 = "008c6291daae9eb05a981db2e5931fc5a2b72c55b349978dd3e76c8bc632ef95b78f94af8934e2e89600877899218acd1352e910ab128e8796a30eec4734dc91"; 532 + sha512 = "b7b3fd6bb8535f2328ceb9259d7517bfd695cc881130720d3857d5a27197deba4fe683e163f49613054ebec2827e805a31a62c9a9e578f4ffb760f421a4ea506"; 533 533 } 534 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.8.1/linux-i686/pt-PT/thunderbird-68.8.1.tar.bz2"; 534 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.9.0/linux-i686/pt-PT/thunderbird-68.9.0.tar.bz2"; 535 535 locale = "pt-PT"; 536 536 arch = "linux-i686"; 537 - sha512 = "be53376fc3f29cdc6f7bd13fcc4de35292dee928d9c65016dde0910333c028fa85563a688dbd644459aac9bf81a5dc68e5cba528f495170193dbeb5024042b5d"; 537 + sha512 = "b9561a6f55c25cff2bec9bda78e46204dc85429c52bb42f33b6ae972c0bf16f3a99ccbe3f283ef08cca955d31e5eb6d91ff9d8b50e85bd75443998236d6e08b1"; 538 538 } 539 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.8.1/linux-i686/rm/thunderbird-68.8.1.tar.bz2"; 539 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.9.0/linux-i686/rm/thunderbird-68.9.0.tar.bz2"; 540 540 locale = "rm"; 541 541 arch = "linux-i686"; 542 - sha512 = "a66262a586bd1b79772fc791fb93bce764b9f0cd5d39c03b26b1b9743ceb83f54e64b30bfd1fc0e03236aef8f320b90017a4e4d997090910c7b8963e30f505e5"; 542 + sha512 = "7ff72dc448c9303a70403558ae46cd720e645c24681dabbf265db783ef872e92216f8ee9169e155904d3fcd3288f2ee0ad11ca22bbf041b380884d57b306876e"; 543 543 } 544 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.8.1/linux-i686/ro/thunderbird-68.8.1.tar.bz2"; 544 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.9.0/linux-i686/ro/thunderbird-68.9.0.tar.bz2"; 545 545 locale = "ro"; 546 546 arch = "linux-i686"; 547 - sha512 = "43fa63b41001e01ae7e0183841d6efa5bda0c2518949b6925d035690f507586e39fe9d1bde404f15f34d807e0fb02efa8f7816efd2b584680b43896c6cdb603f"; 547 + sha512 = "7f585b942076749269ca86161694ef1b9f4e68e75300d60ea4141b2404be0c79761a2658c123787d67e65992e4b3dd5b7406acfee6084846bdefdb0f82d9baea"; 548 548 } 549 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.8.1/linux-i686/ru/thunderbird-68.8.1.tar.bz2"; 549 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.9.0/linux-i686/ru/thunderbird-68.9.0.tar.bz2"; 550 550 locale = "ru"; 551 551 arch = "linux-i686"; 552 - sha512 = "2d5d700879d1c95bc7ba066ba336f3b9f5681d089c019279cf27c2a837b6a12527d92940378e1bdc794bdfd516deb09c97fd5fccc07571a9b9c92c7c24bed3ce"; 552 + sha512 = "e4ef9e081cfdb3567f1823866ffd0e3e5fbe8596fd3a7dbb94869a8d1ebd328938c490669c8f46bc6575d6b8c5c351e387faf8dd2a33db263cb2fb5ddb2974f5"; 553 553 } 554 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.8.1/linux-i686/si/thunderbird-68.8.1.tar.bz2"; 554 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.9.0/linux-i686/si/thunderbird-68.9.0.tar.bz2"; 555 555 locale = "si"; 556 556 arch = "linux-i686"; 557 - sha512 = "b78fa143b483cd6499cb7c4cc71821b8dc7bce79059765650d09876a3ddfa1d62a676f3b3326cd3ecfb6aff9823a7f26c7b83a2c74ada5e7aa57b59238ecb350"; 557 + sha512 = "42db8e43c4bd722102778d4a9cdfb0ba54b0151882b7963e07c0b8cd653d7303eb22a541a8fc3a5b93c9db09c1a24db8f5c3365b5654e997c17d3b4b2c2a5f38"; 558 558 } 559 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.8.1/linux-i686/sk/thunderbird-68.8.1.tar.bz2"; 559 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.9.0/linux-i686/sk/thunderbird-68.9.0.tar.bz2"; 560 560 locale = "sk"; 561 561 arch = "linux-i686"; 562 - sha512 = "b6cd21b14fdb6334b03a6e780c6fe4815a3b6124973233e5c783ddf0db9e6e7505b0569eacfa0c2c65d0e740e4616f4ed3fa6f2b9a2461643abca1b437436cdd"; 562 + sha512 = "fb025203b739cd89169bc25b36e6d541ebaf8726720c0b51e58a33fd0e71c2a4ae46428fe16547ed5e639e81ce35253a5519a28de9a8baa952a1b1af184b77a3"; 563 563 } 564 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.8.1/linux-i686/sl/thunderbird-68.8.1.tar.bz2"; 564 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.9.0/linux-i686/sl/thunderbird-68.9.0.tar.bz2"; 565 565 locale = "sl"; 566 566 arch = "linux-i686"; 567 - sha512 = "9c791c58cbcb91bd682d30feae3b85d8e30b016b9e64fe295b2c11dbae6f72464a2a2637858eb62815f76e83bf92c2ba1549e2e9d1b3a2c19b3720ad383a859b"; 567 + sha512 = "ba392d3748b697d323e63c7217ce3c3aa4eaf6b994d798655a1667644733a6f19b23b95df420b2235e9ee000a868485d4f32fbe5d737ef5c7296c085738168bd"; 568 568 } 569 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.8.1/linux-i686/sq/thunderbird-68.8.1.tar.bz2"; 569 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.9.0/linux-i686/sq/thunderbird-68.9.0.tar.bz2"; 570 570 locale = "sq"; 571 571 arch = "linux-i686"; 572 - sha512 = "735f2aa6020787f8119dc795af0e28d04f596a001d6ea0f1a2437b90658d571a9b2c96fe2f13e6ea919d8a12ff149e562bb1949d123f0573d8f53bcf0ad0f82c"; 572 + sha512 = "b795928265f2b50a1032ab8fcce954f6d0d35a6dab2b381f11ca1b6b204aa1ae91b0ceb221da5ccadcca303f20792715d0f770c215dc59654df1b325ccc3e42e"; 573 573 } 574 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.8.1/linux-i686/sr/thunderbird-68.8.1.tar.bz2"; 574 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.9.0/linux-i686/sr/thunderbird-68.9.0.tar.bz2"; 575 575 locale = "sr"; 576 576 arch = "linux-i686"; 577 - sha512 = "456bc22b998665dfed7a8d87cf754d6d5cbda4e19074086c4a08176e8767244e8b16d90c25173c9f41c51dd27c8c2b83a400424e148dc266da46aed6e75b71a0"; 577 + sha512 = "274c3675cd3d5264c2ce74b101b7c87bfd1703645e4341f6499c25b4905781395f514ed8412b22289ad097994e748ee7b527f1d6081022429292a64155d2df74"; 578 578 } 579 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.8.1/linux-i686/sv-SE/thunderbird-68.8.1.tar.bz2"; 579 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.9.0/linux-i686/sv-SE/thunderbird-68.9.0.tar.bz2"; 580 580 locale = "sv-SE"; 581 581 arch = "linux-i686"; 582 - sha512 = "1ad151afb1bf9324c03fc78c98a49d9fe6fd765d245eac3e35f17edd6e96ba3c2503d8569f72e95d22982736e33c391e7f44a5141a9f850f26f9d3504a312c11"; 582 + sha512 = "318ccb06cf2c9f5fdbf25fe70a8c5e65c20e5d7ca375f52f64724410d2afa8a852f9e9e77b673c1f59e26bddd6fde74783a96f69f7bd73a1b7042633b624b310"; 583 583 } 584 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.8.1/linux-i686/tr/thunderbird-68.8.1.tar.bz2"; 584 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.9.0/linux-i686/tr/thunderbird-68.9.0.tar.bz2"; 585 585 locale = "tr"; 586 586 arch = "linux-i686"; 587 - sha512 = "ed539d023abf5adfcee314a3da0e1ebdf1a378720c87b75d059d072db65e5682338b58d4b9b0eb1b02920031fa253c2e237cce3635e4897ef618291df6b9a467"; 587 + sha512 = "a86a69a8c146a0765e9fb7c835c1cc774a0a7fc309fa7f6627f427bc2cb4bd1b3e18f4aa61288cb68483f267b0be02662250abcdcafcb6619f1b4e3437cbb908"; 588 588 } 589 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.8.1/linux-i686/uk/thunderbird-68.8.1.tar.bz2"; 589 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.9.0/linux-i686/uk/thunderbird-68.9.0.tar.bz2"; 590 590 locale = "uk"; 591 591 arch = "linux-i686"; 592 - sha512 = "7f044b3d8d44d3f5177cf7f7fdec7fe8b8fc183a5a231ae64cd403f9a459d2d4b808e0ee08591410163358bf7841e94ba6a14ab74d955dcdddff9240c2bccc6a"; 592 + sha512 = "86407123381e64df9f97190b0df253792582b0ba5296d6663bc0d8faf3004e3ec95cbc0140c9292928a7750cece1cc6887086a9e218f3169bee2246232643685"; 593 593 } 594 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.8.1/linux-i686/uz/thunderbird-68.8.1.tar.bz2"; 594 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.9.0/linux-i686/uz/thunderbird-68.9.0.tar.bz2"; 595 595 locale = "uz"; 596 596 arch = "linux-i686"; 597 - sha512 = "3dbb3a4bcf800621f191b11ca3e05e2acb114348dbab49695478fbc653ad154a92f0aa62cd6d86216e1447728d6d3ddd01da678f4a9feb2b7964794f5609f7e5"; 597 + sha512 = "2d31a86952df2f5b339479cc6dabd1cbcc000119514775b07ca086e01e8310fe0d0d2c63cc57cb936588c59a5f72a5d9dae0e0a6e2f9b7cdf6225e400c24bd31"; 598 598 } 599 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.8.1/linux-i686/vi/thunderbird-68.8.1.tar.bz2"; 599 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.9.0/linux-i686/vi/thunderbird-68.9.0.tar.bz2"; 600 600 locale = "vi"; 601 601 arch = "linux-i686"; 602 - sha512 = "8724cbf93d5d7ebf6fa67b85bf559bfe905cca6b76a4e386db99252d7460ce78d3b63f3c1e5a14782f72d1434906a2d7ad2497bb66ffa6cb66aaf44dc84d0a0e"; 602 + sha512 = "3c241242e918bb69d811289879323205c070620829e05488e224450e7edb2be32b0f2c36f3182fcab95a1673fd133635e89801feaf6a34fa1553d8fea3b57641"; 603 603 } 604 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.8.1/linux-i686/zh-CN/thunderbird-68.8.1.tar.bz2"; 604 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.9.0/linux-i686/zh-CN/thunderbird-68.9.0.tar.bz2"; 605 605 locale = "zh-CN"; 606 606 arch = "linux-i686"; 607 - sha512 = "3cc8703dffdedc2de263c2ce10e2fc2f374c991ec7b34ab3d5530d3441ce8049577824cbeb0ec4ab233973e2d5c0120958360b1920e3f43ae9362132b4948cdd"; 607 + sha512 = "b4932b43158a5f8627ec951a3cb726863575a81b9d7b93ab35a9168224cd91480ecde55a1e7d4c01b9ed74f92440724475980010f1645db9b2ef0b6c42e92d93"; 608 608 } 609 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.8.1/linux-i686/zh-TW/thunderbird-68.8.1.tar.bz2"; 609 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/68.9.0/linux-i686/zh-TW/thunderbird-68.9.0.tar.bz2"; 610 610 locale = "zh-TW"; 611 611 arch = "linux-i686"; 612 - sha512 = "bf37041bac13932ad283d49a2f4f552cd4422aaab7baec7a18e19ffd4101b155a8e864aa666eb85683a82668c393c7210631754a375d012e9c9e200c554776c3"; 612 + sha512 = "018fff050295932a492433992a97fd01acc36685f7d1f96bba2f41972fdd6cd592c117434d2de81d0d018595c8473427aefe5a7b66194bc18d127c2e7eab5a34"; 613 613 } 614 614 ]; 615 615 }
+2 -2
pkgs/applications/networking/mailreaders/thunderbird/default.nix
··· 72 72 73 73 stdenv.mkDerivation rec { 74 74 pname = "thunderbird"; 75 - version = "68.8.1"; 75 + version = "68.9.0"; 76 76 77 77 src = fetchurl { 78 78 url = 79 79 "mirror://mozilla/thunderbird/releases/${version}/source/thunderbird-${version}.source.tar.xz"; 80 80 sha512 = 81 - "2zq65qhrg8xsz75yywcijdjbkndn79w73v5vyahiyyibc8lfjphz0zaihk67ja82fpnxlnsfvy45s8x5l42kcbb0wibkjy7m55bd6h7"; 81 + "3q0dikgkfr72hhz39pxi2f0cljn09lw4940qcn9kzfwfid2h290j7pihx6gs0z6h82fl78f9fl1598d064lwl1i2434dzx6bg4p4549"; 82 82 }; 83 83 84 84 nativeBuildInputs = [
+49 -10
pkgs/applications/networking/newsreaders/liferea/default.nix
··· 1 - { stdenv, fetchurl, pkgconfig, intltool, python3Packages, wrapGAppsHook 2 - , glib, libxml2, libxslt, sqlite, libsoup , webkitgtk, json-glib, gst_all_1 3 - , libnotify, gtk3, gsettings-desktop-schemas, libpeas, dconf, librsvg 4 - , gobject-introspection, glib-networking 1 + { stdenv 2 + , fetchurl 3 + , pkg-config 4 + , intltool 5 + , python3Packages 6 + , wrapGAppsHook 7 + , glib 8 + , libxml2 9 + , libxslt 10 + , sqlite 11 + , libsoup 12 + , webkitgtk 13 + , json-glib 14 + , gst_all_1 15 + , libnotify 16 + , gtk3 17 + , gsettings-desktop-schemas 18 + , libpeas 19 + , libsecret 20 + , gobject-introspection 21 + , glib-networking 5 22 }: 6 23 7 24 stdenv.mkDerivation rec { ··· 13 30 sha256 = "03pr1gmiv5y0i92bkhcxr8s311ll91chz19wb96jkixx32xav91d"; 14 31 }; 15 32 16 - nativeBuildInputs = [ wrapGAppsHook python3Packages.wrapPython intltool pkgconfig ]; 33 + nativeBuildInputs = [ 34 + wrapGAppsHook 35 + python3Packages.wrapPython 36 + intltool 37 + pkg-config 38 + ]; 17 39 18 40 buildInputs = [ 19 - glib gtk3 webkitgtk libxml2 libxslt sqlite libsoup gsettings-desktop-schemas 20 - libpeas gsettings-desktop-schemas json-glib dconf gobject-introspection 21 - librsvg glib-networking libnotify 41 + glib 42 + gtk3 43 + webkitgtk 44 + libxml2 45 + libxslt 46 + sqlite 47 + libsoup 48 + libpeas 49 + gsettings-desktop-schemas 50 + json-glib 51 + gobject-introspection 52 + libsecret 53 + glib-networking 54 + libnotify 22 55 ] ++ (with gst_all_1; [ 23 - gstreamer gst-plugins-base gst-plugins-good gst-plugins-bad 56 + gstreamer 57 + gst-plugins-base 58 + gst-plugins-good 59 + gst-plugins-bad 24 60 ]); 25 61 26 - pythonPath = with python3Packages; [ pygobject3 pycairo ]; 62 + pythonPath = with python3Packages; [ 63 + pygobject3 64 + pycairo 65 + ]; 27 66 28 67 preFixup = '' 29 68 buildPythonPath "$out $pythonPath"
+58 -18
pkgs/applications/office/libreoffice/default.nix
··· 1 1 { stdenv, fetchurl, fetchpatch, pam, python3, libxslt, perl, ArchiveZip, gettext 2 2 , IOCompress, zlib, libjpeg, expat, freetype, libwpd 3 3 , libxml2, db, curl, fontconfig, libsndfile, neon 4 - , bison, flex, zip, unzip, gtk3, gtk2, libmspack, getopt, file, cairo, which 4 + , bison, flex, zip, unzip, gtk3, libmspack, getopt, file, cairo, which 5 5 , icu, boost, jdk, ant, cups, xorg, libcmis, fontforge 6 6 , openssl, gperf, cppunit, poppler, utillinux 7 7 , librsvg, libGLU, libGL, bsh, CoinMP, libwps, libabw, libmysqlclient 8 8 , autoconf, automake, openldap, bash, hunspell, librdf_redland, nss, nspr 9 - , libwpg, dbus-glib, qt4, clucene_core, libcdr, lcms, vigra 9 + , libwpg, dbus-glib, clucene_core, libcdr, lcms, vigra 10 10 , unixODBC, mdds, sane-backends, mythes, libexttextcat, libvisio 11 11 , fontsConf, pkgconfig, bluez5, libtool, carlito 12 12 , libatomic_ops, graphite2, harfbuzz, libodfgen, libzmf ··· 15 15 , gnome3, glib, ncurses, epoxy, gpgme 16 16 , langs ? [ "ca" "cs" "de" "en-GB" "en-US" "eo" "es" "fr" "hu" "it" "ja" "nl" "pl" "pt" "pt-BR" "ru" "sl" "zh-CN" ] 17 17 , withHelp ? true 18 - , kdeIntegration ? false 18 + , kdeIntegration ? false, mkDerivation ? null, qtbase ? null, qtx11extras ? null 19 + , ki18n ? null, kconfig ? null, kcoreaddons ? null, kio ? null, kwindowsystem ? null 19 20 , variant ? "fresh" 20 21 } @ args: 21 22 ··· 31 32 lib = stdenv.lib; 32 33 langsSpaces = lib.concatStringsSep " " langs; 33 34 35 + mkDrv = if kdeIntegration then mkDerivation else stdenv.mkDerivation; 36 + 34 37 srcs = { 35 38 third_party = 36 39 map (x : ((fetchurl {inherit (x) url sha256 name;}) // {inherit (x) md5name md5;})) ··· 47 50 translations = primary-src.translations; 48 51 help = primary-src.help; 49 52 }; 50 - in (stdenv.mkDerivation rec { 53 + in (mkDrv rec { 51 54 pname = "libreoffice"; 52 55 inherit version; 53 56 ··· 57 60 58 61 # For some reason librdf_redland sometimes refers to rasqal.h instead 59 62 # of rasqal/rasqal.h 60 - NIX_CFLAGS_COMPILE = "-I${librdf_rasqal}/include/rasqal" 61 - + stdenv.lib.optionalString stdenv.isx86_64 " -mno-fma"; 63 + NIX_CFLAGS_COMPILE = [ 64 + "-I${librdf_rasqal}/include/rasqal" 65 + ] ++ lib.optional stdenv.isx86_64 "-mno-fma"; 62 66 63 67 patches = [ 64 68 ./xdg-open-brief.patch ··· 84 88 tar -xf ${srcs.translations} 85 89 ''; 86 90 87 - postPatch = '' 88 - sed -e 's@/usr/bin/xdg-open@xdg-open@g' -i shell/source/unix/exec/shellexec.cxx 91 + ### QT/KDE 92 + # 93 + # We have to resort to the ugly patching of configure.ac as it assumes that 94 + # the first directory that contains headers and libraries during the check 95 + # contains all the relevant headers/libs which doesn't work with both as they 96 + # are in multiple directories due to each having their own derivation. 97 + postPatch = let 98 + inc = e: path: 99 + "${e.dev}/include/KF5/${path}"; 100 + libs = list: 101 + lib.concatMapStringsSep " " (e: "-L${e.out}/lib") list; 102 + in '' 103 + substituteInPlace shell/source/unix/exec/shellexec.cxx \ 104 + --replace /usr/bin/xdg-open ${if kdeIntegration then "kde-open5" else "xdg-open"} 89 105 90 106 # configure checks for header 'gpgme++/gpgmepp_version.h', 91 107 # and if it is found (no matter where) uses a hardcoded path ··· 96 112 substituteInPlace configure.ac --replace \ 97 113 'GPGMEPP_CFLAGS=-I/usr/include/gpgme++' \ 98 114 'GPGMEPP_CFLAGS=-I${gpgme.dev}/include/gpgme++' 115 + '' + lib.optionalString kdeIntegration '' 116 + substituteInPlace configure.ac \ 117 + --replace '$QT5INC' ${qtbase.dev}/include \ 118 + --replace '$QT5LIB' ${qtbase.out}/lib \ 119 + --replace '-I$qt5_incdir ' '-I${qtx11extras.dev}/include '\ 120 + --replace '-L$qt5_libdir ' '${libs [ qtbase qtx11extras ]} ' \ 121 + --replace '$KF5INC' ${kcoreaddons.dev}/include \ 122 + --replace '$KF5LIB' ${kcoreaddons.out}/lib \ 123 + --replace '$kf5_incdir/KCore' ${inc kcoreaddons "KCore"} \ 124 + --replace '$kf5_incdir/KI18n' ${inc ki18n "KI18n"} \ 125 + --replace '$kf5_incdir/KConfig' ${inc kconfig "KConfig"} \ 126 + --replace '$kf5_incdir/KWindow' ${inc kwindowsystem "KWindow"} \ 127 + --replace '$kf5_incdir/KIO' ${inc kio "KIO"} \ 128 + --replace '-L$kf5_libdir ' '${libs [ kconfig kcoreaddons ki18n kio kwindowsystem ]} ' 99 129 ''; 100 130 101 - QT4DIR = qt4; 131 + dontUseCmakeConfigure = true; 132 + dontUseCmakeBuildDir = true; 102 133 103 134 preConfigure = '' 104 135 configureFlagsArray=( ··· 264 295 ln -s $out/lib/libreoffice/share/xdg $out/share/applications 265 296 266 297 for f in $out/share/applications/*.desktop; do 267 - substituteInPlace "$f" --replace "Exec=libreofficedev${major}.${minor}" "Exec=libreoffice" 268 - substituteInPlace "$f" --replace "Exec=libreoffice${major}.${minor}" "Exec=libreoffice" 269 - substituteInPlace "$f" --replace "Exec=libreoffice" "Exec=libreoffice" 298 + substituteInPlace "$f" \ 299 + --replace "Exec=libreofficedev${major}.${minor}" "Exec=libreoffice" \ 300 + --replace "Exec=libreoffice${major}.${minor}" "Exec=libreoffice" 270 301 done 271 302 272 303 cp -r sysui/desktop/icons "$out/share" 273 304 sed -re 's@Icon=libreoffice(dev)?[0-9.]*-?@Icon=@' -i "$out/share/applications/"*.desktop 305 + 306 + qtWrapperArgs+=(--prefix GST_PLUGIN_SYSTEM_PATH : "$GST_PLUGIN_SYSTEM_PATH") 274 307 275 308 mkdir -p $dev 276 309 cp -r include $dev ··· 335 368 "--without-system-libstaroffice" 336 369 "--without-system-libepubgen" 337 370 "--without-system-libqxp" 338 - "--without-system-mdds" 371 + "--without-system-mdds" # we have mdds but our version is too new 339 372 # https://github.com/NixOS/nixpkgs/commit/5c5362427a3fa9aefccfca9e531492a8735d4e6f 340 373 "--without-system-orcus" 341 374 "--without-system-qrcodegen" 342 375 "--without-system-xmlsec" 376 + ] ++ lib.optionals kdeIntegration [ 377 + "--enable-kf5" 378 + "--enable-qt5" 379 + "--enable-gtk3-kde5" 343 380 ]; 344 381 345 382 checkPhase = '' ··· 347 384 make slowcheck 348 385 ''; 349 386 350 - nativeBuildInputs = [ wrapGAppsHook gdb fontforge autoconf automake bison pkgconfig libtool ]; 387 + nativeBuildInputs = [ 388 + gdb fontforge autoconf automake bison pkgconfig libtool 389 + ] ++ lib.optional (!kdeIntegration) wrapGAppsHook; 351 390 352 391 buildInputs = with xorg; 353 392 [ ant ArchiveZip boost cairo clucene_core 354 393 IOCompress cppunit cups curl db dbus-glib expat file flex fontconfig 355 - freetype getopt gperf gtk3 gtk2 394 + freetype getopt gperf gtk3 356 395 hunspell icu jdk lcms libcdr libexttextcat unixODBC libjpeg 357 396 libmspack librdf_redland librsvg libsndfile libvisio libwpd libwpg libX11 358 397 libXaw libXext libXi libXinerama libxml2 libxslt libXtst 359 - libXdmcp libpthreadstubs libGLU libGL mythes gst_all_1.gstreamer 360 - gst_all_1.gst-plugins-base glib libmysqlclient 398 + libXdmcp libpthreadstubs libGLU libGL mythes 399 + glib libmysqlclient 361 400 neon nspr nss openldap openssl pam perl pkgconfig poppler 362 401 python3 sane-backends unzip vigra which zip zlib 363 402 mdds bluez5 libcmis libwps libabw libzmf ··· 365 404 librevenge libe-book libmwaw glm glew ncurses epoxy 366 405 libodfgen CoinMP librdf_rasqal gnome3.adwaita-icon-theme gettext 367 406 ] 368 - ++ lib.optional kdeIntegration kdelibs4; 407 + ++ (with gst_all_1; [ gstreamer gst-plugins-base gst-plugins-good ]) 408 + ++ lib.optional kdeIntegration [ qtbase qtx11extras kcoreaddons kio ]; 369 409 370 410 passthru = { 371 411 inherit srcs jdk;
+7 -7
pkgs/applications/version-management/gitlab/data.json
··· 1 1 { 2 - "version": "12.10.8", 3 - "repo_hash": "189l6l47s5lz0y2qjbai1n9l6yq513d38apyv88c3by3r41m86y1", 2 + "version": "13.0.4", 3 + "repo_hash": "15pfg3ss1diqsnlf0xpx4ixlpjnvzghzjfvs6y3bv21qnjfwkp0g", 4 4 "owner": "gitlab-org", 5 5 "repo": "gitlab", 6 - "rev": "v12.10.8-ee", 6 + "rev": "v13.0.4-ee", 7 7 "passthru": { 8 - "GITALY_SERVER_VERSION": "12.10.8", 9 - "GITLAB_PAGES_VERSION": "1.17.0", 10 - "GITLAB_SHELL_VERSION": "12.2.0", 11 - "GITLAB_WORKHORSE_VERSION": "8.30.2" 8 + "GITALY_SERVER_VERSION": "13.0.4", 9 + "GITLAB_PAGES_VERSION": "1.18.0", 10 + "GITLAB_SHELL_VERSION": "13.2.0", 11 + "GITLAB_WORKHORSE_VERSION": "8.31.1" 12 12 } 13 13 }
+9 -7
pkgs/applications/version-management/gitlab/gitaly/Gemfile
··· 4 4 gem 'bundler', '>= 1.17.3' 5 5 6 6 gem 'rugged', '~> 0.28' 7 - gem 'github-linguist', '~> 7.5', require: 'linguist' 8 - gem 'gitlab-markup', '~> 1.7.0' 9 - gem 'activesupport', '6.0.2' 7 + gem 'github-linguist', '~> 7.9', require: 'linguist' 8 + gem 'gitlab-markup', '~> 1.7.1' 9 + gem 'activesupport', '~> 6.0.3.1' 10 10 gem 'rdoc', '~> 6.0' 11 - gem 'gitlab-gollum-lib', '~> 4.2.7.8', require: false 11 + gem 'gitlab-gollum-lib', '~> 4.2.7.9', require: false 12 12 gem 'gitlab-gollum-rugged_adapter', '~> 0.4.4.2', require: false 13 - gem 'grpc', '~> 1.27.0' 13 + gem 'grpc', '~> 1.24.0' 14 14 gem 'sentry-raven', '~> 2.9.0', require: false 15 15 gem 'faraday', '~> 0.12' 16 16 gem 'rbtrace', require: false 17 17 18 18 # Labkit provides observability functionality 19 - gem 'gitlab-labkit', '~> 0.9.1' 19 + gem 'gitlab-labkit', '~> 0.12.0' 20 20 21 21 # Detects the open source license the repository includes 22 22 # This version needs to be in sync with GitLab CE/EE 23 23 gem 'licensee', '~> 8.9.0' 24 24 25 - gem 'google-protobuf', '~> 3.11.2' 25 + gem 'google-protobuf', '~> 3.8.0' 26 26 27 27 group :development, :test do 28 28 gem 'rubocop', '~> 0.69', require: false ··· 31 31 gem 'timecop', require: false 32 32 gem 'factory_bot', require: false 33 33 gem 'pry', '~> 0.12.2', require: false 34 + 35 + gem 'grpc-tools', '= 1.0.1' 34 36 35 37 # gitlab-shell spec gems 36 38 gem 'listen', '~> 0.5.0'
+30 -28
pkgs/applications/version-management/gitlab/gitaly/Gemfile.lock
··· 2 2 remote: https://rubygems.org/ 3 3 specs: 4 4 abstract_type (0.0.7) 5 - actionpack (6.0.2) 6 - actionview (= 6.0.2) 7 - activesupport (= 6.0.2) 8 - rack (~> 2.0) 5 + actionpack (6.0.3.1) 6 + actionview (= 6.0.3.1) 7 + activesupport (= 6.0.3.1) 8 + rack (~> 2.0, >= 2.0.8) 9 9 rack-test (>= 0.6.3) 10 10 rails-dom-testing (~> 2.0) 11 11 rails-html-sanitizer (~> 1.0, >= 1.2.0) 12 - actionview (6.0.2) 13 - activesupport (= 6.0.2) 12 + actionview (6.0.3.1) 13 + activesupport (= 6.0.3.1) 14 14 builder (~> 3.1) 15 15 erubi (~> 1.4) 16 16 rails-dom-testing (~> 2.0) 17 17 rails-html-sanitizer (~> 1.1, >= 1.2.0) 18 - activesupport (6.0.2) 18 + activesupport (6.0.3.1) 19 19 concurrent-ruby (~> 1.0, >= 1.0.2) 20 20 i18n (>= 0.7, < 2) 21 21 minitest (~> 5.1) 22 22 tzinfo (~> 1.1) 23 - zeitwerk (~> 2.2) 23 + zeitwerk (~> 2.2, >= 2.2.2) 24 24 adamantium (0.2.0) 25 25 ice_nine (~> 0.11.0) 26 26 memoizable (~> 0.4.0) ··· 34 34 concord (0.1.5) 35 35 adamantium (~> 0.2.0) 36 36 equalizer (~> 0.0.9) 37 - concurrent-ruby (1.1.5) 37 + concurrent-ruby (1.1.6) 38 38 crack (0.4.3) 39 39 safe_yaml (~> 1.0.0) 40 40 crass (1.0.6) ··· 47 47 activesupport (>= 4.2.0) 48 48 faraday (0.15.4) 49 49 multipart-post (>= 1.2, < 3) 50 - ffi (1.11.1) 50 + ffi (1.12.2) 51 51 gemojione (3.3.0) 52 52 json 53 - github-linguist (7.5.1) 53 + github-linguist (7.9.0) 54 54 charlock_holmes (~> 0.7.6) 55 55 escape_utils (~> 1.2.0) 56 56 mini_mime (~> 1.0) 57 57 rugged (>= 0.25.1) 58 58 github-markup (1.7.0) 59 - gitlab-gollum-lib (4.2.7.8) 59 + gitlab-gollum-lib (4.2.7.9) 60 60 gemojione (~> 3.2) 61 61 github-markup (~> 1.6) 62 62 gitlab-gollum-rugged_adapter (~> 0.4.4.2) ··· 67 67 gitlab-gollum-rugged_adapter (0.4.4.2) 68 68 mime-types (>= 1.15) 69 69 rugged (~> 0.25) 70 - gitlab-labkit (0.9.1) 70 + gitlab-labkit (0.12.0) 71 71 actionpack (>= 5.0.0, < 6.1.0) 72 72 activesupport (>= 5.0.0, < 6.1.0) 73 73 grpc (~> 1.19) 74 74 jaeger-client (~> 0.10) 75 75 opentracing (~> 0.4) 76 76 redis (> 3.0.0, < 5.0.0) 77 - gitlab-markup (1.7.0) 78 - google-protobuf (3.11.4) 77 + gitlab-markup (1.7.1) 78 + google-protobuf (3.8.0) 79 79 googleapis-common-protos-types (1.0.4) 80 80 google-protobuf (~> 3.0) 81 - grpc (1.27.0) 82 - google-protobuf (~> 3.11) 81 + grpc (1.24.0) 82 + google-protobuf (~> 3.8) 83 83 googleapis-common-protos-types (~> 1.0) 84 + grpc-tools (1.0.1) 84 85 hashdiff (0.3.9) 85 86 i18n (1.8.2) 86 87 concurrent-ruby (~> 1.0) ··· 93 94 licensee (8.9.2) 94 95 rugged (~> 0.24) 95 96 listen (0.5.3) 96 - loofah (2.4.0) 97 + loofah (2.5.0) 97 98 crass (~> 1.0.2) 98 99 nokogiri (>= 1.5.9) 99 100 memoizable (0.4.2) ··· 140 141 optimist (>= 3.0.0) 141 142 rdoc (6.2.0) 142 143 redis (4.1.3) 143 - rouge (3.18.0) 144 + rouge (3.19.0) 144 145 rspec (3.8.0) 145 146 rspec-core (~> 3.8.0) 146 147 rspec-expectations (~> 3.8.0) ··· 185 186 thread_safe (0.3.6) 186 187 thrift (0.11.0.0) 187 188 timecop (0.9.1) 188 - tzinfo (1.2.6) 189 + tzinfo (1.2.7) 189 190 thread_safe (~> 0.1) 190 191 unicode-display_width (1.6.0) 191 192 unparser (0.4.7) ··· 201 202 addressable (>= 2.3.6) 202 203 crack (>= 0.3.2) 203 204 hashdiff 204 - zeitwerk (2.2.2) 205 + zeitwerk (2.3.0) 205 206 206 207 PLATFORMS 207 208 ruby 208 209 209 210 DEPENDENCIES 210 - activesupport (= 6.0.2) 211 + activesupport (~> 6.0.3.1) 211 212 bundler (>= 1.17.3) 212 213 factory_bot 213 214 faraday (~> 0.12) 214 - github-linguist (~> 7.5) 215 - gitlab-gollum-lib (~> 4.2.7.8) 215 + github-linguist (~> 7.9) 216 + gitlab-gollum-lib (~> 4.2.7.9) 216 217 gitlab-gollum-rugged_adapter (~> 0.4.4.2) 217 - gitlab-labkit (~> 0.9.1) 218 - gitlab-markup (~> 1.7.0) 219 - google-protobuf (~> 3.11.2) 220 - grpc (~> 1.27.0) 218 + gitlab-labkit (~> 0.12.0) 219 + gitlab-markup (~> 1.7.1) 220 + google-protobuf (~> 3.8.0) 221 + grpc (~> 1.24.0) 222 + grpc-tools (= 1.0.1) 221 223 licensee (~> 8.9.0) 222 224 listen (~> 0.5.0) 223 225 pry (~> 0.12.2)
+2 -9
pkgs/applications/version-management/gitlab/gitaly/default.nix
··· 19 19 }; 20 20 }; 21 21 in buildGoPackage rec { 22 - version = "12.10.8"; 22 + version = "13.0.4"; 23 23 pname = "gitaly"; 24 24 25 25 src = fetchFromGitLab { 26 26 owner = "gitlab-org"; 27 27 repo = "gitaly"; 28 28 rev = "v${version}"; 29 - sha256 = "02dih35j97q80kzi46pkf9f9r1sffw11i5zmpjs2rr96al426g8q"; 29 + sha256 = "1hnjv2q98016srvjmyjpd5fkpg68mra6qk0asl1l83z2vin2xrkm"; 30 30 }; 31 31 32 32 # Fix a check which assumes that hook files are writeable by their ··· 49 49 postInstall = '' 50 50 mkdir -p $ruby 51 51 cp -rv $src/ruby/{bin,lib,proto,git-hooks,gitlab-shell} $ruby 52 - 53 - # gitlab-shell will try to read its config relative to the source 54 - # code by default which doesn't work in nixos because it's a 55 - # read-only filesystem 56 - substituteInPlace $ruby/gitlab-shell/lib/gitlab_config.rb --replace \ 57 - "ROOT_PATH.join('config.yml')" \ 58 - "Pathname.new('/run/gitlab/shell-config.yml')" 59 52 ''; 60 53 61 54 outputs = [ "out" "ruby" ];
+299 -65
pkgs/applications/version-management/gitlab/gitaly/deps.nix
··· 1 1 # file generated from go.mod using vgo2nix (https://github.com/adisbladis/vgo2nix) 2 2 [ 3 3 { 4 + goPackagePath = "bou.ke/monkey"; 5 + fetch = { 6 + type = "git"; 7 + url = "https://github.com/bouk/monkey"; 8 + rev = "v1.0.1"; 9 + sha256 = "050y07pwx5zk7fchp0lhf35w417sml7lxkkzly8f932fy25rydz5"; 10 + }; 11 + } 12 + { 4 13 goPackagePath = "cloud.google.com/go"; 5 14 fetch = { 6 15 type = "git"; ··· 10 19 }; 11 20 } 12 21 { 22 + goPackagePath = "dmitri.shuralyov.com/gpu/mtl"; 23 + fetch = { 24 + type = "git"; 25 + url = "https://dmitri.shuralyov.com/gpu/mtl"; 26 + rev = "666a987793e9"; 27 + sha256 = "1isd03hgiwcf2ld1rlp0plrnfz7r4i7c5q4kb6hkcd22axnmrv0z"; 28 + }; 29 + } 30 + { 31 + goPackagePath = "github.com/AndreasBriese/bbloom"; 32 + fetch = { 33 + type = "git"; 34 + url = "https://github.com/AndreasBriese/bbloom"; 35 + rev = "e2d15f34fcf9"; 36 + sha256 = "05kkrsmpragy69bj6s80pxlm3pbwxrkkx7wgk0xigs6y2n6ylpds"; 37 + }; 38 + } 39 + { 13 40 goPackagePath = "github.com/BurntSushi/toml"; 14 41 fetch = { 15 42 type = "git"; ··· 28 55 }; 29 56 } 30 57 { 58 + goPackagePath = "github.com/CloudyKit/fastprinter"; 59 + fetch = { 60 + type = "git"; 61 + url = "https://github.com/CloudyKit/fastprinter"; 62 + rev = "74b38d55f37a"; 63 + sha256 = "07wkq3503j7sd5knsgp3lwzfdwm6sj7a3l6i71i52yb3fd8md235"; 64 + }; 65 + } 66 + { 31 67 goPackagePath = "github.com/Joker/hpp"; 32 68 fetch = { 33 69 type = "git"; 34 70 url = "https://github.com/Joker/hpp"; 35 - rev = "6893e659854a"; 36 - sha256 = "0lsx63c28rzqigv3lwzznqacpk7nr0dn6ig37v023x8lzc728ix5"; 71 + rev = "v1.0.0"; 72 + sha256 = "1xnqkjkmqdj48w80qa74rwcmgar8dcilpkcrcn1f53djk45k1gq2"; 37 73 }; 38 74 } 39 75 { ··· 41 77 fetch = { 42 78 type = "git"; 43 79 url = "https://github.com/Joker/jade"; 44 - rev = "v1.0.0"; 45 - sha256 = "0k9b8dcwwhajw6rzjmakqwmhw9z192pzzdhppcvam6dy63yl4zjf"; 80 + rev = "d475f43051e7"; 81 + sha256 = "0yigzvxp5qd05pai0yimzkpl2m23358a2fqqs585psrdmwsic2pn"; 46 82 }; 47 83 } 48 84 { ··· 100 136 }; 101 137 } 102 138 { 103 - goPackagePath = "github.com/aymerick/raymond"; 104 - fetch = { 105 - type = "git"; 106 - url = "https://github.com/aymerick/raymond"; 107 - rev = "v2.0.2"; 108 - sha256 = "1w6am4142k8lyjnwwcgx94c2d8zviflzi0a9c81gn2j0gyx475i3"; 109 - }; 110 - } 111 - { 112 139 goPackagePath = "github.com/beorn7/perks"; 113 140 fetch = { 114 141 type = "git"; ··· 185 212 fetch = { 186 213 type = "git"; 187 214 url = "https://github.com/cloudflare/tableflip"; 188 - rev = "8392f1641731"; 189 - sha256 = "0by5hk8s0bhhl3kiw658p5g53zvc61k4q2wxnh1w64p5ghd1rfn8"; 215 + rev = "4baec9811f2b"; 216 + sha256 = "095xb5gfz7dglljp91nh68dnscddvlf7q5ivvz972fq86r3ypq6q"; 190 217 }; 191 218 } 192 219 { ··· 262 289 }; 263 290 } 264 291 { 292 + goPackagePath = "github.com/dgraph-io/badger"; 293 + fetch = { 294 + type = "git"; 295 + url = "https://github.com/dgraph-io/badger"; 296 + rev = "v1.6.0"; 297 + sha256 = "1vzibjqhb10q6s2chbzlwndij2d9ybjnq7h28hx4akr119avd0d5"; 298 + }; 299 + } 300 + { 265 301 goPackagePath = "github.com/dgrijalva/jwt-go"; 266 302 fetch = { 267 303 type = "git"; ··· 271 307 }; 272 308 } 273 309 { 310 + goPackagePath = "github.com/dgryski/go-farm"; 311 + fetch = { 312 + type = "git"; 313 + url = "https://github.com/dgryski/go-farm"; 314 + rev = "6a90982ecee2"; 315 + sha256 = "1x3l4jgps0v1bjvd446kj4dp0ckswjckxgrng9afm275ixnf83ix"; 316 + }; 317 + } 318 + { 319 + goPackagePath = "github.com/dustin/go-humanize"; 320 + fetch = { 321 + type = "git"; 322 + url = "https://github.com/dustin/go-humanize"; 323 + rev = "v1.0.0"; 324 + sha256 = "1kqf1kavdyvjk7f8kx62pnm7fbypn9z1vbf8v2qdh3y7z7a0cbl3"; 325 + }; 326 + } 327 + { 274 328 goPackagePath = "github.com/eknkc/amber"; 275 329 fetch = { 276 330 type = "git"; ··· 280 334 }; 281 335 } 282 336 { 337 + goPackagePath = "github.com/etcd-io/bbolt"; 338 + fetch = { 339 + type = "git"; 340 + url = "https://github.com/etcd-io/bbolt"; 341 + rev = "v1.3.3"; 342 + sha256 = "0dn0zngks9xiz0rrrb3911f73ghl64z84jsmzai2yfmzqr7cdkqc"; 343 + }; 344 + } 345 + { 346 + goPackagePath = "github.com/fasthttp-contrib/websocket"; 347 + fetch = { 348 + type = "git"; 349 + url = "https://github.com/fasthttp-contrib/websocket"; 350 + rev = "1f3b11f56072"; 351 + sha256 = "1yacmwmil625p0pzj800h9dnmiab6bjwfmi48p9fcrvy2yyv9b97"; 352 + }; 353 + } 354 + { 283 355 goPackagePath = "github.com/fatih/color"; 284 356 fetch = { 285 357 type = "git"; ··· 316 388 }; 317 389 } 318 390 { 319 - goPackagePath = "github.com/gavv/monotime"; 391 + goPackagePath = "github.com/gavv/httpexpect"; 320 392 fetch = { 321 393 type = "git"; 322 - url = "https://github.com/gavv/monotime"; 323 - rev = "30dba4353424"; 324 - sha256 = "0w67yyc9y11dp7lp4b712dkcgbiln1qmgfx1nbbrw3mfkzr61d7g"; 394 + url = "https://github.com/gavv/httpexpect"; 395 + rev = "v2.0.0"; 396 + sha256 = "0dqb7lsinciz594q6jg59hrvk4g4awbs2ybsr580j22j2xag53vs"; 325 397 }; 326 398 } 327 399 { ··· 329 401 fetch = { 330 402 type = "git"; 331 403 url = "https://github.com/getsentry/raven-go"; 332 - rev = "v0.1.0"; 404 + rev = "v0.1.2"; 333 405 sha256 = "1dl80kar4lzdcfl3w6jssi1ld6bv0rmx6sp6bz6rzysfr9ilm02z"; 334 406 }; 335 407 } ··· 338 410 fetch = { 339 411 type = "git"; 340 412 url = "https://github.com/getsentry/sentry-go"; 341 - rev = "v0.3.0"; 342 - sha256 = "1919lhvg1swcqyfa6mck6nz53c7n4df21jsz46f7x4wncb6f5il1"; 413 + rev = "v0.5.1"; 414 + sha256 = "1kfn0gcb4c6amhagv04ydpl6p9cqw7f0lxas688a0rf89iwdzz89"; 343 415 }; 344 416 } 345 417 { ··· 469 541 }; 470 542 } 471 543 { 544 + goPackagePath = "github.com/gobwas/httphead"; 545 + fetch = { 546 + type = "git"; 547 + url = "https://github.com/gobwas/httphead"; 548 + rev = "2c6c146eadee"; 549 + sha256 = "0j7nlrf79cafl8ap69ri2c7v3psr2y133cr2wn735z7yn3dz3kss"; 550 + }; 551 + } 552 + { 553 + goPackagePath = "github.com/gobwas/pool"; 554 + fetch = { 555 + type = "git"; 556 + url = "https://github.com/gobwas/pool"; 557 + rev = "v0.2.0"; 558 + sha256 = "1avpa8c75j1y4hs7awazrjjy7w0pjfw80l424ddn5zyizvh7s67i"; 559 + }; 560 + } 561 + { 562 + goPackagePath = "github.com/gobwas/ws"; 563 + fetch = { 564 + type = "git"; 565 + url = "https://github.com/gobwas/ws"; 566 + rev = "v1.0.2"; 567 + sha256 = "070mfcjbfb40bglc9aw9zjvd4jb1hp3l1s12ww6mjlwbjcg0mm9s"; 568 + }; 569 + } 570 + { 472 571 goPackagePath = "github.com/gogo/protobuf"; 473 572 fetch = { 474 573 type = "git"; ··· 505 604 }; 506 605 } 507 606 { 607 + goPackagePath = "github.com/golang/lint"; 608 + fetch = { 609 + type = "git"; 610 + url = "https://github.com/golang/lint"; 611 + rev = "06c8688daad7"; 612 + sha256 = "0xi94dwvz50a66bq1hp9fyqkym5mcpdxdb1hrfvicldgjf37lc47"; 613 + }; 614 + } 615 + { 508 616 goPackagePath = "github.com/golang/mock"; 509 617 fetch = { 510 618 type = "git"; ··· 523 631 }; 524 632 } 525 633 { 634 + goPackagePath = "github.com/gomodule/redigo"; 635 + fetch = { 636 + type = "git"; 637 + url = "https://github.com/gomodule/redigo"; 638 + rev = "574c33c3df38"; 639 + sha256 = "1qpw8mq9xqj1hmpag1av941swkx39qikahsajyhn34rc2q54f4z6"; 640 + }; 641 + } 642 + { 526 643 goPackagePath = "github.com/google/btree"; 527 644 fetch = { 528 645 type = "git"; ··· 604 721 }; 605 722 } 606 723 { 607 - goPackagePath = "github.com/gorilla/schema"; 724 + goPackagePath = "github.com/gorilla/websocket"; 608 725 fetch = { 609 726 type = "git"; 610 - url = "https://github.com/gorilla/schema"; 611 - rev = "v1.1.0"; 612 - sha256 = "14d31i3h6bg83r7ncmwm2pirab66z9hza38in18l89pbazxyh2n9"; 727 + url = "https://github.com/gorilla/websocket"; 728 + rev = "v1.4.0"; 729 + sha256 = "00i4vb31nsfkzzk7swvx3i75r2d960js3dri1875vypk3v2s0pzk"; 613 730 }; 614 731 } 615 732 { ··· 649 766 }; 650 767 } 651 768 { 769 + goPackagePath = "github.com/hashicorp/go-version"; 770 + fetch = { 771 + type = "git"; 772 + url = "https://github.com/hashicorp/go-version"; 773 + rev = "v1.2.0"; 774 + sha256 = "1bwi6y6111xq8ww8kjq0w1cmz15l1h9hb2id6596l8l0ag1vjj1z"; 775 + }; 776 + } 777 + { 652 778 goPackagePath = "github.com/hashicorp/golang-lru"; 653 779 fetch = { 654 780 type = "git"; ··· 712 838 }; 713 839 } 714 840 { 715 - goPackagePath = "github.com/iris-contrib/formBinder"; 841 + goPackagePath = "github.com/iris-contrib/go.uuid"; 716 842 fetch = { 717 843 type = "git"; 718 - url = "https://github.com/iris-contrib/formBinder"; 719 - rev = "v5.0.0"; 720 - sha256 = "0mqk6j7a9d3y28ad4ylqc7z5w4hmn1ws5wwnyll918xn1wkzr5rg"; 844 + url = "https://github.com/iris-contrib/go.uuid"; 845 + rev = "v2.0.0"; 846 + sha256 = "0nc0ggn0a6bcwdrwinnx3z6889x65c20a2dwja0n8can3xblxs35"; 721 847 }; 722 848 } 723 849 { 724 - goPackagePath = "github.com/iris-contrib/go.uuid"; 850 + goPackagePath = "github.com/iris-contrib/i18n"; 725 851 fetch = { 726 852 type = "git"; 727 - url = "https://github.com/iris-contrib/go.uuid"; 728 - rev = "v2.0.0"; 729 - sha256 = "0nc0ggn0a6bcwdrwinnx3z6889x65c20a2dwja0n8can3xblxs35"; 853 + url = "https://github.com/iris-contrib/i18n"; 854 + rev = "987a633949d0"; 855 + sha256 = "0yslm7hmacc57v970jbys4x5c5yxgcjgff982ngivg9v1a16kifq"; 730 856 }; 731 857 } 732 858 { 733 - goPackagePath = "github.com/iris-contrib/httpexpect"; 859 + goPackagePath = "github.com/iris-contrib/schema"; 734 860 fetch = { 735 861 type = "git"; 736 - url = "https://github.com/iris-contrib/httpexpect"; 737 - rev = "ebe99fcebbce"; 738 - sha256 = "126c50c6r5l2gdn60jirpb54pqwswxag3wgrv6wcn998h9w9gv8c"; 862 + url = "https://github.com/iris-contrib/schema"; 863 + rev = "v0.0.1"; 864 + sha256 = "1a1lk2ll2xv3ljffmfw4q8mqqw727pj8dzs6c8g2hh0b0b050g79"; 739 865 }; 740 866 } 741 867 { ··· 824 950 fetch = { 825 951 type = "git"; 826 952 url = "https://github.com/kataras/golog"; 827 - rev = "99c81de45f40"; 828 - sha256 = "1dgrsvhzymgj7da54ldv8plkxk3n8zh3kc995qxl6mrpz65j801p"; 953 + rev = "v0.0.9"; 954 + sha256 = "160hd3z93c9i33q9g1bhfdxmsqg1lanncnrqcsr2444dy5j6ly3i"; 829 955 }; 830 956 } 831 957 { ··· 833 959 fetch = { 834 960 type = "git"; 835 961 url = "https://github.com/kataras/iris"; 836 - rev = "v11.1.1"; 837 - sha256 = "1rxpr5hdj9mji26mlfp4zic0pc6nh93akzccw24a5kynj07g68wg"; 962 + rev = "v12.0.1"; 963 + sha256 = "0k1jhamvf0byx6d317gzg6r2jls7bajhhf2spvdinarl2cjnakm5"; 964 + }; 965 + } 966 + { 967 + goPackagePath = "github.com/kataras/neffos"; 968 + fetch = { 969 + type = "git"; 970 + url = "https://github.com/kataras/neffos"; 971 + rev = "v0.0.10"; 972 + sha256 = "0mkqrxff28rcc71nw5qqsywn0fm2jz7magwp9hhvh1s01lgghjdp"; 838 973 }; 839 974 } 840 975 { ··· 869 1004 fetch = { 870 1005 type = "git"; 871 1006 url = "https://github.com/klauspost/compress"; 872 - rev = "v1.4.0"; 873 - sha256 = "1y7951q0ji894d111lqqbacq64cxyi2dxsni5sqi9488zsasgw8s"; 1007 + rev = "v1.9.0"; 1008 + sha256 = "07vndz6mdaliwagj2xq0y5c5w2zld14p9i5y7r0bkhb7klfyamfk"; 874 1009 }; 875 1010 } 876 1011 { ··· 878 1013 fetch = { 879 1014 type = "git"; 880 1015 url = "https://github.com/klauspost/cpuid"; 881 - rev = "e7e905edc00e"; 882 - sha256 = "0cmyv3rwv5r5iqvvfhbiwp3jsfa40c6xfm42nxbngd5lygjcwwgf"; 1016 + rev = "v1.2.1"; 1017 + sha256 = "1071wchrs37bvpb99fwf19fjrpz0yaqipi2y2hjvim419flvd49x"; 883 1018 }; 884 1019 } 885 1020 { ··· 932 1067 fetch = { 933 1068 type = "git"; 934 1069 url = "https://github.com/labstack/echo"; 935 - rev = "v4.1.10"; 936 - sha256 = "0qg9ykmhgldiv2v1w8sz8x0j0bgqf11ghzrim59fb6pxz8qgg25h"; 1070 + rev = "v4.1.11"; 1071 + sha256 = "0b14vgwzznn7wzyjb98xdmq4wjg16l3y62njiwfz4qsm4pwzk405"; 937 1072 }; 938 1073 } 939 1074 { ··· 952 1087 url = "https://github.com/lib/pq"; 953 1088 rev = "v1.2.0"; 954 1089 sha256 = "08j1smm6rassdssdks4yh9aspa1dv1g5nvwimmknspvhx8a7waqz"; 1090 + }; 1091 + } 1092 + { 1093 + goPackagePath = "github.com/libgit2/git2go"; 1094 + fetch = { 1095 + type = "git"; 1096 + url = "https://github.com/libgit2/git2go"; 1097 + rev = "ecaeb7a21d47"; 1098 + sha256 = "14r7ryff93r49g94f6kg66xc0y6rwb31lj22s3qmzmlgywk0pgvr"; 955 1099 }; 956 1100 } 957 1101 { ··· 1000 1144 }; 1001 1145 } 1002 1146 { 1147 + goPackagePath = "github.com/mattn/go-shellwords"; 1148 + fetch = { 1149 + type = "git"; 1150 + url = "https://github.com/mattn/go-shellwords"; 1151 + rev = "2444a32a19f4"; 1152 + sha256 = "08zcgr1az1n8zaxzwdd205j86hczgyc52nxfnw5avpw7rrkf7v0d"; 1153 + }; 1154 + } 1155 + { 1003 1156 goPackagePath = "github.com/mattn/go-sqlite3"; 1004 1157 fetch = { 1005 1158 type = "git"; ··· 1027 1180 }; 1028 1181 } 1029 1182 { 1183 + goPackagePath = "github.com/mediocregopher/mediocre-go-lib"; 1184 + fetch = { 1185 + type = "git"; 1186 + url = "https://github.com/mediocregopher/mediocre-go-lib"; 1187 + rev = "cb65787f37ed"; 1188 + sha256 = "0lg6q76fxjhxv05m80k4l6nrkj9qwzafs2mb2gbvhznxh8m0cv9j"; 1189 + }; 1190 + } 1191 + { 1192 + goPackagePath = "github.com/mediocregopher/radix"; 1193 + fetch = { 1194 + type = "git"; 1195 + url = "https://github.com/mediocregopher/radix"; 1196 + rev = "v3.3.0"; 1197 + sha256 = "0pchn5z2g4wnf87350war5fr9pqpdksia1ffvw7cphg4q9blggfx"; 1198 + }; 1199 + } 1200 + { 1030 1201 goPackagePath = "github.com/microcosm-cc/bluemonday"; 1031 1202 fetch = { 1032 1203 type = "git"; ··· 1099 1270 }; 1100 1271 } 1101 1272 { 1273 + goPackagePath = "github.com/nats-io/nats.go"; 1274 + fetch = { 1275 + type = "git"; 1276 + url = "https://github.com/nats-io/nats.go"; 1277 + rev = "v1.8.1"; 1278 + sha256 = "0h9zzpjl6ac227bhf0i4ram9a5jlibq53pawv0zzxdirxrnp1vkj"; 1279 + }; 1280 + } 1281 + { 1282 + goPackagePath = "github.com/nats-io/nkeys"; 1283 + fetch = { 1284 + type = "git"; 1285 + url = "https://github.com/nats-io/nkeys"; 1286 + rev = "v0.0.2"; 1287 + sha256 = "0kibc1g60w031rssk3vs74gfick3jdl3igckn1v4k8b5grawcks1"; 1288 + }; 1289 + } 1290 + { 1291 + goPackagePath = "github.com/nats-io/nuid"; 1292 + fetch = { 1293 + type = "git"; 1294 + url = "https://github.com/nats-io/nuid"; 1295 + rev = "v1.0.1"; 1296 + sha256 = "11zbhg4kds5idsya04bwz4plj0mmiigypzppzih731ppbk2ms1zg"; 1297 + }; 1298 + } 1299 + { 1102 1300 goPackagePath = "github.com/olekukonko/tablewriter"; 1103 1301 fetch = { 1104 1302 type = "git"; ··· 1112 1310 fetch = { 1113 1311 type = "git"; 1114 1312 url = "https://github.com/onsi/ginkgo"; 1115 - rev = "v1.10.1"; 1116 - sha256 = "033a42h1wzmji57p86igg9whvsbp6nvfdsypskw738ys903n3z4d"; 1313 + rev = "v1.10.3"; 1314 + sha256 = "00a40by9f5ylycnar8h3p9b4z5rcsvfvg4j3v5s5mchdqrqjv1pc"; 1117 1315 }; 1118 1316 } 1119 1317 { ··· 1121 1319 fetch = { 1122 1320 type = "git"; 1123 1321 url = "https://github.com/onsi/gomega"; 1124 - rev = "v1.7.0"; 1125 - sha256 = "09j6wq425wgzzsbwm9ckhfgl2capv3yyqbrf45qyrjwkzm49i02y"; 1322 + rev = "v1.7.1"; 1323 + sha256 = "06p3x0910cdaa64l7d44s728d4j3yhps315dlcvrbjzhljjj7mam"; 1126 1324 }; 1127 1325 } 1128 1326 { ··· 1135 1333 }; 1136 1334 } 1137 1335 { 1336 + goPackagePath = "github.com/otiai10/copy"; 1337 + fetch = { 1338 + type = "git"; 1339 + url = "https://github.com/otiai10/copy"; 1340 + rev = "v1.0.1"; 1341 + sha256 = "0xmy0kfcx48q10s040579pcjswfaxlwhv7a2z07z9r92fdrgw03k"; 1342 + }; 1343 + } 1344 + { 1345 + goPackagePath = "github.com/otiai10/curr"; 1346 + fetch = { 1347 + type = "git"; 1348 + url = "https://github.com/otiai10/curr"; 1349 + rev = "v1.0.0"; 1350 + sha256 = "0fpw20adq2wff7l4c87zaavj9jra4d64a8bbjixiiv3bbarim987"; 1351 + }; 1352 + } 1353 + { 1354 + goPackagePath = "github.com/otiai10/mint"; 1355 + fetch = { 1356 + type = "git"; 1357 + url = "https://github.com/otiai10/mint"; 1358 + rev = "v1.3.0"; 1359 + sha256 = "0kfc95jc2hfgwzcpdfa5hrxgj7s6rzx5jc0n1sn863bsngx2q1ca"; 1360 + }; 1361 + } 1362 + { 1138 1363 goPackagePath = "github.com/pelletier/go-toml"; 1139 1364 fetch = { 1140 1365 type = "git"; ··· 1157 1382 fetch = { 1158 1383 type = "git"; 1159 1384 url = "https://github.com/pingcap/errors"; 1160 - rev = "v0.11.1"; 1161 - sha256 = "00wr0l4cwq0qx8jw51j0n7pbh9l7hdq2874x9rf1mz5svz1wbmcp"; 1385 + rev = "v0.11.4"; 1386 + sha256 = "02k6b30m42aya763fnwx3paq4r8h28yav4i2kv2z4r28r70xxcgn"; 1162 1387 }; 1163 1388 } 1164 1389 { ··· 1310 1535 fetch = { 1311 1536 type = "git"; 1312 1537 url = "https://github.com/smartystreets/goconvey"; 1313 - rev = "505e41936337"; 1538 + rev = "v1.6.4"; 1314 1539 sha256 = "07zjxwszayal88z1j2bwnqrsa32vg8l4nivks5yfr9j8xfsw7n6m"; 1315 1540 }; 1316 1541 } ··· 1427 1652 fetch = { 1428 1653 type = "git"; 1429 1654 url = "https://github.com/ugorji/go"; 1430 - rev = "v1.1.4"; 1431 - sha256 = "0ma2qvn5wqvjidpdz74x832a813qnr1cxbx6n6n125ak9b3wbn5w"; 1655 + rev = "v1.1.7"; 1656 + sha256 = "068gja55kbh2iivp03x4n9dcml0rxv0k64ivkmq06si2ar1835rm"; 1432 1657 }; 1433 1658 } 1434 1659 { ··· 1454 1679 fetch = { 1455 1680 type = "git"; 1456 1681 url = "https://github.com/valyala/fasthttp"; 1457 - rev = "v1.4.0"; 1458 - sha256 = "0kypc7r91n61fm6qsadza1aiy9n6byghvcxzvx7agi6yzrllk956"; 1682 + rev = "v1.6.0"; 1683 + sha256 = "1r1hm4rv9w6x829jjg75y8xd523b76parsyyvjwyz8k2l6bm4h0b"; 1459 1684 }; 1460 1685 } 1461 1686 { ··· 1481 1706 fetch = { 1482 1707 type = "git"; 1483 1708 url = "https://github.com/xeipuuv/gojsonpointer"; 1484 - rev = "df4f5c81cb3b"; 1485 - sha256 = "0dfwc66z5gq75m3z7va80c10c22ijiq99bahq86l26ki71g286xn"; 1709 + rev = "4e3ac2762d5f"; 1710 + sha256 = "13y6iq2nzf9z4ls66bfgnnamj2m3438absmbpqry64bpwjfbsi9q"; 1486 1711 }; 1487 1712 } 1488 1713 { ··· 1499 1724 fetch = { 1500 1725 type = "git"; 1501 1726 url = "https://github.com/xeipuuv/gojsonschema"; 1502 - rev = "v1.1.0"; 1503 - sha256 = "10gn5y4l72zknj21mff29d9vnk4pz7jnw39xnlsb373lsiih91xg"; 1727 + rev = "v1.2.0"; 1728 + sha256 = "1mqiq0r8qw4qlfp3ls8073r6514rmzwrmdn4j33rppk3zh942i6l"; 1504 1729 }; 1505 1730 } 1506 1731 { ··· 1558 1783 }; 1559 1784 } 1560 1785 { 1786 + goPackagePath = "gitlab.com/gitlab-org/gitlab-shell"; 1787 + fetch = { 1788 + type = "git"; 1789 + url = "https://gitlab.com/gitlab-org/gitlab-shell.git"; 1790 + rev = "716e30c55e89"; 1791 + sha256 = "0g2bgwm5rf93xfd40j3d2a5js1a212r2l2qdbds3gp7h0v73npjw"; 1792 + }; 1793 + } 1794 + { 1561 1795 goPackagePath = "gitlab.com/gitlab-org/labkit"; 1562 1796 fetch = { 1563 1797 type = "git"; 1564 1798 url = "https://gitlab.com/gitlab-org/labkit.git"; 1565 - rev = "fac94cb428e6"; 1566 - sha256 = "19wvfjij6zm88fxbx0cngr6ny4yh3fw469d6vlv741b37s07w3j0"; 1799 + rev = "0149780c759d"; 1800 + sha256 = "1krp5jkwpckpdznbl9xp4yvq6cii750r24agcni3snbbs8hd8gb1"; 1567 1801 }; 1568 1802 } 1569 1803 {
+40 -30
pkgs/applications/version-management/gitlab/gitaly/gemset.nix
··· 13 13 platforms = []; 14 14 source = { 15 15 remotes = ["https://rubygems.org"]; 16 - sha256 = "0zg96vjjw1kbli6nk6cyk64zfh4lgpl7fqx38ncbgfacl4dq7y0b"; 16 + sha256 = "1665r4ffqdpykxwpgdnaq7xsaz1nfswc5wjs2qr0npx8bq7g49kh"; 17 17 type = "gem"; 18 18 }; 19 - version = "6.0.2"; 19 + version = "6.0.3.1"; 20 20 }; 21 21 actionview = { 22 22 dependencies = ["activesupport" "builder" "erubi" "rails-dom-testing" "rails-html-sanitizer"]; ··· 24 24 platforms = []; 25 25 source = { 26 26 remotes = ["https://rubygems.org"]; 27 - sha256 = "1bfh9z3n98c76c6jdp6avh75wsckxyp74r59hmgnqdhfznbkppv4"; 27 + sha256 = "1n21pswh3k7m33vzhxyrbi5lj64b1138yqv34jjhkhlq3474b4rh"; 28 28 type = "gem"; 29 29 }; 30 - version = "6.0.2"; 30 + version = "6.0.3.1"; 31 31 }; 32 32 activesupport = { 33 33 dependencies = ["concurrent-ruby" "i18n" "minitest" "tzinfo" "zeitwerk"]; ··· 35 35 platforms = []; 36 36 source = { 37 37 remotes = ["https://rubygems.org"]; 38 - sha256 = "1brlp5pmawb2hqdybjb732zxxkamcmis6px3wyh09rjlc0gqnzzz"; 38 + sha256 = "1l29n9n38c9lpy5smh26r7fy7jp2bpjqlzhxgsr79cv7xpwlrbhs"; 39 39 type = "gem"; 40 40 }; 41 - version = "6.0.2"; 41 + version = "6.0.3.1"; 42 42 }; 43 43 adamantium = { 44 44 dependencies = ["ice_nine" "memoizable"]; ··· 118 118 platforms = []; 119 119 source = { 120 120 remotes = ["https://rubygems.org"]; 121 - sha256 = "1x07r23s7836cpp5z9yrlbpljcxpax14yw4fy4bnp6crhr6x24an"; 121 + sha256 = "094387x4yasb797mv07cs3g6f08y56virc2rjcpb1k79rzaj3nhl"; 122 122 type = "gem"; 123 123 }; 124 - version = "1.1.5"; 124 + version = "1.1.6"; 125 125 }; 126 126 crack = { 127 127 dependencies = ["safe_yaml"]; ··· 213 213 platforms = []; 214 214 source = { 215 215 remotes = ["https://rubygems.org"]; 216 - sha256 = "06mvxpjply8qh4j3fj9wh08kdzwkbnvsiysh0vrhlk5cwxzjmblh"; 216 + sha256 = "10lfhahnnc91v63xpvk65apn61pib086zha3z5sp1xk9acfx12h4"; 217 217 type = "gem"; 218 218 }; 219 - version = "1.11.1"; 219 + version = "1.12.2"; 220 220 }; 221 221 gemojione = { 222 222 dependencies = ["json"]; ··· 233 233 platforms = []; 234 234 source = { 235 235 remotes = ["https://rubygems.org"]; 236 - sha256 = "092bq7bjfj2yvss2ig6jb71j0h04cigq79xxfis37j315iixl12j"; 236 + sha256 = "0rhw05d88l928g6y2bngvmr66565b2z822hyynmb13b7khf07y1a"; 237 237 type = "gem"; 238 238 }; 239 - version = "7.5.1"; 239 + version = "7.9.0"; 240 240 }; 241 241 github-markup = { 242 242 source = { ··· 252 252 platforms = []; 253 253 source = { 254 254 remotes = ["https://rubygems.org"]; 255 - sha256 = "0dwrggw38wkadm9i1q8bj15lf0ik5z6qlbbggkgcvmbxb0a4hrmx"; 255 + sha256 = "0y21k8bix3h2qdys2kz2z831cclmx3zc15x67cp8s945dkmh39sj"; 256 256 type = "gem"; 257 257 }; 258 - version = "4.2.7.8"; 258 + version = "4.2.7.9"; 259 259 }; 260 260 gitlab-gollum-rugged_adapter = { 261 261 dependencies = ["mime-types" "rugged"]; ··· 274 274 platforms = []; 275 275 source = { 276 276 remotes = ["https://rubygems.org"]; 277 - sha256 = "1s1cgnnzlnfglsh5r0iihgvyasa2zbqkyrrnbxshvnkddb10i94z"; 277 + sha256 = "0a63zgjll83b25hiq8m4sk75jci2rj8z46lss0j3bc6zi3pxnzax"; 278 278 type = "gem"; 279 279 }; 280 - version = "0.9.1"; 280 + version = "0.12.0"; 281 281 }; 282 282 gitlab-markup = { 283 283 groups = ["default"]; 284 284 platforms = []; 285 285 source = { 286 286 remotes = ["https://rubygems.org"]; 287 - sha256 = "0rqf3jmyn78r3ysy3bjyx7s4yv3xipxlmqlmbyrbksna19rrx08d"; 287 + sha256 = "0xnlra517pfj3hx07kasbqlcw51ix4xajr6bsd3mwg8bc92dlwy7"; 288 288 type = "gem"; 289 289 }; 290 - version = "1.7.0"; 290 + version = "1.7.1"; 291 291 }; 292 292 google-protobuf = { 293 293 groups = ["default"]; 294 294 platforms = []; 295 295 source = { 296 296 remotes = ["https://rubygems.org"]; 297 - sha256 = "1swxvka4qcfa986qr5d3hxqlcsraxfb6fsc0mf2ngxmq15wad8br"; 297 + sha256 = "0by3289irdklb9gjqw41fq6mg6yja3iyzh99dj8p8z9l4brllqn4"; 298 298 type = "gem"; 299 299 }; 300 - version = "3.11.4"; 300 + version = "3.8.0"; 301 301 }; 302 302 googleapis-common-protos-types = { 303 303 dependencies = ["google-protobuf"]; ··· 316 316 platforms = []; 317 317 source = { 318 318 remotes = ["https://rubygems.org"]; 319 - sha256 = "0jbfnsdvb9hbqgkh2qkckzxvdwcbhdkwwvlnc5mb8679hxz7b7bs"; 319 + sha256 = "18wikj9qd4jb4lks55cs2cf3q7fifnanm9z9ywnxhpj57vbnilpf"; 320 320 type = "gem"; 321 321 }; 322 - version = "1.27.0"; 322 + version = "1.24.0"; 323 + }; 324 + grpc-tools = { 325 + groups = ["development" "test"]; 326 + platforms = []; 327 + source = { 328 + remotes = ["https://rubygems.org"]; 329 + sha256 = "0pjs2sm43mai2fy0jsbxl8rs9bych8f5j8hv630fjwh0323cmcc9"; 330 + type = "gem"; 331 + }; 332 + version = "1.0.1"; 323 333 }; 324 334 hashdiff = { 325 335 groups = ["default" "development" "test"]; ··· 404 414 platforms = []; 405 415 source = { 406 416 remotes = ["https://rubygems.org"]; 407 - sha256 = "1g7ps9m3s14cajhxrfgbzahv9i3gy47s4hqrv3mpybpj5cyr0srn"; 417 + sha256 = "0jk9fgn5ayzbqvzqm11gbkqvas77zdbpkvynlylyiwynclgrn040"; 408 418 type = "gem"; 409 419 }; 410 - version = "2.4.0"; 420 + version = "2.5.0"; 411 421 }; 412 422 memoizable = { 413 423 dependencies = ["thread_safe"]; ··· 669 679 platforms = []; 670 680 source = { 671 681 remotes = ["https://rubygems.org"]; 672 - sha256 = "1n9h0ls2a2zq0bcsw31wxci1wdxb8s3vglfadxpcs6b04vkf6nqq"; 682 + sha256 = "102rc07d78k5bkl0s9nd1gw6wz0w0zcvg4g5sl7z9xxi4r793c35"; 673 683 type = "gem"; 674 684 }; 675 - version = "3.18.0"; 685 + version = "3.19.0"; 676 686 }; 677 687 rspec = { 678 688 dependencies = ["rspec-core" "rspec-expectations" "rspec-mocks"]; ··· 861 871 platforms = []; 862 872 source = { 863 873 remotes = ["https://rubygems.org"]; 864 - sha256 = "04f18jdv6z3zn3va50rqq35nj3izjpb72fnf21ixm7vanq6nc4fp"; 874 + sha256 = "1i3jh086w1kbdj3k5l60lc3nwbanmzdf8yjj3mlrx9b2gjjxhi9r"; 865 875 type = "gem"; 866 876 }; 867 - version = "1.2.6"; 877 + version = "1.2.7"; 868 878 }; 869 879 unicode-display_width = { 870 880 groups = ["default" "development" "test"]; ··· 909 919 platforms = []; 910 920 source = { 911 921 remotes = ["https://rubygems.org"]; 912 - sha256 = "0jywi63w1m2b2w9fj9rjb9n3imf6p5bfijfmml1xzdnsrdrjz0x1"; 922 + sha256 = "1akpm3pwvyiack2zk6giv9yn3cqb8pw6g40p4394pdc3xmy3s4k0"; 913 923 type = "gem"; 914 924 }; 915 - version = "2.2.2"; 925 + version = "2.3.0"; 916 926 }; 917 927 }
+2 -2
pkgs/applications/version-management/gitlab/gitlab-shell/default.nix
··· 2 2 3 3 buildGoPackage rec { 4 4 pname = "gitlab-shell"; 5 - version = "12.2.0"; 5 + version = "13.2.0"; 6 6 src = fetchFromGitLab { 7 7 owner = "gitlab-org"; 8 8 repo = "gitlab-shell"; 9 9 rev = "v${version}"; 10 - sha256 = "0zjpjk7iv083ys11sn3hiqawp09zgi9hhhv4hdh13axaw9ld340v"; 10 + sha256 = "0drdpg4nmhzrmy8sl1f3hcd1278bpapgf0wmhi94xlyayh47j53a"; 11 11 }; 12 12 13 13 buildInputs = [ ruby ];
+2 -2
pkgs/applications/version-management/gitlab/gitlab-workhorse/default.nix
··· 3 3 buildGoPackage rec { 4 4 pname = "gitlab-workhorse"; 5 5 6 - version = "8.30.2"; 6 + version = "8.31.1"; 7 7 8 8 src = fetchFromGitLab { 9 9 owner = "gitlab-org"; 10 10 repo = "gitlab-workhorse"; 11 11 rev = "v${version}"; 12 - sha256 = "1ws59ry16kx4nqp92xcqw3fri570pvpdgvy822ndi7rybw5xij7p"; 12 + sha256 = "1c2y1icil98qay9d95q1rlpi0ffhll990grkkib9srsn55b2i86v"; 13 13 }; 14 14 15 15 goPackagePath = "gitlab.com/gitlab-org/gitlab-workhorse";
+9
pkgs/applications/version-management/gitlab/gitlab-workhorse/deps.nix
··· 10 10 }; 11 11 } 12 12 { 13 + goPackagePath = "dmitri.shuralyov.com/gpu/mtl"; 14 + fetch = { 15 + type = "git"; 16 + url = "https://dmitri.shuralyov.com/gpu/mtl"; 17 + rev = "666a987793e9"; 18 + sha256 = "1isd03hgiwcf2ld1rlp0plrnfz7r4i7c5q4kb6hkcd22axnmrv0z"; 19 + }; 20 + } 21 + { 13 22 goPackagePath = "github.com/BurntSushi/toml"; 14 23 fetch = { 15 24 type = "git";
+24 -21
pkgs/applications/version-management/gitlab/rubyEnv/Gemfile
··· 1 1 source 'https://rubygems.org' 2 2 3 - gem 'rails', '6.0.2' 3 + gem 'rails', '~> 6.0.3' 4 4 5 5 gem 'bootsnap', '~> 1.4.6' 6 6 ··· 26 26 27 27 # Authentication libraries 28 28 gem 'devise', '~> 4.6' 29 - gem 'doorkeeper', '~> 5.0.2' 29 + gem 'doorkeeper', '~> 5.0.3' 30 30 gem 'doorkeeper-openid_connect', '~> 1.6.3' 31 31 gem 'omniauth', '~> 1.8' 32 32 gem 'omniauth-auth0', '~> 2.0.0' ··· 138 138 # Markdown and HTML processing 139 139 gem 'html-pipeline', '~> 2.12' 140 140 gem 'deckar01-task_list', '2.3.1' 141 - gem 'gitlab-markup', '~> 1.7.0' 141 + gem 'gitlab-markup', '~> 1.7.1' 142 142 gem 'github-markup', '~> 1.7.0', require: 'github/markup' 143 143 gem 'commonmarker', '~> 0.20' 144 144 gem 'RedCloth', '~> 4.3.2' ··· 148 148 gem 'wikicloth', '0.8.1' 149 149 gem 'asciidoctor', '~> 2.0.10' 150 150 gem 'asciidoctor-include-ext', '~> 0.3.1', require: false 151 - gem 'asciidoctor-plantuml', '0.0.10' 152 - gem 'rouge', '~> 3.18.0' 151 + gem 'asciidoctor-plantuml', '~> 0.0.12' 152 + gem 'rouge', '~> 3.19.0' 153 153 gem 'truncato', '~> 0.7.11' 154 154 gem 'bootstrap_form', '~> 4.2.0' 155 - gem 'nokogiri', '~> 1.10.5' 155 + gem 'nokogiri', '~> 1.10.9' 156 156 gem 'escape_utils', '~> 1.1' 157 157 158 158 # Calendar rendering ··· 166 166 gem 'rack', '~> 2.0.9' 167 167 168 168 group :unicorn do 169 - gem 'unicorn', '~> 5.4.1' 169 + gem 'unicorn', '~> 5.5' 170 170 gem 'unicorn-worker-killer', '~> 0.4.4' 171 171 end 172 172 ··· 204 204 gem 'settingslogic', '~> 2.0.9' 205 205 206 206 # Linear-time regex library for untrusted regular expressions 207 - gem 're2', '~> 1.1.1' 207 + gem 're2', '~> 1.2.0' 208 208 209 209 # Misc 210 210 ··· 230 230 gem 'hipchat', '~> 1.5.0' 231 231 232 232 # Jira integration 233 - gem 'jira-ruby', '~> 1.7' 233 + gem 'jira-ruby', '~> 2.0.0' 234 234 gem 'atlassian-jwt', '~> 0.2.0' 235 235 236 236 # Flowdock integration ··· 287 287 gem 'font-awesome-rails', '~> 4.7' 288 288 gem 'gemojione', '~> 3.3' 289 289 gem 'gon', '~> 6.2' 290 - gem 'request_store', '~> 1.3' 290 + gem 'request_store', '~> 1.5' 291 291 gem 'base32', '~> 0.3.0' 292 292 293 293 gem "gitlab-license", "~> 1.0" 294 294 295 295 # Protect against bruteforcing 296 - gem 'rack-attack', '~> 6.2.0' 296 + gem 'rack-attack', '~> 6.3.0' 297 297 298 298 # Sentry integration 299 299 gem 'sentry-raven', '~> 2.9' ··· 318 318 # Snowplow events tracking 319 319 gem 'snowplow-tracker', '~> 0.6.1' 320 320 321 - # Memory benchmarks 322 - gem 'derailed_benchmarks', require: false 323 - 324 321 # Metrics 325 322 group :metrics do 326 323 gem 'method_source', '~> 0.8', require: false 327 - gem 'influxdb', '~> 0.2', require: false 328 324 329 325 # Prometheus 330 326 gem 'prometheus-client-mmap', '~> 0.10.0' ··· 355 351 356 352 gem 'database_cleaner', '~> 1.7.0' 357 353 gem 'factory_bot_rails', '~> 5.1.0' 358 - gem 'rspec-rails', '~> 4.0.0.beta4' 354 + gem 'rspec-rails', '~> 4.0.0' 359 355 360 356 # Prevent occasions where minitest is not bundled in packaged versions of ruby (see #3826) 361 357 gem 'minitest', '~> 5.11.0' ··· 414 410 gem 'test-prof', '~> 0.10.0' 415 411 gem 'rspec_junit_formatter' 416 412 gem 'guard-rspec' 413 + 414 + # Moved in `test` because https://gitlab.com/gitlab-org/gitlab/-/issues/217527 415 + gem 'derailed_benchmarks', require: false 417 416 end 418 417 419 418 gem 'octokit', '~> 4.15' 420 419 421 420 # https://gitlab.com/gitlab-org/gitlab/issues/207207 422 - gem 'gitlab-mail_room', '~> 0.0.3', require: 'mail_room' 421 + gem 'gitlab-mail_room', '~> 0.0.4', require: 'mail_room' 423 422 424 423 gem 'email_reply_trimmer', '~> 0.1' 425 424 gem 'html2text' ··· 445 444 gem 'net-ntp' 446 445 447 446 # SSH host key support 448 - gem 'net-ssh', '~> 5.2' 447 + gem 'net-ssh', '~> 6.0' 449 448 gem 'sshkey', '~> 2.0' 450 449 451 450 # Required for ED25519 SSH host key support ··· 455 454 end 456 455 457 456 # Gitaly GRPC protocol definitions 458 - gem 'gitaly', '~> 12.9.0.pre.rc4' 457 + gem 'gitaly', '~> 13.0.0.pre.rc1' 459 458 460 459 gem 'grpc', '~> 1.24.0' 461 460 ··· 481 480 482 481 gem 'retriable', '~> 3.1.2' 483 482 484 - gem 'liquid', '~> 4.0' 485 - 486 483 # LRU cache 487 484 gem 'lru_redux' 488 485 ··· 495 492 496 493 # File encryption 497 494 gem 'lockbox', '~> 0.3.3' 495 + 496 + # Email validation 497 + gem 'valid_email', '~> 0.1' 498 + 499 + # JSON 500 + gem 'json', '~> 2.3.0'
+96 -97
pkgs/applications/version-management/gitlab/rubyEnv/Gemfile.lock
··· 6 6 ace-rails-ap (4.1.2) 7 7 acme-client (2.0.5) 8 8 faraday (~> 0.9, >= 0.9.1) 9 - actioncable (6.0.2) 10 - actionpack (= 6.0.2) 9 + actioncable (6.0.3) 10 + actionpack (= 6.0.3) 11 11 nio4r (~> 2.0) 12 12 websocket-driver (>= 0.6.1) 13 - actionmailbox (6.0.2) 14 - actionpack (= 6.0.2) 15 - activejob (= 6.0.2) 16 - activerecord (= 6.0.2) 17 - activestorage (= 6.0.2) 18 - activesupport (= 6.0.2) 13 + actionmailbox (6.0.3) 14 + actionpack (= 6.0.3) 15 + activejob (= 6.0.3) 16 + activerecord (= 6.0.3) 17 + activestorage (= 6.0.3) 18 + activesupport (= 6.0.3) 19 19 mail (>= 2.7.1) 20 - actionmailer (6.0.2) 21 - actionpack (= 6.0.2) 22 - actionview (= 6.0.2) 23 - activejob (= 6.0.2) 20 + actionmailer (6.0.3) 21 + actionpack (= 6.0.3) 22 + actionview (= 6.0.3) 23 + activejob (= 6.0.3) 24 24 mail (~> 2.5, >= 2.5.4) 25 25 rails-dom-testing (~> 2.0) 26 - actionpack (6.0.2) 27 - actionview (= 6.0.2) 28 - activesupport (= 6.0.2) 29 - rack (~> 2.0) 26 + actionpack (6.0.3) 27 + actionview (= 6.0.3) 28 + activesupport (= 6.0.3) 29 + rack (~> 2.0, >= 2.0.8) 30 30 rack-test (>= 0.6.3) 31 31 rails-dom-testing (~> 2.0) 32 32 rails-html-sanitizer (~> 1.0, >= 1.2.0) 33 - actiontext (6.0.2) 34 - actionpack (= 6.0.2) 35 - activerecord (= 6.0.2) 36 - activestorage (= 6.0.2) 37 - activesupport (= 6.0.2) 33 + actiontext (6.0.3) 34 + actionpack (= 6.0.3) 35 + activerecord (= 6.0.3) 36 + activestorage (= 6.0.3) 37 + activesupport (= 6.0.3) 38 38 nokogiri (>= 1.8.5) 39 - actionview (6.0.2) 40 - activesupport (= 6.0.2) 39 + actionview (6.0.3) 40 + activesupport (= 6.0.3) 41 41 builder (~> 3.1) 42 42 erubi (~> 1.4) 43 43 rails-dom-testing (~> 2.0) 44 44 rails-html-sanitizer (~> 1.1, >= 1.2.0) 45 - activejob (6.0.2) 46 - activesupport (= 6.0.2) 45 + activejob (6.0.3) 46 + activesupport (= 6.0.3) 47 47 globalid (>= 0.3.6) 48 - activemodel (6.0.2) 49 - activesupport (= 6.0.2) 50 - activerecord (6.0.2) 51 - activemodel (= 6.0.2) 52 - activesupport (= 6.0.2) 48 + activemodel (6.0.3) 49 + activesupport (= 6.0.3) 50 + activerecord (6.0.3) 51 + activemodel (= 6.0.3) 52 + activesupport (= 6.0.3) 53 53 activerecord-explain-analyze (0.1.0) 54 54 activerecord (>= 4) 55 55 pg 56 - activestorage (6.0.2) 57 - actionpack (= 6.0.2) 58 - activejob (= 6.0.2) 59 - activerecord (= 6.0.2) 56 + activestorage (6.0.3) 57 + actionpack (= 6.0.3) 58 + activejob (= 6.0.3) 59 + activerecord (= 6.0.3) 60 60 marcel (~> 0.3.1) 61 - activesupport (6.0.2) 61 + activesupport (6.0.3) 62 62 concurrent-ruby (~> 1.0, >= 1.0.2) 63 63 i18n (>= 0.7, < 2) 64 64 minitest (~> 5.1) 65 65 tzinfo (~> 1.1) 66 - zeitwerk (~> 2.2) 66 + zeitwerk (~> 2.2, >= 2.2.2) 67 67 acts-as-taggable-on (6.5.0) 68 68 activerecord (>= 5.0, < 6.1) 69 69 adamantium (0.2.0) ··· 84 84 asciidoctor (2.0.10) 85 85 asciidoctor-include-ext (0.3.1) 86 86 asciidoctor (>= 1.5.6, < 3.0.0) 87 - asciidoctor-plantuml (0.0.10) 87 + asciidoctor-plantuml (0.0.12) 88 88 asciidoctor (>= 1.5.6, < 3.0.0) 89 89 ast (2.4.0) 90 90 atlassian-jwt (0.2.0) ··· 153 153 activemodel (>= 4.0.0) 154 154 activesupport (>= 4.0.0) 155 155 mime-types (>= 1.16) 156 - cause (0.1) 157 156 character_set (1.1.2) 158 157 charlock_holmes (0.7.6) 159 158 childprocess (3.0.0) ··· 245 244 docile (1.3.2) 246 245 domain_name (0.5.20180417) 247 246 unf (>= 0.0.5, < 1.0.0) 248 - doorkeeper (5.0.2) 247 + doorkeeper (5.0.3) 249 248 railties (>= 4.2) 250 249 doorkeeper-openid_connect (1.6.3) 251 250 doorkeeper (>= 5.0, < 5.2) ··· 378 377 po_to_json (>= 1.0.0) 379 378 rails (>= 3.2.0) 380 379 git (1.5.0) 381 - gitaly (12.9.0.pre.rc4) 380 + gitaly (13.0.0.pre.rc1) 382 381 grpc (~> 1.0) 383 382 github-markup (1.7.0) 384 383 gitlab-chronic (0.10.5) ··· 391 390 opentracing (~> 0.4) 392 391 redis (> 3.0.0, < 5.0.0) 393 392 gitlab-license (1.0.0) 394 - gitlab-mail_room (0.0.3) 395 - gitlab-markup (1.7.0) 393 + gitlab-mail_room (0.0.4) 394 + gitlab-markup (1.7.1) 396 395 gitlab-net-dns (0.9.1) 397 396 gitlab-puma (4.3.3.gitlab.2) 398 397 nio4r (~> 2.0) ··· 535 534 i18n_data (0.8.0) 536 535 icalendar (2.4.1) 537 536 ice_nine (0.11.2) 538 - influxdb (0.2.3) 539 - cause 540 - json 541 537 invisible_captcha (0.12.1) 542 538 rails (>= 3.2.0) 543 539 ipaddress (0.8.3) ··· 545 541 opentracing (~> 0.3) 546 542 thrift 547 543 jaro_winkler (1.5.4) 548 - jira-ruby (1.7.1) 544 + jira-ruby (2.0.0) 549 545 activesupport 550 546 atlassian-jwt 551 547 multipart-post ··· 555 551 character_set (~> 1.1) 556 552 regexp_parser (~> 1.1) 557 553 regexp_property_values (~> 0.3) 558 - json (1.8.6) 554 + json (2.3.0) 559 555 json-jwt (1.11.0) 560 556 activesupport (>= 4.2) 561 557 aes_key_wrap ··· 575 571 activerecord 576 572 kaminari-core (= 1.0.1) 577 573 kaminari-core (1.0.1) 578 - kgio (2.11.2) 574 + kgio (2.11.3) 579 575 knapsack (1.17.0) 580 576 rake 581 577 kramdown (2.1.0) ··· 602 598 xml-simple 603 599 licensee (8.9.2) 604 600 rugged (~> 0.24) 605 - liquid (4.0.3) 606 601 listen (3.1.5) 607 602 rb-fsevent (~> 0.9, >= 0.9.4) 608 603 rb-inotify (~> 0.9, >= 0.9.7) ··· 614 609 activesupport (>= 4) 615 610 railties (>= 4) 616 611 request_store (~> 1.0) 617 - loofah (2.4.0) 612 + loofah (2.5.0) 618 613 crass (~> 1.0.2) 619 614 nokogiri (>= 1.5.9) 620 615 lru_redux (1.1.0) ··· 634 629 mime-types (3.2.2) 635 630 mime-types-data (~> 3.2015) 636 631 mime-types-data (3.2019.0331) 637 - mimemagic (0.3.3) 632 + mimemagic (0.3.5) 638 633 mini_histogram (0.1.3) 639 634 mini_magick (4.9.5) 640 635 mini_mime (1.0.2) ··· 653 648 nenv (0.3.0) 654 649 net-ldap (0.16.2) 655 650 net-ntp (2.1.3) 656 - net-ssh (5.2.0) 651 + net-ssh (6.0.0) 657 652 netrc (0.11.0) 658 653 nio4r (2.5.2) 659 654 no_proxy_fix (0.1.2) 660 - nokogiri (1.10.8) 655 + nokogiri (1.10.9) 661 656 mini_portile2 (~> 2.4.0) 662 657 nokogumbo (1.5.0) 663 658 nokogiri ··· 791 786 rack (2.0.9) 792 787 rack-accept (0.4.5) 793 788 rack (>= 0.4) 794 - rack-attack (6.2.0) 789 + rack-attack (6.3.0) 795 790 rack (>= 1.0, < 3) 796 791 rack-cors (1.0.6) 797 792 rack (>= 1.6.0) ··· 808 803 rack-test (1.1.0) 809 804 rack (>= 1.0, < 3) 810 805 rack-timeout (0.5.1) 811 - rails (6.0.2) 812 - actioncable (= 6.0.2) 813 - actionmailbox (= 6.0.2) 814 - actionmailer (= 6.0.2) 815 - actionpack (= 6.0.2) 816 - actiontext (= 6.0.2) 817 - actionview (= 6.0.2) 818 - activejob (= 6.0.2) 819 - activemodel (= 6.0.2) 820 - activerecord (= 6.0.2) 821 - activestorage (= 6.0.2) 822 - activesupport (= 6.0.2) 806 + rails (6.0.3) 807 + actioncable (= 6.0.3) 808 + actionmailbox (= 6.0.3) 809 + actionmailer (= 6.0.3) 810 + actionpack (= 6.0.3) 811 + actiontext (= 6.0.3) 812 + actionview (= 6.0.3) 813 + activejob (= 6.0.3) 814 + activemodel (= 6.0.3) 815 + activerecord (= 6.0.3) 816 + activestorage (= 6.0.3) 817 + activesupport (= 6.0.3) 823 818 bundler (>= 1.3.0) 824 - railties (= 6.0.2) 819 + railties (= 6.0.3) 825 820 sprockets-rails (>= 2.0.0) 826 821 rails-controller-testing (1.0.4) 827 822 actionpack (>= 5.0.1.x) ··· 835 830 rails-i18n (6.0.0) 836 831 i18n (>= 0.7, < 2) 837 832 railties (>= 6.0.0, < 7) 838 - railties (6.0.2) 839 - actionpack (= 6.0.2) 840 - activesupport (= 6.0.2) 833 + railties (6.0.3) 834 + actionpack (= 6.0.3) 835 + activesupport (= 6.0.3) 841 836 method_source 842 837 rake (>= 0.8.7) 843 838 thor (>= 0.20.3, < 2.0) 844 839 rainbow (3.0.0) 845 - raindrops (0.19.0) 840 + raindrops (0.19.1) 846 841 rake (12.3.3) 847 842 rb-fsevent (0.10.2) 848 843 rb-inotify (0.9.10) ··· 854 849 msgpack (>= 0.4.3) 855 850 optimist (>= 3.0.0) 856 851 rdoc (6.1.2) 857 - re2 (1.1.1) 852 + re2 (1.2.0) 858 853 recaptcha (4.13.1) 859 854 json 860 - recursive-open-struct (1.1.0) 855 + recursive-open-struct (1.1.1) 861 856 redis (4.1.3) 862 857 redis-actionpack (5.2.0) 863 858 actionpack (>= 5, < 7) ··· 883 878 declarative (< 0.1.0) 884 879 declarative-option (< 0.2.0) 885 880 uber (< 0.2.0) 886 - request_store (1.3.1) 881 + request_store (1.5.0) 882 + rack (>= 1.4) 887 883 responders (3.0.0) 888 884 actionpack (>= 5.0) 889 885 railties (>= 5.0) ··· 894 890 retriable (3.1.2) 895 891 rinku (2.0.0) 896 892 rotp (2.1.2) 897 - rouge (3.18.0) 893 + rouge (3.19.0) 898 894 rqrcode (0.7.0) 899 895 chunky_png 900 896 rqrcode-rails3 (0.1.7) ··· 905 901 rspec-mocks (~> 3.9.0) 906 902 rspec-core (3.9.1) 907 903 rspec-support (~> 3.9.1) 908 - rspec-expectations (3.9.0) 904 + rspec-expectations (3.9.1) 909 905 diff-lcs (>= 1.2.0, < 2.0) 910 906 rspec-support (~> 3.9.0) 911 907 rspec-mocks (3.9.1) ··· 917 913 proc_to_ast 918 914 rspec (>= 2.13, < 4) 919 915 unparser 920 - rspec-rails (4.0.0.beta4) 916 + rspec-rails (4.0.0) 921 917 actionpack (>= 4.2) 922 918 activesupport (>= 4.2) 923 919 railties (>= 4.2) ··· 1077 1073 truncato (0.7.11) 1078 1074 htmlentities (~> 4.3.1) 1079 1075 nokogiri (>= 1.7.0, <= 2.0) 1080 - tzinfo (1.2.6) 1076 + tzinfo (1.2.7) 1081 1077 thread_safe (~> 0.1) 1082 1078 u2f (0.2.1) 1083 1079 uber (0.1.0) ··· 1091 1087 unicode_plot (0.0.4) 1092 1088 enumerable-statistics (>= 2.0.1) 1093 1089 unicode_utils (1.4.0) 1094 - unicorn (5.4.1) 1090 + unicorn (5.5.5) 1095 1091 kgio (~> 2.6) 1096 1092 raindrops (~> 0.7) 1097 1093 unicorn-worker-killer (0.4.4) ··· 1108 1104 equalizer (~> 0.0.9) 1109 1105 parser (>= 2.6.5) 1110 1106 procto (~> 0.0.2) 1107 + valid_email (0.1.3) 1108 + activemodel 1109 + mail (>= 2.6.1) 1111 1110 validate_email (0.1.6) 1112 1111 activemodel (>= 3.0) 1113 1112 mail (>= 2.2.5) ··· 1146 1145 xml-simple (1.1.5) 1147 1146 xpath (3.2.0) 1148 1147 nokogiri (~> 1.8) 1149 - zeitwerk (2.2.2) 1148 + zeitwerk (2.3.0) 1150 1149 1151 1150 PLATFORMS 1152 1151 ruby ··· 1163 1162 asana (~> 0.9) 1164 1163 asciidoctor (~> 2.0.10) 1165 1164 asciidoctor-include-ext (~> 0.3.1) 1166 - asciidoctor-plantuml (= 0.0.10) 1165 + asciidoctor-plantuml (~> 0.0.12) 1167 1166 atlassian-jwt (~> 0.2.0) 1168 1167 attr_encrypted (~> 3.1.0) 1169 1168 awesome_print ··· 1202 1201 diff_match_patch (~> 0.1.0) 1203 1202 diffy (~> 3.3) 1204 1203 discordrb-webhooks-blackst0ne (~> 3.3) 1205 - doorkeeper (~> 5.0.2) 1204 + doorkeeper (~> 5.0.3) 1206 1205 doorkeeper-openid_connect (~> 1.6.3) 1207 1206 ed25519 (~> 1.2) 1208 1207 elasticsearch-api (~> 6.8) ··· 1235 1234 gettext (~> 3.2.2) 1236 1235 gettext_i18n_rails (~> 1.8.0) 1237 1236 gettext_i18n_rails_js (~> 1.3) 1238 - gitaly (~> 12.9.0.pre.rc4) 1237 + gitaly (~> 13.0.0.pre.rc1) 1239 1238 github-markup (~> 1.7.0) 1240 1239 gitlab-chronic (~> 0.10.5) 1241 1240 gitlab-labkit (= 0.12.0) 1242 1241 gitlab-license (~> 1.0) 1243 - gitlab-mail_room (~> 0.0.3) 1244 - gitlab-markup (~> 1.7.0) 1242 + gitlab-mail_room (~> 0.0.4) 1243 + gitlab-markup (~> 1.7.1) 1245 1244 gitlab-net-dns (~> 0.9.1) 1246 1245 gitlab-puma (~> 4.3.3.gitlab.2) 1247 1246 gitlab-puma_worker_killer (~> 0.1.1.gitlab.1) ··· 1273 1272 html2text 1274 1273 httparty (~> 0.16.4) 1275 1274 icalendar 1276 - influxdb (~> 0.2) 1277 1275 invisible_captcha (~> 0.12.1) 1278 - jira-ruby (~> 1.7) 1276 + jira-ruby (~> 2.0.0) 1279 1277 js_regex (~> 3.1) 1278 + json (~> 2.3.0) 1280 1279 json-schema (~> 2.8.0) 1281 1280 jwt (~> 2.1.0) 1282 1281 kaminari (~> 1.0) ··· 1285 1284 letter_opener_web (~> 1.3.4) 1286 1285 license_finder (~> 5.4) 1287 1286 licensee (~> 8.9) 1288 - liquid (~> 4.0) 1289 1287 lockbox (~> 0.3.3) 1290 1288 lograge (~> 0.5) 1291 1289 loofah (~> 2.2) ··· 1300 1298 nakayoshi_fork (~> 0.0.4) 1301 1299 net-ldap 1302 1300 net-ntp 1303 - net-ssh (~> 5.2) 1304 - nokogiri (~> 1.10.5) 1301 + net-ssh (~> 6.0) 1302 + nokogiri (~> 1.10.9) 1305 1303 oauth2 (~> 1.4) 1306 1304 octokit (~> 4.15) 1307 1305 omniauth (~> 1.8) ··· 1332 1330 pry-byebug (~> 3.5.1) 1333 1331 pry-rails (~> 0.3.9) 1334 1332 rack (~> 2.0.9) 1335 - rack-attack (~> 6.2.0) 1333 + rack-attack (~> 6.3.0) 1336 1334 rack-cors (~> 1.0.6) 1337 1335 rack-oauth2 (~> 1.9.3) 1338 1336 rack-proxy (~> 0.6.0) 1339 1337 rack-timeout 1340 - rails (= 6.0.2) 1338 + rails (~> 6.0.3) 1341 1339 rails-controller-testing 1342 1340 rails-i18n (~> 6.0) 1343 1341 rainbow (~> 3.0) ··· 1345 1343 rblineprof (~> 0.3.6) 1346 1344 rbtrace (~> 0.4) 1347 1345 rdoc (~> 6.1.2) 1348 - re2 (~> 1.1.1) 1346 + re2 (~> 1.2.0) 1349 1347 recaptcha (~> 4.11) 1350 1348 redis (~> 4.0) 1351 1349 redis-namespace (~> 1.6.0) 1352 1350 redis-rails (~> 5.0.2) 1353 - request_store (~> 1.3) 1351 + request_store (~> 1.5) 1354 1352 responders (~> 3.0) 1355 1353 retriable (~> 3.1.2) 1356 - rouge (~> 3.18.0) 1354 + rouge (~> 3.19.0) 1357 1355 rqrcode-rails3 (~> 0.1.7) 1358 1356 rspec-parameterized 1359 - rspec-rails (~> 4.0.0.beta4) 1357 + rspec-rails (~> 4.0.0) 1360 1358 rspec-retry (~> 0.6.1) 1361 1359 rspec_junit_formatter 1362 1360 rspec_profiling (~> 0.0.5) ··· 1398 1396 u2f (~> 0.2.1) 1399 1397 uglifier (~> 2.7.2) 1400 1398 unf (~> 0.1.4) 1401 - unicorn (~> 5.4.1) 1399 + unicorn (~> 5.5) 1402 1400 unicorn-worker-killer (~> 0.4.4) 1403 1401 unleash (~> 0.1.5) 1402 + valid_email (~> 0.1) 1404 1403 validates_hostname (~> 1.0.6) 1405 1404 version_sorter (~> 2.2.4) 1406 1405 vmstat (~> 2.3.0)
+85 -104
pkgs/applications/version-management/gitlab/rubyEnv/gemset.nix
··· 36 36 platforms = []; 37 37 source = { 38 38 remotes = ["https://rubygems.org"]; 39 - sha256 = "0dngxp5r9ww4xgryn458ngq2h3ylx7d6d258wcfqhibpyjr7qvpj"; 39 + sha256 = "0lvbyv15j3g3xhywr8jdgv5rjn26mz7430886njjfrd12x812szy"; 40 40 type = "gem"; 41 41 }; 42 - version = "6.0.2"; 42 + version = "6.0.3"; 43 43 }; 44 44 actionmailbox = { 45 45 dependencies = ["actionpack" "activejob" "activerecord" "activestorage" "activesupport" "mail"]; ··· 47 47 platforms = []; 48 48 source = { 49 49 remotes = ["https://rubygems.org"]; 50 - sha256 = "11wpcjc806y82p1nn3ly9savcdqcf4b0qml5ri5bmd6r2g802s2z"; 50 + sha256 = "1nwvx83lha87052jywaiqq284nabp3h5lfq7vrb01myh6cr3ggaq"; 51 51 type = "gem"; 52 52 }; 53 - version = "6.0.2"; 53 + version = "6.0.3"; 54 54 }; 55 55 actionmailer = { 56 56 dependencies = ["actionpack" "actionview" "activejob" "mail" "rails-dom-testing"]; ··· 58 58 platforms = []; 59 59 source = { 60 60 remotes = ["https://rubygems.org"]; 61 - sha256 = "0ych434bbim8n65png7hg35xfgmpv0qxvkngpvrr3qgj7l1xgdi5"; 61 + sha256 = "16d40j1hcak5p9185dbb015difw12m5f3wjfbh4mw9w8agqsc8mr"; 62 62 type = "gem"; 63 63 }; 64 - version = "6.0.2"; 64 + version = "6.0.3"; 65 65 }; 66 66 actionpack = { 67 67 dependencies = ["actionview" "activesupport" "rack" "rack-test" "rails-dom-testing" "rails-html-sanitizer"]; ··· 69 69 platforms = []; 70 70 source = { 71 71 remotes = ["https://rubygems.org"]; 72 - sha256 = "0zg96vjjw1kbli6nk6cyk64zfh4lgpl7fqx38ncbgfacl4dq7y0b"; 72 + sha256 = "1v885hs35r8217py08z5k1wvgfzfml64g9wf5v3djgh8mhlf5nfn"; 73 73 type = "gem"; 74 74 }; 75 - version = "6.0.2"; 75 + version = "6.0.3"; 76 76 }; 77 77 actiontext = { 78 78 dependencies = ["actionpack" "activerecord" "activestorage" "activesupport" "nokogiri"]; ··· 80 80 platforms = []; 81 81 source = { 82 82 remotes = ["https://rubygems.org"]; 83 - sha256 = "1acw3yypd4w35ra87d0kzwwcwj3hps6j0g108rnxy7pscvzajw8q"; 83 + sha256 = "00w8a5vxs1rlbn0innhrwhjjavmgx0scnkz8h7k83df9l1s7f70j"; 84 84 type = "gem"; 85 85 }; 86 - version = "6.0.2"; 86 + version = "6.0.3"; 87 87 }; 88 88 actionview = { 89 89 dependencies = ["activesupport" "builder" "erubi" "rails-dom-testing" "rails-html-sanitizer"]; ··· 91 91 platforms = []; 92 92 source = { 93 93 remotes = ["https://rubygems.org"]; 94 - sha256 = "1bfh9z3n98c76c6jdp6avh75wsckxyp74r59hmgnqdhfznbkppv4"; 94 + sha256 = "0s6fr50l714rvzr9vavg1ckgx5xjj5zz7dca42xxjp4jkr7jva7q"; 95 95 type = "gem"; 96 96 }; 97 - version = "6.0.2"; 97 + version = "6.0.3"; 98 98 }; 99 99 activejob = { 100 100 dependencies = ["activesupport" "globalid"]; ··· 102 102 platforms = []; 103 103 source = { 104 104 remotes = ["https://rubygems.org"]; 105 - sha256 = "0bhf4lxnrmz73zshl5rzvw65x3kd18yligf11lcg7ik9b2i9j6pi"; 105 + sha256 = "1qr5p1sijan8k2m39w602s1mn3bwwsl7jm14drsgdhvdx5ilwg7b"; 106 106 type = "gem"; 107 107 }; 108 - version = "6.0.2"; 108 + version = "6.0.3"; 109 109 }; 110 110 activemodel = { 111 111 dependencies = ["activesupport"]; ··· 113 113 platforms = []; 114 114 source = { 115 115 remotes = ["https://rubygems.org"]; 116 - sha256 = "09p7si419x0fb5cw8cbfmzplyk2bdrx0m5cy9pwja89rnhp8yhl0"; 116 + sha256 = "0pi9waxcvb8gxwp4i4wmxszyqhr28gn9jzbq1ivy84g1q658lmqz"; 117 117 type = "gem"; 118 118 }; 119 - version = "6.0.2"; 119 + version = "6.0.3"; 120 120 }; 121 121 activerecord = { 122 122 dependencies = ["activemodel" "activesupport"]; ··· 124 124 platforms = []; 125 125 source = { 126 126 remotes = ["https://rubygems.org"]; 127 - sha256 = "1w60vnkg88frbpsixfm9immh211pbqg9dwm0gqrr17kdjd00r5z4"; 127 + sha256 = "1wkm8741i00l5cq88wl9nr131wh955x4cjg2q2d60m3qhpqbxirv"; 128 128 type = "gem"; 129 129 }; 130 - version = "6.0.2"; 130 + version = "6.0.3"; 131 131 }; 132 132 activerecord-explain-analyze = { 133 133 dependencies = ["activerecord" "pg"]; ··· 146 146 platforms = []; 147 147 source = { 148 148 remotes = ["https://rubygems.org"]; 149 - sha256 = "0qsjhyrjcklqf7dqw6yjvmbfd8yhqyz0dy9apmpd0swiwxnn8kds"; 149 + sha256 = "1yy832p0q7gxp1vbncb677y35y112d2f6mvf131n0m2w35ig9m4f"; 150 150 type = "gem"; 151 151 }; 152 - version = "6.0.2"; 152 + version = "6.0.3"; 153 153 }; 154 154 activesupport = { 155 155 dependencies = ["concurrent-ruby" "i18n" "minitest" "tzinfo" "zeitwerk"]; ··· 157 157 platforms = []; 158 158 source = { 159 159 remotes = ["https://rubygems.org"]; 160 - sha256 = "1brlp5pmawb2hqdybjb732zxxkamcmis6px3wyh09rjlc0gqnzzz"; 160 + sha256 = "0shh34xx9ygxb57s8mag8l22klvjfnk1c4jbjvchk16r6z0ps326"; 161 161 type = "gem"; 162 162 }; 163 - version = "6.0.2"; 163 + version = "6.0.3"; 164 164 }; 165 165 acts-as-taggable-on = { 166 166 dependencies = ["activerecord"]; ··· 264 264 platforms = []; 265 265 source = { 266 266 remotes = ["https://rubygems.org"]; 267 - sha256 = "1bnrz4ywaq7vaw66fy3kkbwf07fvyqwngm3vb83s9h5zvr4n593b"; 267 + sha256 = "02knhmyd3h1yryn66xjfciz7jjsq676kl7ama0r0cf92vyyvm12x"; 268 268 type = "gem"; 269 269 }; 270 - version = "0.0.10"; 270 + version = "0.0.12"; 271 271 }; 272 272 ast = { 273 273 groups = ["default" "development" "test"]; ··· 620 620 }; 621 621 version = "1.3.1"; 622 622 }; 623 - cause = { 624 - groups = ["default" "metrics"]; 625 - platforms = []; 626 - source = { 627 - remotes = ["https://rubygems.org"]; 628 - sha256 = "0digirxqlwdg79mkbn70yc7i9i1qnclm2wjbrc47kqv6236bpj00"; 629 - type = "gem"; 630 - }; 631 - version = "0.1"; 632 - }; 633 623 character_set = { 634 624 groups = ["default"]; 635 625 platforms = []; ··· 1071 1061 platforms = []; 1072 1062 source = { 1073 1063 remotes = ["https://rubygems.org"]; 1074 - sha256 = "0488m6nwp31mxrhayj60gsb7jgyw1lzh73r2kldx00a9bw3634d4"; 1064 + sha256 = "0w554smil33j64h50w29xavgg4k7172r0c2rrygfbp5p4ap9py9c"; 1075 1065 type = "gem"; 1076 1066 }; 1077 - version = "5.0.2"; 1067 + version = "5.0.3"; 1078 1068 }; 1079 1069 doorkeeper-openid_connect = { 1080 1070 dependencies = ["doorkeeper" "json-jwt"]; ··· 1678 1668 platforms = []; 1679 1669 source = { 1680 1670 remotes = ["https://rubygems.org"]; 1681 - sha256 = "19aqxxgq8d9jqvzz36jciqb54nrb8w2b85abpy98cq7ldj1lh497"; 1671 + sha256 = "01ki2isvqyhfw503z3ahksbfb0s0m3psi4din9azdpgcqyv1pxlh"; 1682 1672 type = "gem"; 1683 1673 }; 1684 - version = "12.9.0.pre.rc4"; 1674 + version = "13.0.0.pre.rc1"; 1685 1675 }; 1686 1676 github-markup = { 1687 1677 groups = ["default"]; ··· 1730 1720 platforms = []; 1731 1721 source = { 1732 1722 remotes = ["https://rubygems.org"]; 1733 - sha256 = "0q4z5p8hxyzrwr93r4mqr794fvqppi7ijcnp5nw9m4vd076hp4vh"; 1723 + sha256 = "10ajr3l8vasy4zkc0p481m806g7k7idnw7mi6rlkmx4gkgb0z46j"; 1734 1724 type = "gem"; 1735 1725 }; 1736 - version = "0.0.3"; 1726 + version = "0.0.4"; 1737 1727 }; 1738 1728 gitlab-markup = { 1739 1729 groups = ["default"]; 1740 1730 platforms = []; 1741 1731 source = { 1742 1732 remotes = ["https://rubygems.org"]; 1743 - sha256 = "0rqf3jmyn78r3ysy3bjyx7s4yv3xipxlmqlmbyrbksna19rrx08d"; 1733 + sha256 = "0xnlra517pfj3hx07kasbqlcw51ix4xajr6bsd3mwg8bc92dlwy7"; 1744 1734 type = "gem"; 1745 1735 }; 1746 - version = "1.7.0"; 1736 + version = "1.7.1"; 1747 1737 }; 1748 1738 gitlab-net-dns = { 1749 1739 groups = ["default"]; ··· 2270 2260 }; 2271 2261 version = "0.11.2"; 2272 2262 }; 2273 - influxdb = { 2274 - dependencies = ["cause" "json"]; 2275 - groups = ["metrics"]; 2276 - platforms = []; 2277 - source = { 2278 - remotes = ["https://rubygems.org"]; 2279 - sha256 = "1vhg5nd88nwvfa76lqcczld916nljswwq6clsixrzi3js8ym9y1w"; 2280 - type = "gem"; 2281 - }; 2282 - version = "0.2.3"; 2283 - }; 2284 2263 invisible_captcha = { 2285 2264 dependencies = ["rails"]; 2286 2265 groups = ["default"]; ··· 2329 2308 platforms = []; 2330 2309 source = { 2331 2310 remotes = ["https://rubygems.org"]; 2332 - sha256 = "0hb3645x0p3bkmqcgc9b2q4b5kn02wgmb03brx7ag1h5y79an4q5"; 2311 + sha256 = "1bfqb5qkgbcjrspspa2lha2is0anjnby20x9gp7bfjr5j5j9my32"; 2333 2312 type = "gem"; 2334 2313 }; 2335 - version = "1.7.1"; 2314 + version = "2.0.0"; 2336 2315 }; 2337 2316 jmespath = { 2338 2317 groups = ["default"]; ··· 2356 2335 version = "3.1.1"; 2357 2336 }; 2358 2337 json = { 2359 - groups = ["default" "development" "metrics" "test"]; 2338 + groups = ["default"]; 2360 2339 platforms = []; 2361 2340 source = { 2362 2341 remotes = ["https://rubygems.org"]; 2363 - sha256 = "0qmj7fypgb9vag723w1a49qihxrcf5shzars106ynw2zk352gbv5"; 2342 + sha256 = "0nrmw2r4nfxlfgprfgki3hjifgrcrs3l5zvm3ca3gb4743yr25mn"; 2364 2343 type = "gem"; 2365 2344 }; 2366 - version = "1.8.6"; 2345 + version = "2.3.0"; 2367 2346 }; 2368 2347 json-jwt = { 2369 2348 dependencies = ["activesupport" "aes_key_wrap" "bindata"]; ··· 2445 2424 platforms = []; 2446 2425 source = { 2447 2426 remotes = ["https://rubygems.org"]; 2448 - sha256 = "1528pyj1szzzp3pgj05fzjd36qjrxm9yj2x5radc9p1z7vl67y50"; 2427 + sha256 = "0ai6bzlvxbzpdl466p1qi4dlhx8ri2wcrp6x1l19y3yfs3a29rng"; 2449 2428 type = "gem"; 2450 2429 }; 2451 - version = "2.11.2"; 2430 + version = "2.11.3"; 2452 2431 }; 2453 2432 knapsack = { 2454 2433 dependencies = ["rake"]; ··· 2548 2527 }; 2549 2528 version = "8.9.2"; 2550 2529 }; 2551 - liquid = { 2552 - groups = ["default"]; 2553 - platforms = []; 2554 - source = { 2555 - remotes = ["https://rubygems.org"]; 2556 - sha256 = "0zhg5ha8zy8zw9qr3fl4wgk4r5940n4128xm2pn4shpbzdbsj5by"; 2557 - type = "gem"; 2558 - }; 2559 - version = "4.0.3"; 2560 - }; 2561 2530 listen = { 2562 2531 dependencies = ["rb-fsevent" "rb-inotify" "ruby_dep"]; 2563 2532 groups = ["default" "test"]; ··· 2606 2575 platforms = []; 2607 2576 source = { 2608 2577 remotes = ["https://rubygems.org"]; 2609 - sha256 = "1g7ps9m3s14cajhxrfgbzahv9i3gy47s4hqrv3mpybpj5cyr0srn"; 2578 + sha256 = "0jk9fgn5ayzbqvzqm11gbkqvas77zdbpkvynlylyiwynclgrn040"; 2610 2579 type = "gem"; 2611 2580 }; 2612 - version = "2.4.0"; 2581 + version = "2.5.0"; 2613 2582 }; 2614 2583 lru_redux = { 2615 2584 groups = ["default"]; ··· 2735 2704 platforms = []; 2736 2705 source = { 2737 2706 remotes = ["https://rubygems.org"]; 2738 - sha256 = "04cp5sfbh1qx82yqxn0q75c7hlcx8y1dr5g3kyzwm4mx6wi2gifw"; 2707 + sha256 = "1qfqb9w76kmpb48frbzbyvjc0dfxh5qiw1kxdbv2y2kp6fxpa1kf"; 2739 2708 type = "gem"; 2740 2709 }; 2741 - version = "0.3.3"; 2710 + version = "0.3.5"; 2742 2711 }; 2743 2712 mini_histogram = { 2744 2713 groups = ["default"]; ··· 2916 2885 platforms = []; 2917 2886 source = { 2918 2887 remotes = ["https://rubygems.org"]; 2919 - sha256 = "101wd2px9lady54aqmkibvy4j62zk32w0rjz4vnigyg974fsga40"; 2888 + sha256 = "1l0kgd7w08fx2522aw8grlfzwmrgw4jgjakpkgkwm0134g5xv432"; 2920 2889 type = "gem"; 2921 2890 }; 2922 - version = "5.2.0"; 2891 + version = "6.0.0"; 2923 2892 }; 2924 2893 netrc = { 2925 2894 groups = ["default"]; ··· 2957 2926 platforms = []; 2958 2927 source = { 2959 2928 remotes = ["https://rubygems.org"]; 2960 - sha256 = "1yi8j8hwrlc3rg5v3w52gxndmwifyk7m732q9yfbal0qajqbh1h8"; 2929 + sha256 = "12j76d0bp608932xkzmfi638c7aqah57l437q8494znzbj610qnm"; 2961 2930 type = "gem"; 2962 2931 }; 2963 - version = "1.10.8"; 2932 + version = "1.10.9"; 2964 2933 }; 2965 2934 nokogumbo = { 2966 2935 dependencies = ["nokogiri"]; ··· 3553 3522 platforms = []; 3554 3523 source = { 3555 3524 remotes = ["https://rubygems.org"]; 3556 - sha256 = "1sqjqwa18c0l59zdymcvvvnh5nk3pjggnzaydb2q1qbrk3rypcnq"; 3525 + sha256 = "15b8lk54j2abqhpn588b1wvbzwmxwa7iql6241kxpjc0gyb51p0z"; 3557 3526 type = "gem"; 3558 3527 }; 3559 - version = "6.2.0"; 3528 + version = "6.3.0"; 3560 3529 }; 3561 3530 rack-cors = { 3562 3531 dependencies = ["rack"]; ··· 3629 3598 platforms = []; 3630 3599 source = { 3631 3600 remotes = ["https://rubygems.org"]; 3632 - sha256 = "02sxw1f3n2ydmhacakmgjjwv84vqplgr1888cv5dyflb11a3f8mm"; 3601 + sha256 = "1rvkzj2hn1rlxc0ndn742mgbdpq0l38i6pjhhwgpaq519jpkk41r"; 3633 3602 type = "gem"; 3634 3603 }; 3635 - version = "6.0.2"; 3604 + version = "6.0.3"; 3636 3605 }; 3637 3606 rails-controller-testing = { 3638 3607 dependencies = ["actionpack" "actionview" "activesupport"]; ··· 3684 3653 platforms = []; 3685 3654 source = { 3686 3655 remotes = ["https://rubygems.org"]; 3687 - sha256 = "0lpzw7bwvg42x6mwfv7d3bhcnyy8p7rcd8yy8cj5qq5mjznhawca"; 3656 + sha256 = "01h2ifvvmlzmq8dmpqkhrrmj704v79r1vkcrnvmrqhf4a9bbyqsi"; 3688 3657 type = "gem"; 3689 3658 }; 3690 - version = "6.0.2"; 3659 + version = "6.0.3"; 3691 3660 }; 3692 3661 rainbow = { 3693 3662 groups = ["default" "development" "test"]; ··· 3704 3673 platforms = []; 3705 3674 source = { 3706 3675 remotes = ["https://rubygems.org"]; 3707 - sha256 = "1qpbd9jif40c53fz2r0l8khfl016y8s8bkx37ibcaafclbl3xygp"; 3676 + sha256 = "0zjja00mzgx2lddb7qrn14k7qrnwhf4bpmnlqj78m1pfxh7svync"; 3708 3677 type = "gem"; 3709 3678 }; 3710 - version = "0.19.0"; 3679 + version = "0.19.1"; 3711 3680 }; 3712 3681 rake = { 3713 3682 groups = ["default" "development" "test"]; ··· 3781 3750 platforms = []; 3782 3751 source = { 3783 3752 remotes = ["https://rubygems.org"]; 3784 - sha256 = "00wf9k1hkv3z3nfkrnfyyfq9ah0l7k14awqys3h2hqz4c21pqd2i"; 3753 + sha256 = "16q71cc9wx342c697q18pkz19ym4ncjd97hcw4v6f1mgflkdv400"; 3785 3754 type = "gem"; 3786 3755 }; 3787 - version = "1.1.1"; 3756 + version = "1.2.0"; 3788 3757 }; 3789 3758 recaptcha = { 3790 3759 dependencies = ["json"]; ··· 3802 3771 platforms = []; 3803 3772 source = { 3804 3773 remotes = ["https://rubygems.org"]; 3805 - sha256 = "0wfcyigmf5mwrxy76p0bi4sdb4h9afs8jc73pjav5cnqszljjl3c"; 3774 + sha256 = "0acrxff186sn6sxdfiy7nacjgwak5cqd7jha9v3kshpf3sfr7qd1"; 3806 3775 type = "gem"; 3807 3776 }; 3808 - version = "1.1.0"; 3777 + version = "1.1.1"; 3809 3778 }; 3810 3779 RedCloth = { 3811 3780 groups = ["default"]; ··· 3925 3894 version = "3.0.4"; 3926 3895 }; 3927 3896 request_store = { 3897 + dependencies = ["rack"]; 3928 3898 groups = ["default"]; 3929 3899 platforms = []; 3930 3900 source = { 3931 3901 remotes = ["https://rubygems.org"]; 3932 - sha256 = "1va9x0b3ww4chcfqlmi8b14db39di1mwa7qrjbh7ma0lhndvs2zv"; 3902 + sha256 = "0cx74kispmnw3ljwb239j65a2j14n8jlsygy372hrsa8mxc71hxi"; 3933 3903 type = "gem"; 3934 3904 }; 3935 - version = "1.3.1"; 3905 + version = "1.5.0"; 3936 3906 }; 3937 3907 responders = { 3938 3908 dependencies = ["actionpack" "railties"]; ··· 3991 3961 platforms = []; 3992 3962 source = { 3993 3963 remotes = ["https://rubygems.org"]; 3994 - sha256 = "1n9h0ls2a2zq0bcsw31wxci1wdxb8s3vglfadxpcs6b04vkf6nqq"; 3964 + sha256 = "102rc07d78k5bkl0s9nd1gw6wz0w0zcvg4g5sl7z9xxi4r793c35"; 3995 3965 type = "gem"; 3996 3966 }; 3997 - version = "3.18.0"; 3967 + version = "3.19.0"; 3998 3968 }; 3999 3969 rqrcode = { 4000 3970 dependencies = ["chunky_png"]; ··· 4046 4016 platforms = []; 4047 4017 source = { 4048 4018 remotes = ["https://rubygems.org"]; 4049 - sha256 = "1gjqfb39da6gywdcp4h77738r7khbrn2v4y45589z25bj4z9paf0"; 4019 + sha256 = "0fjbwvq7qaz6h3sh1bs9q2qiy4zwcrc8f7xwv82dx2bc09dmqzhd"; 4050 4020 type = "gem"; 4051 4021 }; 4052 - version = "3.9.0"; 4022 + version = "3.9.1"; 4053 4023 }; 4054 4024 rspec-mocks = { 4055 4025 dependencies = ["diff-lcs" "rspec-support"]; ··· 4079 4049 platforms = []; 4080 4050 source = { 4081 4051 remotes = ["https://rubygems.org"]; 4082 - sha256 = "0p2ji21avixi0sf9xlgrdz319kvs4pjhlbz7kj4anmx5s25w1x7j"; 4052 + sha256 = "01cyd449g4lsgrlck7nn3ynn8c8vwfhjb913y05wil56y77wsfkl"; 4083 4053 type = "gem"; 4084 4054 }; 4085 - version = "4.0.0.beta4"; 4055 + version = "4.0.0"; 4086 4056 }; 4087 4057 rspec-retry = { 4088 4058 dependencies = ["rspec-core"]; ··· 4851 4821 platforms = []; 4852 4822 source = { 4853 4823 remotes = ["https://rubygems.org"]; 4854 - sha256 = "04f18jdv6z3zn3va50rqq35nj3izjpb72fnf21ixm7vanq6nc4fp"; 4824 + sha256 = "1i3jh086w1kbdj3k5l60lc3nwbanmzdf8yjj3mlrx9b2gjjxhi9r"; 4855 4825 type = "gem"; 4856 4826 }; 4857 - version = "1.2.6"; 4827 + version = "1.2.7"; 4858 4828 }; 4859 4829 u2f = { 4860 4830 groups = ["default"]; ··· 4945 4915 platforms = []; 4946 4916 source = { 4947 4917 remotes = ["https://rubygems.org"]; 4948 - sha256 = "1qfhvzs4i6ja1s43j8p1kfbzm10n7a02ngki30a38y5m46a2qrak"; 4918 + sha256 = "1cznkq0agsm7s66nbqbalmq5nlc5cdpd2h88r8jdzsc7wsi5a098"; 4949 4919 type = "gem"; 4950 4920 }; 4951 - version = "5.4.1"; 4921 + version = "5.5.5"; 4952 4922 }; 4953 4923 unicorn-worker-killer = { 4954 4924 dependencies = ["get_process_mem" "unicorn"]; ··· 4992 4962 type = "gem"; 4993 4963 }; 4994 4964 version = "0.4.7"; 4965 + }; 4966 + valid_email = { 4967 + dependencies = ["activemodel" "mail"]; 4968 + groups = ["default"]; 4969 + platforms = []; 4970 + source = { 4971 + remotes = ["https://rubygems.org"]; 4972 + sha256 = "0w3587sa7d1a51djyla57pbv9v105jsqvxhkg6vbxi343fsm455q"; 4973 + type = "gem"; 4974 + }; 4975 + version = "0.1.3"; 4995 4976 }; 4996 4977 validate_email = { 4997 4978 dependencies = ["activemodel" "mail"]; ··· 5169 5150 platforms = []; 5170 5151 source = { 5171 5152 remotes = ["https://rubygems.org"]; 5172 - sha256 = "0jywi63w1m2b2w9fj9rjb9n3imf6p5bfijfmml1xzdnsrdrjz0x1"; 5153 + sha256 = "1akpm3pwvyiack2zk6giv9yn3cqb8pw6g40p4394pdc3xmy3s4k0"; 5173 5154 type = "gem"; 5174 5155 }; 5175 - version = "2.2.2"; 5156 + version = "2.3.0"; 5176 5157 }; 5177 5158 }
+172 -108
pkgs/applications/version-management/gitlab/yarnPkgs.nix
··· 698 698 }; 699 699 } 700 700 { 701 - name = "_gitlab_eslint_plugin___eslint_plugin_2.2.1.tgz"; 701 + name = "_gitlab_eslint_plugin___eslint_plugin_3.1.0.tgz"; 702 702 path = fetchurl { 703 - name = "_gitlab_eslint_plugin___eslint_plugin_2.2.1.tgz"; 704 - url = "https://registry.yarnpkg.com/@gitlab/eslint-plugin/-/eslint-plugin-2.2.1.tgz"; 705 - sha1 = "7033030787981ded5ae24f4051109d069c98fcc0"; 703 + name = "_gitlab_eslint_plugin___eslint_plugin_3.1.0.tgz"; 704 + url = "https://registry.yarnpkg.com/@gitlab/eslint-plugin/-/eslint-plugin-3.1.0.tgz"; 705 + sha1 = "18e03630d10788defbb4c2d746620aec09517295"; 706 706 }; 707 707 } 708 708 { 709 - name = "_gitlab_svgs___svgs_1.121.0.tgz"; 709 + name = "_gitlab_svgs___svgs_1.127.0.tgz"; 710 710 path = fetchurl { 711 - name = "_gitlab_svgs___svgs_1.121.0.tgz"; 712 - url = "https://registry.yarnpkg.com/@gitlab/svgs/-/svgs-1.121.0.tgz"; 713 - sha1 = "77083a68f72e9aa0e294da7715f378eef13b839e"; 711 + name = "_gitlab_svgs___svgs_1.127.0.tgz"; 712 + url = "https://registry.yarnpkg.com/@gitlab/svgs/-/svgs-1.127.0.tgz"; 713 + sha1 = "1f7ffdffe44d6a82b372535f93d78f3a895d1960"; 714 714 }; 715 715 } 716 716 { 717 - name = "_gitlab_ui___ui_12.1.0.tgz"; 717 + name = "_gitlab_ui___ui_14.10.0.tgz"; 718 718 path = fetchurl { 719 - name = "_gitlab_ui___ui_12.1.0.tgz"; 720 - url = "https://registry.yarnpkg.com/@gitlab/ui/-/ui-12.1.0.tgz"; 721 - sha1 = "b97c7898410767c85cf1768f9b9e36329e59a7ec"; 719 + name = "_gitlab_ui___ui_14.10.0.tgz"; 720 + url = "https://registry.yarnpkg.com/@gitlab/ui/-/ui-14.10.0.tgz"; 721 + sha1 = "39c04d62c914fcefe96c7ec32fdf31b1f98f1119"; 722 722 }; 723 723 } 724 724 { ··· 842 842 }; 843 843 } 844 844 { 845 + name = "_rails_actioncable___actioncable_6.0.3.tgz"; 846 + path = fetchurl { 847 + name = "_rails_actioncable___actioncable_6.0.3.tgz"; 848 + url = "https://registry.yarnpkg.com/@rails/actioncable/-/actioncable-6.0.3.tgz"; 849 + sha1 = "722b4b639936129307ddbab3a390f6bcacf3e7bc"; 850 + }; 851 + } 852 + { 845 853 name = "_sentry_browser___browser_5.10.2.tgz"; 846 854 path = fetchurl { 847 855 name = "_sentry_browser___browser_5.10.2.tgz"; ··· 890 898 }; 891 899 } 892 900 { 893 - name = "_sourcegraph_code_host_integration___code_host_integration_0.0.36.tgz"; 901 + name = "_sourcegraph_code_host_integration___code_host_integration_0.0.46.tgz"; 894 902 path = fetchurl { 895 - name = "_sourcegraph_code_host_integration___code_host_integration_0.0.36.tgz"; 896 - url = "https://registry.yarnpkg.com/@sourcegraph/code-host-integration/-/code-host-integration-0.0.36.tgz"; 897 - sha1 = "2f4d287840ac2944c78ef92f10f0db0ef8a077fa"; 903 + name = "_sourcegraph_code_host_integration___code_host_integration_0.0.46.tgz"; 904 + url = "https://registry.yarnpkg.com/@sourcegraph/code-host-integration/-/code-host-integration-0.0.46.tgz"; 905 + sha1 = "05e4cda671ed00450be12461e6a3caff473675aa"; 906 + }; 907 + } 908 + { 909 + name = "_toast_ui_editor___editor_2.0.1.tgz"; 910 + path = fetchurl { 911 + name = "_toast_ui_editor___editor_2.0.1.tgz"; 912 + url = "https://registry.yarnpkg.com/@toast-ui/editor/-/editor-2.0.1.tgz"; 913 + sha1 = "749e5be1f02f42ded51488d1575ab1c19ca59952"; 914 + }; 915 + } 916 + { 917 + name = "_toast_ui_vue_editor___vue_editor_2.0.1.tgz"; 918 + path = fetchurl { 919 + name = "_toast_ui_vue_editor___vue_editor_2.0.1.tgz"; 920 + url = "https://registry.yarnpkg.com/@toast-ui/vue-editor/-/vue-editor-2.0.1.tgz"; 921 + sha1 = "c9c8c8da4c0a67b9fbc4240464388c67d72a0c22"; 898 922 }; 899 923 } 900 924 { ··· 938 962 }; 939 963 } 940 964 { 965 + name = "_types_codemirror___codemirror_0.0.71.tgz"; 966 + path = fetchurl { 967 + name = "_types_codemirror___codemirror_0.0.71.tgz"; 968 + url = "https://registry.yarnpkg.com/@types/codemirror/-/codemirror-0.0.71.tgz"; 969 + sha1 = "861f1bcb3100c0a064567c5400f2981cf4ae8ca7"; 970 + }; 971 + } 972 + { 973 + name = "_types_estree___estree_0.0.44.tgz"; 974 + path = fetchurl { 975 + name = "_types_estree___estree_0.0.44.tgz"; 976 + url = "https://registry.yarnpkg.com/@types/estree/-/estree-0.0.44.tgz"; 977 + sha1 = "980cc5a29a3ef3bea6ff1f7d021047d7ea575e21"; 978 + }; 979 + } 980 + { 941 981 name = "_types_events___events_1.2.0.tgz"; 942 982 path = fetchurl { 943 983 name = "_types_events___events_1.2.0.tgz"; ··· 978 1018 }; 979 1019 } 980 1020 { 1021 + name = "_types_json_schema___json_schema_7.0.4.tgz"; 1022 + path = fetchurl { 1023 + name = "_types_json_schema___json_schema_7.0.4.tgz"; 1024 + url = "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.4.tgz"; 1025 + sha1 = "38fd73ddfd9b55abb1e1b2ed578cb55bd7b7d339"; 1026 + }; 1027 + } 1028 + { 981 1029 name = "_types_minimatch___minimatch_3.0.3.tgz"; 982 1030 path = fetchurl { 983 1031 name = "_types_minimatch___minimatch_3.0.3.tgz"; ··· 1018 1066 }; 1019 1067 } 1020 1068 { 1069 + name = "_types_tern___tern_0.23.3.tgz"; 1070 + path = fetchurl { 1071 + name = "_types_tern___tern_0.23.3.tgz"; 1072 + url = "https://registry.yarnpkg.com/@types/tern/-/tern-0.23.3.tgz"; 1073 + sha1 = "4b54538f04a88c9ff79de1f6f94f575a7f339460"; 1074 + }; 1075 + } 1076 + { 1021 1077 name = "_types_uglify_js___uglify_js_3.0.4.tgz"; 1022 1078 path = fetchurl { 1023 1079 name = "_types_uglify_js___uglify_js_3.0.4.tgz"; ··· 1071 1127 name = "_types_zen_observable___zen_observable_0.8.0.tgz"; 1072 1128 url = "https://registry.yarnpkg.com/@types/zen-observable/-/zen-observable-0.8.0.tgz"; 1073 1129 sha1 = "8b63ab7f1aa5321248aad5ac890a485656dcea4d"; 1130 + }; 1131 + } 1132 + { 1133 + name = "_typescript_eslint_experimental_utils___experimental_utils_2.30.0.tgz"; 1134 + path = fetchurl { 1135 + name = "_typescript_eslint_experimental_utils___experimental_utils_2.30.0.tgz"; 1136 + url = "https://registry.yarnpkg.com/@typescript-eslint/experimental-utils/-/experimental-utils-2.30.0.tgz"; 1137 + sha1 = "9845e868c01f3aed66472c561d4b6bac44809dd0"; 1138 + }; 1139 + } 1140 + { 1141 + name = "_typescript_eslint_typescript_estree___typescript_estree_2.30.0.tgz"; 1142 + path = fetchurl { 1143 + name = "_typescript_eslint_typescript_estree___typescript_estree_2.30.0.tgz"; 1144 + url = "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-2.30.0.tgz"; 1145 + sha1 = "1b8e848b55144270255ffbfe4c63291f8f766615"; 1074 1146 }; 1075 1147 } 1076 1148 { ··· 1874 1946 }; 1875 1947 } 1876 1948 { 1877 - name = "babel_code_frame___babel_code_frame_6.26.0.tgz"; 1878 - path = fetchurl { 1879 - name = "babel_code_frame___babel_code_frame_6.26.0.tgz"; 1880 - url = "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz"; 1881 - sha1 = "63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b"; 1882 - }; 1883 - } 1884 - { 1885 1949 name = "babel_eslint___babel_eslint_10.0.3.tgz"; 1886 1950 path = fetchurl { 1887 1951 name = "babel_eslint___babel_eslint_10.0.3.tgz"; ··· 2794 2858 }; 2795 2859 } 2796 2860 { 2861 + name = "codemirror___codemirror_5.53.2.tgz"; 2862 + path = fetchurl { 2863 + name = "codemirror___codemirror_5.53.2.tgz"; 2864 + url = "https://registry.yarnpkg.com/codemirror/-/codemirror-5.53.2.tgz"; 2865 + sha1 = "9799121cf8c50809cca487304e9de3a74d33f428"; 2866 + }; 2867 + } 2868 + { 2797 2869 name = "codesandbox_api___codesandbox_api_0.0.23.tgz"; 2798 2870 path = fetchurl { 2799 2871 name = "codesandbox_api___codesandbox_api_0.0.23.tgz"; ··· 3290 3362 }; 3291 3363 } 3292 3364 { 3293 - name = "css_loader___css_loader_1.0.1.tgz"; 3365 + name = "css_loader___css_loader_2.1.1.tgz"; 3294 3366 path = fetchurl { 3295 - name = "css_loader___css_loader_1.0.1.tgz"; 3296 - url = "https://registry.yarnpkg.com/css-loader/-/css-loader-1.0.1.tgz"; 3297 - sha1 = "6885bb5233b35ec47b006057da01cc640b6b79fe"; 3367 + name = "css_loader___css_loader_2.1.1.tgz"; 3368 + url = "https://registry.yarnpkg.com/css-loader/-/css-loader-2.1.1.tgz"; 3369 + sha1 = "d8254f72e412bb2238bb44dd674ffbef497333ea"; 3298 3370 }; 3299 3371 } 3300 3372 { ··· 3303 3375 name = "css_selector_parser___css_selector_parser_1.3.0.tgz"; 3304 3376 url = "https://registry.yarnpkg.com/css-selector-parser/-/css-selector-parser-1.3.0.tgz"; 3305 3377 sha1 = "5f1ad43e2d8eefbfdc304fcd39a521664943e3eb"; 3306 - }; 3307 - } 3308 - { 3309 - name = "css_selector_tokenizer___css_selector_tokenizer_0.7.2.tgz"; 3310 - path = fetchurl { 3311 - name = "css_selector_tokenizer___css_selector_tokenizer_0.7.2.tgz"; 3312 - url = "https://registry.yarnpkg.com/css-selector-tokenizer/-/css-selector-tokenizer-0.7.2.tgz"; 3313 - sha1 = "11e5e27c9a48d90284f22d45061c303d7a25ad87"; 3314 3378 }; 3315 3379 } 3316 3380 { ··· 4514 4578 }; 4515 4579 } 4516 4580 { 4517 - name = "eslint_plugin_jest___eslint_plugin_jest_22.3.0.tgz"; 4581 + name = "eslint_plugin_jest___eslint_plugin_jest_23.8.2.tgz"; 4518 4582 path = fetchurl { 4519 - name = "eslint_plugin_jest___eslint_plugin_jest_22.3.0.tgz"; 4520 - url = "https://registry.yarnpkg.com/eslint-plugin-jest/-/eslint-plugin-jest-22.3.0.tgz"; 4521 - sha1 = "a10f10dedfc92def774ec9bb5bfbd2fb8e1c96d2"; 4583 + name = "eslint_plugin_jest___eslint_plugin_jest_23.8.2.tgz"; 4584 + url = "https://registry.yarnpkg.com/eslint-plugin-jest/-/eslint-plugin-jest-23.8.2.tgz"; 4585 + sha1 = "6f28b41c67ef635f803ebd9e168f6b73858eb8d4"; 4522 4586 }; 4523 4587 } 4524 4588 { ··· 4575 4639 name = "eslint_utils___eslint_utils_1.4.3.tgz"; 4576 4640 url = "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-1.4.3.tgz"; 4577 4641 sha1 = "74fec7c54d0776b6f67e0251040b5806564e981f"; 4642 + }; 4643 + } 4644 + { 4645 + name = "eslint_utils___eslint_utils_2.0.0.tgz"; 4646 + path = fetchurl { 4647 + name = "eslint_utils___eslint_utils_2.0.0.tgz"; 4648 + url = "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-2.0.0.tgz"; 4649 + sha1 = "7be1cc70f27a72a76cd14aa698bcabed6890e1cd"; 4578 4650 }; 4579 4651 } 4580 4652 { ··· 4882 4954 }; 4883 4955 } 4884 4956 { 4885 - name = "fastparse___fastparse_1.1.2.tgz"; 4886 - path = fetchurl { 4887 - name = "fastparse___fastparse_1.1.2.tgz"; 4888 - url = "https://registry.yarnpkg.com/fastparse/-/fastparse-1.1.2.tgz"; 4889 - sha1 = "91728c5a5942eced8531283c79441ee4122c35a9"; 4890 - }; 4891 - } 4892 - { 4893 4957 name = "fault___fault_1.0.2.tgz"; 4894 4958 path = fetchurl { 4895 4959 name = "fault___fault_1.0.2.tgz"; ··· 5562 5626 }; 5563 5627 } 5564 5628 { 5565 - name = "graphql_tag___graphql_tag_2.10.0.tgz"; 5629 + name = "graphql_tag___graphql_tag_2.10.3.tgz"; 5566 5630 path = fetchurl { 5567 - name = "graphql_tag___graphql_tag_2.10.0.tgz"; 5568 - url = "https://registry.yarnpkg.com/graphql-tag/-/graphql-tag-2.10.0.tgz"; 5569 - sha1 = "87da024be863e357551b2b8700e496ee2d4353ae"; 5631 + name = "graphql_tag___graphql_tag_2.10.3.tgz"; 5632 + url = "https://registry.yarnpkg.com/graphql-tag/-/graphql-tag-2.10.3.tgz"; 5633 + sha1 = "ea1baba5eb8fc6339e4c4cf049dabe522b0edf03"; 5570 5634 }; 5571 5635 } 5572 5636 { ··· 5938 6002 }; 5939 6003 } 5940 6004 { 5941 - name = "icss_utils___icss_utils_2.1.0.tgz"; 6005 + name = "icss_utils___icss_utils_4.1.1.tgz"; 5942 6006 path = fetchurl { 5943 - name = "icss_utils___icss_utils_2.1.0.tgz"; 5944 - url = "https://registry.yarnpkg.com/icss-utils/-/icss-utils-2.1.0.tgz"; 5945 - sha1 = "83f0a0ec378bf3246178b6c2ad9136f135b1c962"; 6007 + name = "icss_utils___icss_utils_4.1.1.tgz"; 6008 + url = "https://registry.yarnpkg.com/icss-utils/-/icss-utils-4.1.1.tgz"; 6009 + sha1 = "21170b53789ee27447c2f47dd683081403f9a467"; 5946 6010 }; 5947 6011 } 5948 6012 { ··· 7199 7263 name = "js_tokens___js_tokens_4.0.0.tgz"; 7200 7264 url = "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz"; 7201 7265 sha1 = "19203fb59991df98e3a287050d4647cdeaf32499"; 7202 - }; 7203 - } 7204 - { 7205 - name = "js_tokens___js_tokens_3.0.2.tgz"; 7206 - path = fetchurl { 7207 - name = "js_tokens___js_tokens_3.0.2.tgz"; 7208 - url = "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz"; 7209 - sha1 = "9866df395102130e38f7f996bceb65443209c25b"; 7210 7266 }; 7211 7267 } 7212 7268 { ··· 8346 8402 }; 8347 8403 } 8348 8404 { 8405 + name = "mitt___mitt_1.2.0.tgz"; 8406 + path = fetchurl { 8407 + name = "mitt___mitt_1.2.0.tgz"; 8408 + url = "https://registry.yarnpkg.com/mitt/-/mitt-1.2.0.tgz"; 8409 + sha1 = "cb24e6569c806e31bd4e3995787fe38a04fdf90d"; 8410 + }; 8411 + } 8412 + { 8349 8413 name = "mixin_deep___mixin_deep_1.3.2.tgz"; 8350 8414 path = fetchurl { 8351 8415 name = "mixin_deep___mixin_deep_1.3.2.tgz"; ··· 9546 9610 }; 9547 9611 } 9548 9612 { 9549 - name = "postcss_modules_extract_imports___postcss_modules_extract_imports_1.2.1.tgz"; 9613 + name = "postcss_modules_extract_imports___postcss_modules_extract_imports_2.0.0.tgz"; 9550 9614 path = fetchurl { 9551 - name = "postcss_modules_extract_imports___postcss_modules_extract_imports_1.2.1.tgz"; 9552 - url = "https://registry.yarnpkg.com/postcss-modules-extract-imports/-/postcss-modules-extract-imports-1.2.1.tgz"; 9553 - sha1 = "dc87e34148ec7eab5f791f7cd5849833375b741a"; 9615 + name = "postcss_modules_extract_imports___postcss_modules_extract_imports_2.0.0.tgz"; 9616 + url = "https://registry.yarnpkg.com/postcss-modules-extract-imports/-/postcss-modules-extract-imports-2.0.0.tgz"; 9617 + sha1 = "818719a1ae1da325f9832446b01136eeb493cd7e"; 9554 9618 }; 9555 9619 } 9556 9620 { 9557 - name = "postcss_modules_local_by_default___postcss_modules_local_by_default_1.2.0.tgz"; 9621 + name = "postcss_modules_local_by_default___postcss_modules_local_by_default_2.0.6.tgz"; 9558 9622 path = fetchurl { 9559 - name = "postcss_modules_local_by_default___postcss_modules_local_by_default_1.2.0.tgz"; 9560 - url = "https://registry.yarnpkg.com/postcss-modules-local-by-default/-/postcss-modules-local-by-default-1.2.0.tgz"; 9561 - sha1 = "f7d80c398c5a393fa7964466bd19500a7d61c069"; 9623 + name = "postcss_modules_local_by_default___postcss_modules_local_by_default_2.0.6.tgz"; 9624 + url = "https://registry.yarnpkg.com/postcss-modules-local-by-default/-/postcss-modules-local-by-default-2.0.6.tgz"; 9625 + sha1 = "dd9953f6dd476b5fd1ef2d8830c8929760b56e63"; 9562 9626 }; 9563 9627 } 9564 9628 { 9565 - name = "postcss_modules_scope___postcss_modules_scope_1.1.0.tgz"; 9629 + name = "postcss_modules_scope___postcss_modules_scope_2.2.0.tgz"; 9566 9630 path = fetchurl { 9567 - name = "postcss_modules_scope___postcss_modules_scope_1.1.0.tgz"; 9568 - url = "https://registry.yarnpkg.com/postcss-modules-scope/-/postcss-modules-scope-1.1.0.tgz"; 9569 - sha1 = "d6ea64994c79f97b62a72b426fbe6056a194bb90"; 9631 + name = "postcss_modules_scope___postcss_modules_scope_2.2.0.tgz"; 9632 + url = "https://registry.yarnpkg.com/postcss-modules-scope/-/postcss-modules-scope-2.2.0.tgz"; 9633 + sha1 = "385cae013cc7743f5a7d7602d1073a89eaae62ee"; 9570 9634 }; 9571 9635 } 9572 9636 { 9573 - name = "postcss_modules_values___postcss_modules_values_1.3.0.tgz"; 9637 + name = "postcss_modules_values___postcss_modules_values_2.0.0.tgz"; 9574 9638 path = fetchurl { 9575 - name = "postcss_modules_values___postcss_modules_values_1.3.0.tgz"; 9576 - url = "https://registry.yarnpkg.com/postcss-modules-values/-/postcss-modules-values-1.3.0.tgz"; 9577 - sha1 = "ecffa9d7e192518389f42ad0e83f72aec456ea20"; 9639 + name = "postcss_modules_values___postcss_modules_values_2.0.0.tgz"; 9640 + url = "https://registry.yarnpkg.com/postcss-modules-values/-/postcss-modules-values-2.0.0.tgz"; 9641 + sha1 = "479b46dc0c5ca3dc7fa5270851836b9ec7152f64"; 9578 9642 }; 9579 9643 } 9580 9644 { ··· 9666 9730 }; 9667 9731 } 9668 9732 { 9669 - name = "postcss___postcss_6.0.23.tgz"; 9670 - path = fetchurl { 9671 - name = "postcss___postcss_6.0.23.tgz"; 9672 - url = "https://registry.yarnpkg.com/postcss/-/postcss-6.0.23.tgz"; 9673 - sha1 = "61c82cc328ac60e677645f979054eb98bc0e3324"; 9674 - }; 9675 - } 9676 - { 9677 9733 name = "postcss___postcss_7.0.27.tgz"; 9678 9734 path = fetchurl { 9679 9735 name = "postcss___postcss_7.0.27.tgz"; 9680 9736 url = "https://registry.yarnpkg.com/postcss/-/postcss-7.0.27.tgz"; 9681 9737 sha1 = "cc67cdc6b0daa375105b7c424a85567345fc54d9"; 9738 + }; 9739 + } 9740 + { 9741 + name = "postcss___postcss_7.0.30.tgz"; 9742 + path = fetchurl { 9743 + name = "postcss___postcss_7.0.30.tgz"; 9744 + url = "https://registry.yarnpkg.com/postcss/-/postcss-7.0.30.tgz"; 9745 + sha1 = "cc9378beffe46a02cbc4506a0477d05fcea9a8e2"; 9682 9746 }; 9683 9747 } 9684 9748 { ··· 11794 11858 }; 11795 11859 } 11796 11860 { 11797 - name = "throttle_debounce___throttle_debounce_2.0.1.tgz"; 11861 + name = "throttle_debounce___throttle_debounce_2.1.0.tgz"; 11798 11862 path = fetchurl { 11799 - name = "throttle_debounce___throttle_debounce_2.0.1.tgz"; 11800 - url = "https://registry.yarnpkg.com/throttle-debounce/-/throttle-debounce-2.0.1.tgz"; 11801 - sha1 = "7307ddd6cd9acadb349132fbf6c18d78c88a5e62"; 11863 + name = "throttle_debounce___throttle_debounce_2.1.0.tgz"; 11864 + url = "https://registry.yarnpkg.com/throttle-debounce/-/throttle-debounce-2.1.0.tgz"; 11865 + sha1 = "257e648f0a56bd9e54fe0f132c4ab8611df4e1d5"; 11802 11866 }; 11803 11867 } 11804 11868 { ··· 12114 12178 }; 12115 12179 } 12116 12180 { 12117 - name = "tslib___tslib_1.9.3.tgz"; 12181 + name = "tslib___tslib_1.11.1.tgz"; 12118 12182 path = fetchurl { 12119 - name = "tslib___tslib_1.9.3.tgz"; 12120 - url = "https://registry.yarnpkg.com/tslib/-/tslib-1.9.3.tgz"; 12121 - sha1 = "d7e4dd79245d85428c4d7e4822a79917954ca286"; 12183 + name = "tslib___tslib_1.11.1.tgz"; 12184 + url = "https://registry.yarnpkg.com/tslib/-/tslib-1.11.1.tgz"; 12185 + sha1 = "eb15d128827fbee2841549e171f45ed338ac7e35"; 12186 + }; 12187 + } 12188 + { 12189 + name = "tsutils___tsutils_3.17.1.tgz"; 12190 + path = fetchurl { 12191 + name = "tsutils___tsutils_3.17.1.tgz"; 12192 + url = "https://registry.yarnpkg.com/tsutils/-/tsutils-3.17.1.tgz"; 12193 + sha1 = "ed719917f11ca0dee586272b2ac49e015a2dd759"; 12122 12194 }; 12123 12195 } 12124 12196 { ··· 12239 12311 name = "underscore___underscore_1.6.0.tgz"; 12240 12312 url = "https://registry.yarnpkg.com/underscore/-/underscore-1.6.0.tgz"; 12241 12313 sha1 = "8b38b10cacdef63337b8b24e4ff86d45aea529a8"; 12242 - }; 12243 - } 12244 - { 12245 - name = "underscore___underscore_1.9.2.tgz"; 12246 - path = fetchurl { 12247 - name = "underscore___underscore_1.9.2.tgz"; 12248 - url = "https://registry.yarnpkg.com/underscore/-/underscore-1.9.2.tgz"; 12249 - sha1 = "0c8d6f536d6f378a5af264a72f7bec50feb7cf2f"; 12250 12314 }; 12251 12315 } 12252 12316 { ··· 12666 12730 }; 12667 12731 } 12668 12732 { 12669 - name = "vue_apollo___vue_apollo_3.0.0_beta.28.tgz"; 12733 + name = "vue_apollo___vue_apollo_3.0.3.tgz"; 12670 12734 path = fetchurl { 12671 - name = "vue_apollo___vue_apollo_3.0.0_beta.28.tgz"; 12672 - url = "https://registry.yarnpkg.com/vue-apollo/-/vue-apollo-3.0.0-beta.28.tgz"; 12673 - sha1 = "be6a3a1504be2096cbfb23996537e2fc95c8c239"; 12735 + name = "vue_apollo___vue_apollo_3.0.3.tgz"; 12736 + url = "https://registry.yarnpkg.com/vue-apollo/-/vue-apollo-3.0.3.tgz"; 12737 + sha1 = "7f29558df76eec0f03251847eef153816a261827"; 12674 12738 }; 12675 12739 } 12676 12740 {
+1
pkgs/build-support/rust/default.nix
··· 130 130 # give a friendlier error msg. 131 131 if ! [ -e $srcLockfile ]; then 132 132 echo "ERROR: Missing Cargo.lock from src. Expected to find it at: $srcLockfile" 133 + echo "Hint: You can use the cargoPatches attribute to add a Cargo.lock manually to the build." 133 134 exit 1 134 135 fi 135 136
+52
pkgs/data/icons/mint-x-icons/default.nix
··· 1 + { stdenv 2 + , fetchurl 3 + , gnome-icon-theme 4 + , gtk3 5 + , hicolor-icon-theme 6 + , humanity-icon-theme 7 + , ubuntu-themes 8 + }: 9 + 10 + stdenv.mkDerivation rec { 11 + pname = "mint-x-icons"; 12 + version = "1.5.5"; 13 + 14 + src = fetchurl { 15 + url = "http://packages.linuxmint.com/pool/main/m/${pname}/${pname}_${version}.tar.xz"; 16 + sha256 = "0nq3si06m98b71f33wism0bvlvib57rm96msf0wx852ginw3a5yd"; 17 + }; 18 + 19 + nativeBuildInputs = [ 20 + gtk3 21 + ]; 22 + 23 + propagatedBuildInputs = [ 24 + gnome-icon-theme 25 + hicolor-icon-theme 26 + humanity-icon-theme 27 + ubuntu-themes # provides the parent icon theme: ubuntu-mono-dark 28 + ]; 29 + 30 + dontDropIconThemeCache = true; 31 + 32 + installPhase = '' 33 + runHook preInstall 34 + 35 + mkdir -p $out/share/icons 36 + cp -vai usr/share/icons/* $out/share/icons 37 + 38 + for theme in $out/share/icons/*; do 39 + gtk-update-icon-cache $theme 40 + done 41 + 42 + runHook postInstall 43 + ''; 44 + 45 + meta = with stdenv.lib; { 46 + description = "Mint/metal theme based on mintified versions of Clearlooks Revamp, Elementary and Faenza"; 47 + homepage = "https://github.com/linuxmint/mint-x-icons"; 48 + license = licenses.gpl3Plus; 49 + platforms = platforms.linux; 50 + maintainers = with maintainers; [ romildo ]; 51 + }; 52 + }
+26 -10
pkgs/desktops/lxde/core/lxappearance/default.nix
··· 1 - { stdenv, fetchurl, intltool, pkgconfig, libX11, gtk2, withGtk3 ? false, gtk3 }: 1 + { stdenv 2 + , fetchurl 3 + , intltool 4 + , pkg-config 5 + , libX11 6 + , gtk2 7 + , gtk3 8 + , withGtk3 ? true 9 + }: 2 10 3 11 stdenv.mkDerivation rec { 4 12 name = "lxappearance-0.6.3"; 5 13 6 - src = fetchurl{ 14 + src = fetchurl { 7 15 url = "mirror://sourceforge/project/lxde/LXAppearance/${name}.tar.xz"; 8 16 sha256 = "0f4bjaamfxxdr9civvy55pa6vv9dx1hjs522gjbbgx7yp1cdh8kj"; 9 17 }; 10 18 11 - nativeBuildInputs = [ pkgconfig intltool ]; 19 + nativeBuildInputs = [ 20 + pkg-config 21 + intltool 22 + ]; 12 23 13 - buildInputs = [ libX11 (if withGtk3 then gtk3 else gtk2) ]; 24 + buildInputs = [ 25 + libX11 26 + (if withGtk3 then gtk3 else gtk2) 27 + ]; 14 28 15 - patches = [ ./lxappearance-0.6.3-xdg.system.data.dirs.patch ]; 29 + patches = [ 30 + ./lxappearance-0.6.3-xdg.system.data.dirs.patch 31 + ]; 16 32 17 33 configureFlags = stdenv.lib.optional withGtk3 "--enable-gtk3"; 18 34 19 - meta = { 20 - description = "A lightweight program for configuring the theme and fonts of gtk applications"; 35 + meta = with stdenv.lib; { 36 + description = "Lightweight program for configuring the theme and fonts of gtk applications"; 21 37 homepage = "https://lxde.org/"; 22 - maintainers = [ stdenv.lib.maintainers.hinton ]; 23 - platforms = stdenv.lib.platforms.linux; 24 - license = stdenv.lib.licenses.gpl2; 38 + license = licenses.gpl2; 39 + platforms = platforms.linux; 40 + maintainers = with maintainers; [ hinton romildo ]; 25 41 }; 26 42 }
+2 -2
pkgs/development/interpreters/python/cpython/default.nix
··· 107 107 # Backport a fix for discovering `rpmbuild` command when doing `python setup.py bdist_rpm` to 3.5, 3.6, 3.7. 108 108 # See: https://bugs.python.org/issue11122 109 109 ./3.7/fix-hardcoded-path-checking-for-rpmbuild.patch 110 - ] ++ optionals (isPy37 || isPy38) [ 110 + ] ++ optionals (isPy37 || isPy38 || isPy39) [ 111 111 # Fix darwin build https://bugs.python.org/issue34027 112 112 ./3.7/darwin-libutil.patch 113 113 ] ++ optionals (isPy3k && hasDistutilsCxxPatch) [ ··· 118 118 ( 119 119 if isPy35 then 120 120 ./3.5/python-3.x-distutils-C++.patch 121 - else if isPy37 || isPy38 then 121 + else if isPy37 || isPy38 || isPy39 then 122 122 ./3.7/python-3.x-distutils-C++.patch 123 123 else 124 124 fetchpatch {
+26
pkgs/development/libraries/xdg-desktop-portal-wlr/default.nix
··· 1 + { stdenv, fetchFromGitHub 2 + , meson, ninja, pkgconfig, wayland-protocols 3 + , pipewire, wayland, elogind, systemd, libdrm }: 4 + 5 + stdenv.mkDerivation rec { 6 + pname = "xdg-desktop-portal-wlr"; 7 + version = "0.1.0"; 8 + 9 + src = fetchFromGitHub { 10 + owner = "emersion"; 11 + repo = pname; 12 + rev = "v${version}"; 13 + sha256 = "12k92h9dmn1fyn8nzxk69cyv0gnb7g9gj7a66mw5dcl5zqnl07nc"; 14 + }; 15 + 16 + nativeBuildInputs = [ meson ninja pkgconfig wayland-protocols ]; 17 + buildInputs = [ pipewire wayland elogind systemd libdrm ]; 18 + 19 + meta = with stdenv.lib; { 20 + homepage = "https://github.com/emersion/xdg-desktop-portal-wlr"; 21 + description = "xdg-desktop-portal backend for wlroots"; 22 + maintainers = with maintainers; [ minijackson ]; 23 + platforms = platforms.linux; 24 + license = licenses.mit; 25 + }; 26 + }
-23
pkgs/development/ocaml-modules/custom_printf/default.nix
··· 1 - {stdenv, buildOcaml, fetchurl, type_conv, sexplib_p4, pa_ounit}: 2 - 3 - buildOcaml rec { 4 - name = "custom_printf"; 5 - version = "112.24.00"; 6 - 7 - minimumSupportedOcamlVersion = "4.02"; 8 - 9 - src = fetchurl { 10 - url = "https://github.com/janestreet/custom_printf/archive/${version}.tar.gz"; 11 - sha256 = "dad3aface92c53e8fbcc12cc9358c4767cb1cb09857d4819a10ed98eccaca8f9"; 12 - }; 13 - 14 - buildInputs = [ pa_ounit ]; 15 - propagatedBuildInputs = [ type_conv sexplib_p4 ]; 16 - 17 - meta = with stdenv.lib; { 18 - homepage = "https://github.com/janestreet/custom_printf"; 19 - description = "Syntax extension for printf format strings"; 20 - license = licenses.asl20; 21 - maintainers = [ maintainers.ericbmerritt ]; 22 - }; 23 - }
+2 -2
pkgs/development/python-modules/azure-mgmt-batch/default.nix
··· 10 10 11 11 buildPythonPackage rec { 12 12 pname = "azure-mgmt-batch"; 13 - version = "8.0.0"; 13 + version = "9.0.0"; 14 14 15 15 src = fetchPypi { 16 16 inherit pname version; 17 17 extension = "zip"; 18 - sha256 = "228ea058361763a5a31273df7d813b9134d0ecff4567c533eb7e1afaf772fbc7"; 18 + sha256 = "03417eecfa1fac906e674cb1cb43ed7da27a96277277b091d7c389ba39f6c3fe"; 19 19 }; 20 20 21 21 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/azure-mgmt-hanaonazure/default.nix
··· 10 10 11 11 buildPythonPackage rec { 12 12 pname = "azure-mgmt-hanaonazure"; 13 - version = "0.13.0"; 13 + version = "0.14.0"; 14 14 15 15 src = fetchPypi { 16 16 inherit pname version; 17 17 extension = "zip"; 18 - sha256 = "cc4058174e371a0b68b305cd5a082fcca47f3446dd9aefd9ada72da4bd637da9"; 18 + sha256 = "7f8b912ca62431c1697b4914c12cc5f8123e60ee6c65d123591f937744d204e0"; 19 19 }; 20 20 21 21 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/azure-mgmt-imagebuilder/default.nix
··· 5 5 }: 6 6 7 7 buildPythonPackage rec { 8 - version = "0.3.0"; 8 + version = "0.4.0"; 9 9 pname = "azure-mgmt-imagebuilder"; 10 10 disabled = isPy27; 11 11 12 12 src = fetchPypi { 13 13 inherit pname version; 14 - sha256 = "0r4sxr3pbcci5qif1ip1lrix3cryj0b3asqch3zds4q705jiakc4"; 14 + sha256 = "4c9291bf16b40b043637e5e4f15650f71418ac237393e62219cab478a7951733"; 15 15 extension = "zip"; 16 16 }; 17 17
+2 -2
pkgs/development/python-modules/azure-mgmt-loganalytics/default.nix
··· 11 11 12 12 buildPythonPackage rec { 13 13 pname = "azure-mgmt-loganalytics"; 14 - version = "0.5.0"; 14 + version = "0.6.0"; 15 15 16 16 src = fetchPypi { 17 17 inherit pname version; 18 18 extension = "zip"; 19 - sha256 = "16f4c4f676ea718b7e1c59bd9a516fcfc796f1aff844b183a7ce9afe69fb214d"; 19 + sha256 = "a1527fe8b1e8a47558bfa03bd6c587706d8fb9213142aea42da07397daa2d039"; 20 20 }; 21 21 22 22 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/azure-mgmt-signalr/default.nix
··· 9 9 10 10 buildPythonPackage rec { 11 11 pname = "azure-mgmt-signalr"; 12 - version = "0.3.0"; 12 + version = "0.4.0"; 13 13 14 14 src = fetchPypi { 15 15 inherit pname version; 16 16 extension = "zip"; 17 - sha256 = "08b2i6wz9n13h77ahay1hvmg8abk2vvs7kn4y7xip9gi6ij8fv0a"; 17 + sha256 = "6503ddda9d6f4b634dfeb8eb4bcd14ede5e0900585f6c83bf9010cf82215c126"; 18 18 }; 19 19 20 20 propagatedBuildInputs = [
+5 -2
pkgs/development/python-modules/azure-servicebus/default.nix
··· 10 10 11 11 buildPythonPackage rec { 12 12 pname = "azure-servicebus"; 13 - version = "0.50.2"; 13 + version = "0.50.3"; 14 14 15 15 src = fetchPypi { 16 16 inherit pname version; 17 17 extension = "zip"; 18 - sha256 = "836649d510aa2b7467bc87d8dab18f2db917b63aa2fe8f3e5d0bb44011e465f5"; 18 + sha256 = "2b1e60c81fcf5b6a5bb3ceddb27f24543f479912e39a4706a390a16d8c0a71f4"; 19 19 }; 20 20 21 21 buildInputs = [ ··· 28 28 29 29 # has no tests 30 30 doCheck = false; 31 + 32 + # python2 will fail due to pep 420 33 + pythonImportsCheck = lib.optionals isPy3k [ "azure.servicebus" ]; 31 34 32 35 meta = with lib; { 33 36 description = "This is the Microsoft Azure Service Bus Client Library";
+10 -5
pkgs/development/python-modules/buildbot/default.nix
··· 1 - { stdenv, lib, buildPythonPackage, fetchPypi, fetchpatch, makeWrapper, isPy3k, 1 + { stdenv, lib, buildPythonPackage, fetchFromGitHub, fetchpatch, makeWrapper, isPy3k, 2 2 python, twisted, jinja2, zope_interface, future, sqlalchemy, 3 3 sqlalchemy_migrate, dateutil, txaio, autobahn, pyjwt, pyyaml, treq, 4 4 txrequests, pyjade, boto3, moto, mock, python-lz4, setuptoolsTrial, ··· 25 25 26 26 package = buildPythonPackage rec { 27 27 pname = "buildbot"; 28 - version = "2.7.0"; 28 + version = "2.8.0"; 29 29 30 - src = fetchPypi { 31 - inherit pname version; 32 - sha256 = "0jj8fh611n7xc3vsfbgpqsllp38cfj3spkr2kz3ara2x7jvh3406"; 30 + # tests fail with the 2.8.0 sdist, so fetchFromGitHub instead 31 + # https://github.com/buildbot/buildbot/pull/5322 32 + src = fetchFromGitHub { 33 + owner = "buildbot"; 34 + repo = "buildbot"; 35 + rev = "v${version}"; 36 + sha256 = "0akd61mgjp53c3vyf2yyzd0xf0cjwpvsi7g8pz72xrvnil1s4w7k"; 33 37 }; 38 + sourceRoot = "./source/master"; 34 39 35 40 propagatedBuildInputs = [ 36 41 # core
+2 -2
pkgs/development/python-modules/buildbot/pkg.nix
··· 2 2 3 3 buildPythonPackage rec { 4 4 pname = "buildbot-pkg"; 5 - version = "2.7.0"; 5 + version = "2.8.0"; 6 6 7 7 src = fetchPypi { 8 8 inherit pname version; 9 - sha256 = "03zb09r8w8dvd9qas7h6gdwlqc7q482ikph6h3708lpnkn72xdkb"; 9 + sha256 = "09sf36h8q8wrp0n57nb9915k86qdjyjj4xpdzy8q4s9z121iw0xz"; 10 10 }; 11 11 12 12 postPatch = ''
+5 -5
pkgs/development/python-modules/buildbot/plugins.nix
··· 7 7 8 8 src = fetchPypi { 9 9 inherit pname version; 10 - sha256 = "1d8xdk4rq4p3fw03cvz7d1pmpjjbyrnzzjifzv46q88vk7jakgxi"; 10 + sha256 = "1xq7pqvvsvgd2n38yzk0bqx943ldxsldrdcldwjshazq831rbdbn"; 11 11 }; 12 12 13 13 # Remove unneccessary circular dependency on buildbot ··· 34 34 35 35 src = fetchPypi { 36 36 inherit pname version; 37 - sha256 = "03pl75avi6cmmhjvfn0a0b4drn35yv37kvgn04zjdwa3m6p3haa8"; 37 + sha256 = "0ixq8x845glnykpab2z0vhwp69nbw98mg0df34kf32wjvm8j6kjh"; 38 38 }; 39 39 40 40 buildInputs = [ buildbot-pkg ]; ··· 56 56 57 57 src = fetchPypi { 58 58 inherit pname version; 59 - sha256 = "0rzjk3qmlvid8qag3r00zaszchncl1nl8l2yapvc1zqh2dqlln58"; 59 + sha256 = "1gn0amv8l0n0ny1x78g8x4rpfsnhcs9gkws2zw3nx78y4pbs6lw5"; 60 60 }; 61 61 62 62 buildInputs = [ buildbot-pkg ]; ··· 78 78 79 79 src = fetchPypi { 80 80 inherit pname version; 81 - sha256 = "1n4j73y9kwfqk7dz1fh1bpan68vlpnbz7idxpmsphyay8w8y9dd4"; 81 + sha256 = "04c0m4liyl4aaksq9x8wncasacfv0vgl0igafnhf440cf9lhkkwy"; 82 82 }; 83 83 84 84 buildInputs = [ buildbot-pkg ]; ··· 100 100 101 101 src = fetchPypi { 102 102 inherit pname version; 103 - sha256 = "1babkcgxczs6zfk2b6jmsy2vwbrgdydrp2px1mfwa3wmv8fwlssg"; 103 + sha256 = "0c7lr4q3dvz3zhbnsvs2chsc6yn2jh10dnh1y66axdxk8hpqs3nc"; 104 104 }; 105 105 106 106 buildInputs = [ buildbot-pkg ];
+2 -2
pkgs/development/python-modules/buildbot/worker.nix
··· 3 3 4 4 buildPythonPackage (rec { 5 5 pname = "buildbot-worker"; 6 - version = "2.7.0"; 6 + version = "2.8.0"; 7 7 8 8 src = fetchPypi { 9 9 inherit pname version; 10 - sha256 = "1vwy46acvczgk1hhpsqdwpcw55j4hm5pkw6j01f92axiga8r5jk6"; 10 + sha256 = "19pabha9jh3jnz9micfn5y4khnx4q6g1zc27wvfw6663mw6spykx"; 11 11 }; 12 12 13 13 propagatedBuildInputs = [ twisted future ];
+32
pkgs/development/python-modules/jupyter-sphinx/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchPypi 4 + , nbformat 5 + , sphinx 6 + , ipywidgets 7 + , pythonOlder 8 + }: 9 + 10 + buildPythonPackage rec { 11 + pname = "jupyter-sphinx"; 12 + version = "0.2.4"; 13 + 14 + src = fetchPypi { 15 + inherit version; 16 + pname = "jupyter_sphinx"; 17 + sha256 = "b5ba1efdd1488b385de0068036a665932ed93998e40ce3a342c60f0926781fd9"; 18 + }; 19 + 20 + propagatedBuildInputs = [ nbformat sphinx ipywidgets ]; 21 + 22 + doCheck = false; 23 + 24 + disabled = pythonOlder "3.5"; 25 + 26 + meta = with lib; { 27 + description = "Jupyter Sphinx Extensions"; 28 + homepage = "https://github.com/jupyter/jupyter-sphinx/"; 29 + license = licenses.bsd3; 30 + }; 31 + 32 + }
+43
pkgs/development/python-modules/pythonmagick/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchurl 4 + , python 5 + , pkg-config 6 + , imagemagick 7 + , autoreconfHook 8 + , boost 9 + , isPy3k 10 + , pythonImportsCheckHook 11 + }: 12 + 13 + buildPythonPackage rec { 14 + pname = "pythonmagick"; 15 + version = "0.9.16"; 16 + format = "other"; 17 + 18 + src = fetchurl { 19 + url = "mirror://imagemagick/python/releases/PythonMagick-${version}.tar.xz"; 20 + sha256 = "137278mfb5079lns2mmw73x8dhpzgwha53dyl00mmhj2z25varpn"; 21 + }; 22 + 23 + postPatch = '' 24 + rm configure 25 + ''; 26 + 27 + configureFlags = [ "--with-boost=${boost}" ]; 28 + 29 + nativeBuildInputs = [ pkg-config autoreconfHook pythonImportsCheckHook ]; 30 + buildInputs = [ python boost imagemagick ]; 31 + 32 + pythonImportsCheck = [ 33 + "PythonMagick" 34 + ]; 35 + 36 + disabled = isPy3k; 37 + 38 + meta = with lib; { 39 + homepage = "http://www.imagemagick.org/script/api.php"; 40 + license = licenses.imagemagick; 41 + description = "PythonMagick provides object oriented bindings for the ImageMagick Library."; 42 + }; 43 + }
+2 -2
pkgs/development/python-modules/uamqp/default.nix
··· 11 11 12 12 buildPythonPackage rec { 13 13 pname = "uamqp"; 14 - version = "1.2.7"; 14 + version = "1.2.8"; 15 15 16 16 src = fetchPypi { 17 17 inherit pname version; 18 - sha256 = "d5ac4f6e66baf466cb1c5e00d52f5da3a42bf811724522475b7e2125fbae4aae"; 18 + sha256 = "12yq435h27iv1kzgq3gl7c7hxdivvc2sl0l1kslgf2wxw53n7jgj"; 19 19 }; 20 20 21 21 buildInputs = [
+9 -9
pkgs/development/python-modules/wtforms/default.nix
··· 1 1 { stdenv 2 2 , buildPythonPackage 3 3 , fetchPypi 4 - , Babel 4 + , markupsafe 5 5 }: 6 6 7 7 buildPythonPackage rec { 8 - version = "2.1"; 9 - pname = "wtforms"; 8 + version = "2.3.1"; 9 + pname = "WTForms"; 10 10 11 11 src = fetchPypi { 12 12 inherit pname version; 13 - extension = "zip"; 14 - sha256 = "0vyl26y9cg409cfyj8rhqxazsdnd0jipgjw06civhrd53yyi1pzz"; 13 + sha256 = "0whrd9cqhlibm31yqhvhp9illddxf0cpgcn3v806f7ajmsri66l6"; 15 14 }; 16 15 16 + propagatedBuildInputs = [ markupsafe ]; 17 + 17 18 # Django tests are broken "django.core.exceptions.AppRegistryNotReady: Apps aren't loaded yet." 18 - # This is fixed in master I believe but not yet in 2.1; 19 19 doCheck = false; 20 - 21 - propagatedBuildInputs = [ Babel ]; 22 20 23 21 meta = with stdenv.lib; { 24 - homepage = "https://github.com/wtforms/wtforms"; 25 22 description = "A flexible forms validation and rendering library for Python"; 23 + homepage = "https://github.com/wtforms/wtforms"; 24 + changelog = "https://github.com/wtforms/wtforms/blob/${version}/CHANGES.rst"; 26 25 license = licenses.bsd3; 26 + maintainers = [ maintainers.bhipple ]; 27 27 }; 28 28 29 29 }
+3 -7
pkgs/development/tools/bazel-watcher/default.nix
··· 1 1 { buildBazelPackage 2 2 , fetchFromGitHub 3 - , fetchpatch 4 3 , git 5 4 , go 6 5 , python 7 6 , stdenv 8 - , iana-etc 9 - , mailcap 10 - , tzdata 11 7 }: 12 8 13 9 let ··· 17 13 in 18 14 buildBazelPackage rec { 19 15 name = "bazel-watcher-${version}"; 20 - version = "0.13.0"; 16 + version = "0.13.1"; 21 17 22 18 src = fetchFromGitHub { 23 19 owner = "bazelbuild"; 24 20 repo = "bazel-watcher"; 25 21 rev = "v${version}"; 26 - sha256 = "1fc3sp79znbbq1yjap56lham72n7cap8yfghpzrzmpl5brybjkvm"; 22 + sha256 = "0n28q27510ymg5d455hrbk7z8wawszgjmqjjhb4zximqhvxks7kh"; 27 23 }; 28 24 29 25 nativeBuildInputs = [ go git python ]; ··· 60 56 sed -e '/^FILE:@bazel_gazelle_go_repository_tools.*/d' -i $bazelOut/external/\@*.marker 61 57 ''; 62 58 63 - sha256 = "0i77nnbd1sd39qw4vm3n5mwkag3dskqjhzr7qs4w1arbiih45zd4"; 59 + sha256 = "16zgjd6zww9skk34ggfx5l3kbsdyv98zxawrvmx1arv5gaj63pp9"; 64 60 }; 65 61 66 62 buildAttrs = {
+3 -2
pkgs/development/tools/rq/default.nix
··· 1 - { lib, fetchFromGitHub, rustPlatform, libiconv, llvmPackages, v8 }: 1 + { stdenv, lib, fetchFromGitHub, rustPlatform, libiconv, llvmPackages, v8 }: 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "rq"; ··· 13 13 14 14 cargoSha256 = "0c5vwy3c5ji602dj64z6jqvcpi2xff03zvjbnwihb3ydqwnb3v67"; 15 15 16 - buildInputs = [ llvmPackages.clang-unwrapped v8 ]; 16 + buildInputs = [ llvmPackages.clang-unwrapped v8 ] 17 + ++ lib.optionals stdenv.isDarwin [ libiconv ]; 17 18 18 19 configurePhase = '' 19 20 export LIBCLANG_PATH="${llvmPackages.clang-unwrapped}/lib"
+4 -4
pkgs/games/openttd/default.nix
··· 1 - { stdenv, fetchurl, fetchzip, pkgconfig, SDL2, libpng, zlib, xz, freetype, fontconfig, libxdg_basedir 1 + { stdenv, fetchurl, fetchzip, pkgconfig, which, SDL2, libpng, zlib, xz, freetype, fontconfig, libxdg_basedir 2 2 , withOpenGFX ? true, withOpenSFX ? true, withOpenMSX ? true 3 3 , withFluidSynth ? true, audioDriver ? "alsa", fluidsynth, soundfont-fluid, procps 4 4 , writeScriptBin, makeWrapper, runtimeShell ··· 29 29 in 30 30 stdenv.mkDerivation rec { 31 31 pname = "openttd"; 32 - version = "1.10.1"; 32 + version = "1.10.2"; 33 33 34 34 src = fetchurl { 35 35 url = "https://cdn.openttd.org/openttd-releases/${version}/${pname}-${version}-source.tar.xz"; 36 - sha256 = "0d22a3c50f7a321f4f211594f4987ac16c381e8e3e40f116848e63e91e7fbb9b"; 36 + sha256 = "1xdn9rr858nq22a13cpbhcw74bwygf7lw95kvx3wn4zvb795b74k"; 37 37 }; 38 38 39 - nativeBuildInputs = [ pkgconfig makeWrapper ]; 39 + nativeBuildInputs = [ pkgconfig which makeWrapper ]; 40 40 buildInputs = [ SDL2 libpng xz zlib freetype fontconfig libxdg_basedir ] 41 41 ++ stdenv.lib.optionals withFluidSynth [ fluidsynth soundfont-fluid ]; 42 42
+212 -128
pkgs/misc/vim-plugins/generated.nix
··· 197 197 198 198 ayu-vim = buildVimPluginFrom2Nix { 199 199 pname = "ayu-vim"; 200 - version = "2020-04-13"; 200 + version = "2020-05-29"; 201 201 src = fetchFromGitHub { 202 202 owner = "ayu-theme"; 203 203 repo = "ayu-vim"; 204 - rev = "a3a2d2a4ce36e0f681236b3ab15043c0b09460b1"; 205 - sha256 = "06lhfwh8z178bgbbcz4mxjpk6zajz19x1jhaahbsqg3641y5pj0p"; 204 + rev = "0745635421688ce777f663d13531996cb4da6514"; 205 + sha256 = "0w7ixhz72g3lr1hkn450k6x8sdgv95pp6pxbykka3s01i506rzmj"; 206 206 }; 207 207 meta.homepage = "https://github.com/ayu-theme/ayu-vim/"; 208 208 }; ··· 293 293 294 294 caw-vim = buildVimPluginFrom2Nix { 295 295 pname = "caw-vim"; 296 - version = "2020-05-12"; 296 + version = "2020-06-01"; 297 297 src = fetchFromGitHub { 298 298 owner = "tyru"; 299 299 repo = "caw.vim"; 300 - rev = "2c6b9f2d9a2b4d172adde4c393b1a04c59a0b471"; 301 - sha256 = "0137vs50xmdggc2nqclp6i7i640nkj31czm8cmqx19504b7hy8vw"; 300 + rev = "0725e7c273e2c39d8730adc78e0fd20e0d57d173"; 301 + sha256 = "14rsjy5lllmb84vs5q111cb17c6nwc37zf460kh8ii1ijziyqhy2"; 302 302 }; 303 303 meta.homepage = "https://github.com/tyru/caw.vim/"; 304 304 }; ··· 401 401 402 402 coc-fzf = buildVimPluginFrom2Nix { 403 403 pname = "coc-fzf"; 404 - version = "2020-05-28"; 404 + version = "2020-06-02"; 405 405 src = fetchFromGitHub { 406 406 owner = "antoinemadec"; 407 407 repo = "coc-fzf"; 408 - rev = "ba8cf9afc8aae3ea4086d89a01bd414d42a6b8bc"; 409 - sha256 = "13dv08kpp3cxqgikznyxkl7nsjzxn97aklk6k6s19cw3b5al15pn"; 408 + rev = "8c89226acc29fe2695e8f86355c04ce1587f0fda"; 409 + sha256 = "04616lzpch9r5cj6nh4dw4b666iyi314n95mi62n5qcaibr6r85s"; 410 410 }; 411 411 meta.homepage = "https://github.com/antoinemadec/coc-fzf/"; 412 412 }; ··· 473 473 474 474 coc-java = buildVimPluginFrom2Nix { 475 475 pname = "coc-java"; 476 - version = "2020-04-23"; 476 + version = "2020-05-29"; 477 477 src = fetchFromGitHub { 478 478 owner = "neoclide"; 479 479 repo = "coc-java"; 480 - rev = "3c914c2b9e154889361d2631cd2188cf7e5fa020"; 481 - sha256 = "0q7q2z7k2sxqgi6nyj669iq2p4h3962i8hv3gzg2mpi0p73xs98k"; 480 + rev = "bf698c0df4d63c7c84013d58111b7b458f6b12f1"; 481 + sha256 = "1nyswz55dg4d1nz6ff2479ibnzcdhv9ky8a4awlakwp0g0c3680s"; 482 482 }; 483 483 meta.homepage = "https://github.com/neoclide/coc-java/"; 484 484 }; ··· 521 521 522 522 coc-metals = buildVimPluginFrom2Nix { 523 523 pname = "coc-metals"; 524 - version = "2020-05-25"; 524 + version = "2020-06-01"; 525 525 src = fetchFromGitHub { 526 526 owner = "ckipp01"; 527 527 repo = "coc-metals"; 528 - rev = "99431ec2eb4e5a9a0309d63bd4167e5af2f1d781"; 529 - sha256 = "13qqfhwv745svf5672hm7m4n3dk9c15py5l0znygn5a6gs5rjzzm"; 528 + rev = "0286d7f11647dca4a63d84fe4101dbabc7731c04"; 529 + sha256 = "068aqynvzsnrz2dh68zdy40h342nfrf8kvv9234qdr91mhbvrxv4"; 530 530 }; 531 531 meta.homepage = "https://github.com/ckipp01/coc-metals/"; 532 532 }; ··· 605 605 606 606 coc-rust-analyzer = buildVimPluginFrom2Nix { 607 607 pname = "coc-rust-analyzer"; 608 - version = "2020-05-27"; 608 + version = "2020-06-04"; 609 609 src = fetchFromGitHub { 610 610 owner = "fannheyward"; 611 611 repo = "coc-rust-analyzer"; 612 - rev = "95fe45bb82f88a5da5461a2925c7daac1ff24155"; 613 - sha256 = "1zczdz07fmcd7i05bz99m3a90v1dnbf4mjbh1iha0h2kyj0fj0sd"; 612 + rev = "acd5e7fca38dbc8ad8bfe9f187f1f4e6ee64ea88"; 613 + sha256 = "14qyszmyzykibdkdv38cypc8gmhaz0301prirjbpf2gijryk922b"; 614 614 }; 615 615 meta.homepage = "https://github.com/fannheyward/coc-rust-analyzer/"; 616 616 }; ··· 773 773 774 774 coc-yank = buildVimPluginFrom2Nix { 775 775 pname = "coc-yank"; 776 - version = "2020-03-17"; 776 + version = "2020-06-02"; 777 777 src = fetchFromGitHub { 778 778 owner = "neoclide"; 779 779 repo = "coc-yank"; 780 - rev = "6cb8bc7f2d41b9fb75c797c5805444badeff3dd9"; 781 - sha256 = "0s28684531ihczg5nf2m3f8z1vx9fw4yllfq7jz8g7ifw922ddxb"; 780 + rev = "7983c28509a61a7eb014e178525845797f5779ed"; 781 + sha256 = "1mjdd1kqvc5hzygjs2gv8vrpr3wc2a9590cr6vq0pfllxbkyqjng"; 782 782 }; 783 783 meta.homepage = "https://github.com/neoclide/coc-yank/"; 784 784 }; 785 785 786 786 coc-nvim = buildVimPluginFrom2Nix { 787 787 pname = "coc-nvim"; 788 - version = "2020-05-28"; 788 + version = "2020-06-04"; 789 789 src = fetchFromGitHub { 790 790 owner = "neoclide"; 791 791 repo = "coc.nvim"; 792 - rev = "60cd2a0935319ec7150006ce6457a9f10a5f04c2"; 793 - sha256 = "1wanp845yv07gkyvl4kv7bd1l46mz8wy0mw7bmcxi4d6qqfjpdrv"; 792 + rev = "d992e129997d9bda225a4e59ed5e5a57fca1896a"; 793 + sha256 = "0f4vsg2fbwn4jpfj8lv8ib8i8adzvr9inw4q861w87zssk65bi8g"; 794 794 }; 795 795 meta.homepage = "https://github.com/neoclide/coc.nvim/"; 796 796 }; ··· 821 821 822 822 command-t = buildVimPluginFrom2Nix { 823 823 pname = "command-t"; 824 - version = "2020-05-09"; 824 + version = "2020-06-02"; 825 825 src = fetchFromGitHub { 826 826 owner = "wincent"; 827 827 repo = "command-t"; 828 - rev = "9c7f81208a32fe4d26096d0d268ac6e802d945fd"; 829 - sha256 = "0jmwhlcycb1hp65d2g54mdd7xmpmvr33lm0130c9yk16mv2ia65i"; 828 + rev = "ea7a889bda2849ba87fc12053bf6dd14467d7b72"; 829 + sha256 = "02rswhlkgbapnjzqi2nv95ag08p9cjlqscwv6i17f9kvba929hkl"; 830 830 fetchSubmodules = true; 831 831 }; 832 832 meta.homepage = "https://github.com/wincent/command-t/"; ··· 918 918 919 919 csv-vim = buildVimPluginFrom2Nix { 920 920 pname = "csv-vim"; 921 - version = "2020-05-07"; 921 + version = "2020-05-29"; 922 922 src = fetchFromGitHub { 923 923 owner = "chrisbra"; 924 924 repo = "csv.vim"; 925 - rev = "361e9c1190c53d78446743be308709bb1c253981"; 926 - sha256 = "104qgkcvnvff59ydk18wwlsvsyw6l3nh6x49f1j2rpfmnlclamcs"; 925 + rev = "c84fd12a226d7b3b8d4b7e77ed5ddd1c5fa970ad"; 926 + sha256 = "1gjhbgwqf1zg813a3wcqj2x29gs4x7yc185mxi3lvnxghwj9j2i3"; 927 927 }; 928 928 meta.homepage = "https://github.com/chrisbra/csv.vim/"; 929 929 }; ··· 1014 1014 1015 1015 defx-nvim = buildVimPluginFrom2Nix { 1016 1016 pname = "defx-nvim"; 1017 - version = "2020-05-26"; 1017 + version = "2020-05-30"; 1018 1018 src = fetchFromGitHub { 1019 1019 owner = "Shougo"; 1020 1020 repo = "defx.nvim"; 1021 - rev = "56e0c4fd9ce28dce416420a0639792b0fc42115f"; 1022 - sha256 = "1nliphg9fjyga8p5b3flzqn7znxyazqakpzr03czzdm0vr96z9r1"; 1021 + rev = "5d8133aba89acaab3b532b15eed8e6cba77b1cd2"; 1022 + sha256 = "1gw73cybp1qxgnqfa6hn6g2ky30canhmrchf550kp5j8nflqa887"; 1023 1023 }; 1024 1024 meta.homepage = "https://github.com/Shougo/defx.nvim/"; 1025 1025 }; ··· 1062 1062 1063 1063 denite-nvim = buildVimPluginFrom2Nix { 1064 1064 pname = "denite-nvim"; 1065 - version = "2020-05-23"; 1065 + version = "2020-06-01"; 1066 1066 src = fetchFromGitHub { 1067 1067 owner = "Shougo"; 1068 1068 repo = "denite.nvim"; 1069 - rev = "09c22ad10f4adaca9845db106b7a46a80dd6f6ca"; 1070 - sha256 = "1prkahf7793bi4zr60vmjsky33bzn69wjgsfkdhvgjla8kyiwf6v"; 1069 + rev = "7c971aa2e40853b21f7967788e9ea3baa4e97ab2"; 1070 + sha256 = "04v3v14g7nnmc6rhz5vpppqgkk8z67am4nc6k8jwbrv61sq1ga6b"; 1071 1071 }; 1072 1072 meta.homepage = "https://github.com/Shougo/denite.nvim/"; 1073 1073 }; ··· 1209 1209 1210 1210 deoplete-lsp = buildVimPluginFrom2Nix { 1211 1211 pname = "deoplete-lsp"; 1212 - version = "2020-03-07"; 1212 + version = "2020-05-30"; 1213 1213 src = fetchFromGitHub { 1214 1214 owner = "Shougo"; 1215 1215 repo = "deoplete-lsp"; 1216 - rev = "6aa2bfd73a181fa6b55021264c4a8a83237ce558"; 1217 - sha256 = "1bcvfbv046fk34vnc1ly8civ3sibqlzli8vm2548dfxc55wcwsys"; 1216 + rev = "2994bf57fed476a5b9878e842b14b5b5c5b22211"; 1217 + sha256 = "0y22nay6qkn0sl74hlhhri3hjw5r3fwmmxby3j9q0avszlmq7352"; 1218 1218 }; 1219 1219 meta.homepage = "https://github.com/Shougo/deoplete-lsp/"; 1220 1220 }; ··· 1293 1293 1294 1294 deoplete-nvim = buildVimPluginFrom2Nix { 1295 1295 pname = "deoplete-nvim"; 1296 - version = "2020-05-26"; 1296 + version = "2020-06-02"; 1297 1297 src = fetchFromGitHub { 1298 1298 owner = "Shougo"; 1299 1299 repo = "deoplete.nvim"; 1300 - rev = "8aef99a951686488c03070d1cf1a2155837f5f1b"; 1301 - sha256 = "0rhni3hix26flls9i1ajwnpfdynkvqxll5rhi1256pvhy2nizamq"; 1300 + rev = "921688d72168e436c82f3d413a5de7d78369a0c7"; 1301 + sha256 = "01wpq4majnhh4lxmai0ix5dqvfxrbdsj2pic785x3kaqn4all31w"; 1302 1302 }; 1303 1303 meta.homepage = "https://github.com/Shougo/deoplete.nvim/"; 1304 1304 }; ··· 1353 1353 1354 1354 editorconfig-vim = buildVimPluginFrom2Nix { 1355 1355 pname = "editorconfig-vim"; 1356 - version = "2020-05-26"; 1356 + version = "2020-06-02"; 1357 1357 src = fetchFromGitHub { 1358 1358 owner = "editorconfig"; 1359 1359 repo = "editorconfig-vim"; 1360 - rev = "0818c7eb7ccd1cfb687161e68e55355c34694d28"; 1361 - sha256 = "1qiljz47b59sd3gyvr7l0kmb13hbi5204nnhjnpj8bd98kf676w7"; 1360 + rev = "0a3c1d8082e38a5ebadcba7bb3a608d88a9ff044"; 1361 + sha256 = "1w60rsij0ag74vjal2l75k4g4xv8438a0izvzpy5xir4bby2g7dz"; 1362 1362 fetchSubmodules = true; 1363 1363 }; 1364 1364 meta.homepage = "https://github.com/editorconfig/editorconfig-vim/"; ··· 1548 1548 1549 1549 fzf-vim = buildVimPluginFrom2Nix { 1550 1550 pname = "fzf-vim"; 1551 - version = "2020-05-23"; 1551 + version = "2020-06-01"; 1552 1552 src = fetchFromGitHub { 1553 1553 owner = "junegunn"; 1554 1554 repo = "fzf.vim"; 1555 - rev = "7a655179a43cd431862a2bf5d297d9e55fd3f814"; 1556 - sha256 = "1ivxkg60g3jlmd14ndwfqdkzm74naddfghafpv622dainv4qw20j"; 1555 + rev = "5aa5977d744d1183806079d307f023b0c5ceaaef"; 1556 + sha256 = "0b7lgdr66q99dfc73iwgb11pd4b465qmslfzqypsp8jamckk1jii"; 1557 1557 }; 1558 1558 meta.homepage = "https://github.com/junegunn/fzf.vim/"; 1559 1559 }; ··· 1572 1572 1573 1573 gentoo-syntax = buildVimPluginFrom2Nix { 1574 1574 pname = "gentoo-syntax"; 1575 - version = "2020-03-08"; 1575 + version = "2020-06-04"; 1576 1576 src = fetchFromGitHub { 1577 1577 owner = "gentoo"; 1578 1578 repo = "gentoo-syntax"; 1579 - rev = "42163237b57c56de9a24fe6549e46c805fab2bb3"; 1580 - sha256 = "1bg3ismjlp99drsfyrkjb137ypxmp0qpy8pp9ry9i8ljmnffbgal"; 1579 + rev = "632d0a72c83cd0ccf7f40cb64470dc84f51bdce2"; 1580 + sha256 = "0q5cj2zpcdxmwm8dcj0nbyffjs1a075fgqbang4s0ikangbhx586"; 1581 1581 }; 1582 1582 meta.homepage = "https://github.com/gentoo/gentoo-syntax/"; 1583 1583 }; ··· 1800 1800 1801 1801 indentLine = buildVimPluginFrom2Nix { 1802 1802 pname = "indentLine"; 1803 - version = "2020-03-06"; 1803 + version = "2020-05-29"; 1804 1804 src = fetchFromGitHub { 1805 1805 owner = "Yggdroot"; 1806 1806 repo = "indentLine"; 1807 - rev = "15aceda8c4eea621b66faa8673fca0b9fbe2f457"; 1808 - sha256 = "1icb1h811lp86hg4w8y8mmmsfm4c80n7m8r1wi58lnm60mjasas4"; 1807 + rev = "43dbd7092801637972b1d9fcecaaeee11f8e00cf"; 1808 + sha256 = "0qnzi19vb5qk773pc9v75wqm2ipdkcscljblla6gq05srm1h8x9d"; 1809 1809 }; 1810 1810 meta.homepage = "https://github.com/Yggdroot/indentLine/"; 1811 1811 }; ··· 1844 1844 sha256 = "13g9nqlqsjsxnrq37y33ldh41dw9q9dw07spfi7qwrskiwa0ayk7"; 1845 1845 }; 1846 1846 meta.homepage = "https://github.com/twerth/ir_black/"; 1847 + }; 1848 + 1849 + is-vim = buildVimPluginFrom2Nix { 1850 + pname = "is-vim"; 1851 + version = "2017-10-30"; 1852 + src = fetchFromGitHub { 1853 + owner = "haya14busa"; 1854 + repo = "is.vim"; 1855 + rev = "61d5029310c69bde700b2d46a454f80859b5af17"; 1856 + sha256 = "1nnf6y62mc0rj7hbrapfkmr91ypsqkzhwgpfx7pahz8m3a2324q6"; 1857 + }; 1858 + meta.homepage = "https://github.com/haya14busa/is.vim/"; 1847 1859 }; 1848 1860 1849 1861 jdaddy-vim = buildVimPluginFrom2Nix { ··· 2029 2041 2030 2042 lh-brackets = buildVimPluginFrom2Nix { 2031 2043 pname = "lh-brackets"; 2032 - version = "2020-05-16"; 2044 + version = "2020-06-03"; 2033 2045 src = fetchFromGitHub { 2034 2046 owner = "LucHermitte"; 2035 2047 repo = "lh-brackets"; 2036 - rev = "2f70a30a342969e8cf4e21c965d523ff456173a9"; 2037 - sha256 = "0qpiqrcr9azamvm8mzcfb3fbp7rxgbhi2bdc926i9a7psazgmyfl"; 2048 + rev = "d6ea4b24b14f3ead29dc8df2e2d942c2b0287948"; 2049 + sha256 = "0gh21v0gnwhq2gim1hhfd0376zk4jdhfn9dldczxvzipxw3jaknr"; 2038 2050 }; 2039 2051 meta.homepage = "https://github.com/LucHermitte/lh-brackets/"; 2040 2052 }; 2041 2053 2042 2054 lh-vim-lib = buildVimPluginFrom2Nix { 2043 2055 pname = "lh-vim-lib"; 2044 - version = "2020-05-18"; 2056 + version = "2020-06-03"; 2045 2057 src = fetchFromGitHub { 2046 2058 owner = "LucHermitte"; 2047 2059 repo = "lh-vim-lib"; 2048 - rev = "03673b75c2b2ba8d25c1323804725a6eb9bbb995"; 2049 - sha256 = "0nk3s916k7vv9cgpf4rxf5qc4bmsf74mxa59fdi8wlzda0m5dyhk"; 2060 + rev = "448982501112f69f8edb7fb7bb61573091036366"; 2061 + sha256 = "1k4man0jm8pkvb2f8l2f743ipwiz76ljzzn1hi4pvs0wncdr7k6q"; 2050 2062 }; 2051 2063 meta.homepage = "https://github.com/LucHermitte/lh-vim-lib/"; 2052 2064 }; ··· 2379 2391 pname = "NeoSolarized"; 2380 2392 version = "2020-03-10"; 2381 2393 src = fetchFromGitHub { 2382 - owner = "icymind"; 2394 + owner = "overcache"; 2383 2395 repo = "NeoSolarized"; 2384 2396 rev = "70609c44215c8d2c43ad8c631296caae08a9c8d4"; 2385 2397 sha256 = "0bxrm2vm3z1y37sm6m2hdn72g2sw31dx1xhmjvd0ng72cnp84d9k"; 2386 2398 }; 2387 - meta.homepage = "https://github.com/icymind/NeoSolarized/"; 2399 + meta.homepage = "https://github.com/overcache/NeoSolarized/"; 2388 2400 }; 2389 2401 2390 2402 neoterm = buildVimPluginFrom2Nix { 2391 2403 pname = "neoterm"; 2392 - version = "2020-04-29"; 2404 + version = "2020-05-30"; 2393 2405 src = fetchFromGitHub { 2394 2406 owner = "kassio"; 2395 2407 repo = "neoterm"; 2396 - rev = "667f02bc417d2a4669502d1fc6876684882d8ba9"; 2397 - sha256 = "0xa4w935hfbs8nqw4aqw7ihasw4rlsqjx2i92pi1x5w8d40jnws1"; 2408 + rev = "d6667d8fca8425753d7da215f57e1a0e936e75de"; 2409 + sha256 = "1wmsqnhbd438xs8dp2jrkk7fhzzi7w1l66jqwfwz6sxl0ayc3k7y"; 2398 2410 }; 2399 2411 meta.homepage = "https://github.com/kassio/neoterm/"; 2400 2412 }; ··· 2449 2461 2450 2462 nerdtree = buildVimPluginFrom2Nix { 2451 2463 pname = "nerdtree"; 2452 - version = "2020-05-26"; 2464 + version = "2020-06-01"; 2453 2465 src = fetchFromGitHub { 2454 2466 owner = "preservim"; 2455 2467 repo = "nerdtree"; 2456 - rev = "052b1f00a0ef14b0019f4d0cda9906ba93f9a0d6"; 2457 - sha256 = "1wn0gf8cqhmv23llhydvkhd638b3n5ya8fa6r74gm40f9h3qcp85"; 2468 + rev = "d48ab70721d4f688ed34bd5939e2d6f4c89548c5"; 2469 + sha256 = "0rd228ks4gppskcvz6cj94gnbd9wykic8f4ilc9smaqw817gq20s"; 2458 2470 }; 2459 2471 meta.homepage = "https://github.com/preservim/nerdtree/"; 2460 2472 }; ··· 2497 2509 2498 2510 NrrwRgn = buildVimPluginFrom2Nix { 2499 2511 pname = "NrrwRgn"; 2500 - version = "2020-04-21"; 2512 + version = "2020-05-29"; 2501 2513 src = fetchFromGitHub { 2502 2514 owner = "chrisbra"; 2503 2515 repo = "NrrwRgn"; 2504 - rev = "a558325a2d0cca810520ed2b62e0c0e543e97bf6"; 2505 - sha256 = "1ngwyga0pslkw1d5qwz98zz8axfwc0mvxig5yp59gra9awgk6nw8"; 2516 + rev = "82a0fc6a3415db9a891f9d9f19b512041c865109"; 2517 + sha256 = "00fd466i5860bazd4pj69k8piicgckxj68lkn2l7haawj9chslzs"; 2506 2518 }; 2507 2519 meta.homepage = "https://github.com/chrisbra/NrrwRgn/"; 2508 2520 }; ··· 2557 2569 2558 2570 nvim-lsp = buildVimPluginFrom2Nix { 2559 2571 pname = "nvim-lsp"; 2560 - version = "2020-05-24"; 2572 + version = "2020-06-02"; 2561 2573 src = fetchFromGitHub { 2562 2574 owner = "neovim"; 2563 2575 repo = "nvim-lsp"; 2564 - rev = "54f4f823a27ffa8f9e6c308d550888f3ae21373e"; 2565 - sha256 = "19v8gwq6ym0ipia039x6xw00xlwrhrmm1bw8s5v5d6j1wl1mbcmz"; 2576 + rev = "a7fdf268b1c51f6395900e437060728701aa8b77"; 2577 + sha256 = "04v1g4sa6dccaffrlkmyh410ppza5zlrnrapf9c3sfj6bmsr4jd3"; 2566 2578 }; 2567 2579 meta.homepage = "https://github.com/neovim/nvim-lsp/"; 2568 2580 }; ··· 3266 3278 3267 3279 tagbar = buildVimPluginFrom2Nix { 3268 3280 pname = "tagbar"; 3269 - version = "2020-05-05"; 3281 + version = "2020-05-30"; 3270 3282 src = fetchFromGitHub { 3271 3283 owner = "majutsushi"; 3272 3284 repo = "tagbar"; 3273 - rev = "2a1486447aa62e47faeb98e43fe75c50007870b3"; 3274 - sha256 = "0003l09xhdyyq9m0y7hs1nccv3vdmz64qd3ra3rl6lqigzv8v01n"; 3285 + rev = "a36880be2217814b7034f05eb0f402e8183befc9"; 3286 + sha256 = "16rj8pv8b9knbxi2967h96kgwp4r631kmpxdy74xsf938z4cya0j"; 3275 3287 }; 3276 3288 meta.homepage = "https://github.com/majutsushi/tagbar/"; 3277 3289 }; ··· 3795 3807 3796 3808 vim-airline = buildVimPluginFrom2Nix { 3797 3809 pname = "vim-airline"; 3798 - version = "2020-05-27"; 3810 + version = "2020-05-31"; 3799 3811 src = fetchFromGitHub { 3800 3812 owner = "vim-airline"; 3801 3813 repo = "vim-airline"; 3802 - rev = "c744fb81b657417512af20063a36e7cb1ecd4f5c"; 3803 - sha256 = "1x55gkqgvy9k2wmcs5y1jmzqni6xd7fjh5269c3465br3hhzlgh2"; 3814 + rev = "d221dc531298f467a6901861b0360741c2a387b0"; 3815 + sha256 = "0w4lwpynn5cj9si3apyfmxb8x8hv0acggsyfvmhpi41638sz2310"; 3804 3816 }; 3805 3817 meta.homepage = "https://github.com/vim-airline/vim-airline/"; 3806 3818 }; ··· 3867 3879 3868 3880 vim-autoformat = buildVimPluginFrom2Nix { 3869 3881 pname = "vim-autoformat"; 3870 - version = "2020-04-03"; 3882 + version = "2020-05-29"; 3871 3883 src = fetchFromGitHub { 3872 3884 owner = "Chiel92"; 3873 3885 repo = "vim-autoformat"; 3874 - rev = "555c956db3bdd8ae6f1aa5af1c5fd37eac749e6a"; 3875 - sha256 = "0dhxa9jrhahqs1wh41115w8r3xcczbjpvnj65ldzs7q9vc4n12xq"; 3886 + rev = "f116a3b86cb3e9fbcd8563cce4958759610d8f51"; 3887 + sha256 = "1vamldn3y9pima18ryrrzn2mz1czzzadkiiklcrcl104v9mhv4am"; 3876 3888 }; 3877 3889 meta.homepage = "https://github.com/Chiel92/vim-autoformat/"; 3878 3890 }; ··· 4011 4023 4012 4024 vim-codefmt = buildVimPluginFrom2Nix { 4013 4025 pname = "vim-codefmt"; 4014 - version = "2020-05-08"; 4026 + version = "2020-06-02"; 4015 4027 src = fetchFromGitHub { 4016 4028 owner = "google"; 4017 4029 repo = "vim-codefmt"; 4018 - rev = "57d6fbb4ab3480ab0b0f4c10ecc7c14eb44d94bc"; 4019 - sha256 = "0a8w2cb1aj4764hbdxnjpnpdl6xf6slsz4f19lbm8fdsq0v3izk8"; 4030 + rev = "e083709f482332e5ff765f4d7b7901d51ddc9ef4"; 4031 + sha256 = "0d46h4jx01mib4wyj60qx4r34y201gaj1vpkb48pkw9qlsaqs31i"; 4020 4032 }; 4021 4033 meta.homepage = "https://github.com/google/vim-codefmt/"; 4022 4034 }; ··· 4203 4215 4204 4216 vim-devicons = buildVimPluginFrom2Nix { 4205 4217 pname = "vim-devicons"; 4206 - version = "2020-05-28"; 4218 + version = "2020-05-30"; 4207 4219 src = fetchFromGitHub { 4208 4220 owner = "ryanoasis"; 4209 4221 repo = "vim-devicons"; 4210 - rev = "8a5133cb5ba229fa80055a031b6070b1651cd102"; 4211 - sha256 = "0lxvl378gjwaywmj5fskr8bzdchlh0g33p79ja0pgzs6qffg4jj2"; 4222 + rev = "15b532ebd4455d9d099e9ccebab09915e0562754"; 4223 + sha256 = "0cfiwdaj43fx2gq7916i98iyn3ky79d359ylgpznczn88k37s1wi"; 4212 4224 }; 4213 4225 meta.homepage = "https://github.com/ryanoasis/vim-devicons/"; 4214 4226 }; ··· 4539 4551 4540 4552 vim-fugitive = buildVimPluginFrom2Nix { 4541 4553 pname = "vim-fugitive"; 4542 - version = "2020-05-28"; 4554 + version = "2020-05-31"; 4543 4555 src = fetchFromGitHub { 4544 4556 owner = "tpope"; 4545 4557 repo = "vim-fugitive"; 4546 - rev = "5d32f7528988644c3b4a9491a9a4b37ccbd1aa62"; 4547 - sha256 = "1h544c7h53fjn9cnvx67p1yays6147v0d445h60n6zwz02zgr4q1"; 4558 + rev = "27a5c3abd211c2784513dab4db082fa414ad0967"; 4559 + sha256 = "18rvp600vk0anbzxdgcw3kdswqr3100b3jgnmz6c2k5c50wz37rm"; 4548 4560 }; 4549 4561 meta.homepage = "https://github.com/tpope/vim-fugitive/"; 4550 4562 }; 4551 4563 4552 4564 vim-ghost = buildVimPluginFrom2Nix { 4553 4565 pname = "vim-ghost"; 4554 - version = "2020-05-20"; 4566 + version = "2020-06-04"; 4555 4567 src = fetchFromGitHub { 4556 4568 owner = "raghur"; 4557 4569 repo = "vim-ghost"; 4558 - rev = "795b24dd248d507b88e30baadc46080ace07cdea"; 4559 - sha256 = "1g0gblkwba7fd4jgkp2y6rsdld7zhhwf7m2fv63j0aj5fhr74q5r"; 4570 + rev = "fd3665df734c1f8d3620b11fc8bdfacb2faae35e"; 4571 + sha256 = "0p1y5g9fj58m48z9c6vdis7d4zajlv9j0y8065rmivws3df9n50j"; 4560 4572 }; 4561 4573 meta.homepage = "https://github.com/raghur/vim-ghost/"; 4562 4574 }; ··· 4599 4611 4600 4612 vim-gitgutter = buildVimPluginFrom2Nix { 4601 4613 pname = "vim-gitgutter"; 4602 - version = "2020-05-01"; 4614 + version = "2020-05-29"; 4603 4615 src = fetchFromGitHub { 4604 4616 owner = "airblade"; 4605 4617 repo = "vim-gitgutter"; 4606 - rev = "b356cc9a7da08ebeb919cd04b2831dad71a34d38"; 4607 - sha256 = "0y13nbrfank0rqsq5pf1cfcrrfapfvqinhbww97lxhs9clv44kny"; 4618 + rev = "9784226ba766662d298554a5c66fd938497f2233"; 4619 + sha256 = "19f28c3wasgck78xqdygsyiwv17qqh69nkn9n1gajcbmbr55lhzn"; 4608 4620 }; 4609 4621 meta.homepage = "https://github.com/airblade/vim-gitgutter/"; 4610 4622 }; ··· 4635 4647 4636 4648 vim-go = buildVimPluginFrom2Nix { 4637 4649 pname = "vim-go"; 4638 - version = "2020-05-28"; 4650 + version = "2020-05-31"; 4639 4651 src = fetchFromGitHub { 4640 4652 owner = "fatih"; 4641 4653 repo = "vim-go"; 4642 - rev = "9d76bb022e09c1d7c26a71748aa523453da9a764"; 4643 - sha256 = "0yi0m25m1vh2h4gfqj04zf6llqg6cinxd96c7q42h1fa9w8kx93s"; 4654 + rev = "8e72eef0b35839db0a028a37bd28debc20c1201b"; 4655 + sha256 = "0rpay08m3q0syvw9ks45b3cvggghi1350h7dp87bx24jd3dqvdvf"; 4644 4656 }; 4645 4657 meta.homepage = "https://github.com/fatih/vim-go/"; 4646 4658 }; ··· 4789 4801 meta.homepage = "https://github.com/alx741/vim-hindent/"; 4790 4802 }; 4791 4803 4804 + vim-hocon = buildVimPluginFrom2Nix { 4805 + pname = "vim-hocon"; 4806 + version = "2017-09-08"; 4807 + src = fetchFromGitHub { 4808 + owner = "GEverding"; 4809 + repo = "vim-hocon"; 4810 + rev = "bb8fb14e00f8fc1eec27dd39dcc605aac43328a3"; 4811 + sha256 = "0w6ckm931zpm1k3w02gl58hgfxzfy53sgcc9m8jz3vgi3zz0vki2"; 4812 + }; 4813 + meta.homepage = "https://github.com/GEverding/vim-hocon/"; 4814 + }; 4815 + 4792 4816 vim-hoogle = buildVimPluginFrom2Nix { 4793 4817 pname = "vim-hoogle"; 4794 4818 version = "2018-03-04"; ··· 4823 4847 sha256 = "09kqzaqa4jdh31q0a3nxbx9li7zg890qxh68rfzblzyx22xv4mka"; 4824 4848 }; 4825 4849 meta.homepage = "https://github.com/vim-utils/vim-husk/"; 4850 + }; 4851 + 4852 + vim-hybrid = buildVimPluginFrom2Nix { 4853 + pname = "vim-hybrid"; 4854 + version = "2016-01-05"; 4855 + src = fetchFromGitHub { 4856 + owner = "w0ng"; 4857 + repo = "vim-hybrid"; 4858 + rev = "cc58baabeabc7b83768e25b852bf89c34756bf90"; 4859 + sha256 = "1c3q39121hiw85r9ymiyhz5zsf6bl9pwk4pgj6nh6ckwns4cgcmw"; 4860 + }; 4861 + meta.homepage = "https://github.com/w0ng/vim-hybrid/"; 4826 4862 }; 4827 4863 4828 4864 vim-hybrid-material = buildVimPluginFrom2Nix { ··· 5188 5224 5189 5225 vim-lsc = buildVimPluginFrom2Nix { 5190 5226 pname = "vim-lsc"; 5191 - version = "2020-05-29"; 5227 + version = "2020-06-02"; 5192 5228 src = fetchFromGitHub { 5193 5229 owner = "natebosch"; 5194 5230 repo = "vim-lsc"; 5195 - rev = "22ad7433b35b194015856d5b41037b752e192764"; 5196 - sha256 = "1jww2x2cl9pfgjxwcmcl829fvhxqagn1fcnk4d5hrgg7w6k4c10g"; 5231 + rev = "baa44d450043cc020e1d6f0609d0e081bbcc6f9e"; 5232 + sha256 = "07m2wqich31pxp9jgh3fzjqqdm7vdjh8rjf67d4l6kkf13dw89yh"; 5197 5233 }; 5198 5234 meta.homepage = "https://github.com/natebosch/vim-lsc/"; 5199 5235 }; 5200 5236 5201 5237 vim-maktaba = buildVimPluginFrom2Nix { 5202 5238 pname = "vim-maktaba"; 5203 - version = "2020-05-28"; 5239 + version = "2020-05-29"; 5204 5240 src = fetchFromGitHub { 5205 5241 owner = "google"; 5206 5242 repo = "vim-maktaba"; 5207 - rev = "7260313ed17b2cd11b18d817d4afc8fb8cb6f3f3"; 5208 - sha256 = "0nn8c1kyg0s41id46g7s9qklnnxck8xvnvsd3gpak5ii1rxpzrsh"; 5243 + rev = "2636a0fabaae80e3bebdb3c571220aebf875dfcf"; 5244 + sha256 = "1vcc8gaikbgdq1k4f3jdjrmlwad1z44g3biifgqyp0sgd7bjd9lp"; 5209 5245 }; 5210 5246 meta.homepage = "https://github.com/google/vim-maktaba/"; 5211 5247 }; ··· 5318 5354 meta.homepage = "https://github.com/terryma/vim-multiple-cursors/"; 5319 5355 }; 5320 5356 5357 + vim-mundo = buildVimPluginFrom2Nix { 5358 + pname = "vim-mundo"; 5359 + version = "2020-05-06"; 5360 + src = fetchFromGitHub { 5361 + owner = "simnalamburt"; 5362 + repo = "vim-mundo"; 5363 + rev = "046fc0664b953ab17153da379df0b9fd34b85ec1"; 5364 + sha256 = "0np83qa95cfg1059r4iaf31sfhs86241jzkmw026gdja9s30q3m1"; 5365 + }; 5366 + meta.homepage = "https://github.com/simnalamburt/vim-mundo/"; 5367 + }; 5368 + 5321 5369 vim-nerdtree-tabs = buildVimPluginFrom2Nix { 5322 5370 pname = "vim-nerdtree-tabs"; 5323 5371 version = "2018-12-21"; ··· 5376 5424 sha256 = "0pwdfwws1dj3705m00ghw3dvym5zbm00bfsj023gmbp6vr8wn6yi"; 5377 5425 }; 5378 5426 meta.homepage = "https://github.com/LnL7/vim-nix/"; 5427 + }; 5428 + 5429 + vim-numbertoggle = buildVimPluginFrom2Nix { 5430 + pname = "vim-numbertoggle"; 5431 + version = "2017-10-26"; 5432 + src = fetchFromGitHub { 5433 + owner = "jeffkreeftmeijer"; 5434 + repo = "vim-numbertoggle"; 5435 + rev = "cfaecb9e22b45373bb4940010ce63a89073f6d8b"; 5436 + sha256 = "1rrmvv7ali50rpbih1s0fj00a3hjspwinx2y6nhwac7bjsnqqdwi"; 5437 + }; 5438 + meta.homepage = "https://github.com/jeffkreeftmeijer/vim-numbertoggle/"; 5379 5439 }; 5380 5440 5381 5441 vim-obsession = buildVimPluginFrom2Nix { ··· 5584 5644 5585 5645 vim-plug = buildVimPluginFrom2Nix { 5586 5646 pname = "vim-plug"; 5587 - version = "2020-05-06"; 5647 + version = "2020-06-03"; 5588 5648 src = fetchFromGitHub { 5589 5649 owner = "junegunn"; 5590 5650 repo = "vim-plug"; 5591 - rev = "71c41fccf5ca42081d4d49aa1ea2f71c694bc4cf"; 5592 - sha256 = "1cp8qw1fblp26v9hjvd00bl2kcjqi44xw30aclxcqis6pfj1yvv0"; 5651 + rev = "6583b990321f03500505dc43a3f62cbbc7369862"; 5652 + sha256 = "1k9y119xwb84fgsyyp1npjh5z1wlbbm1922n411h70cfa4928rfh"; 5593 5653 }; 5594 5654 meta.homepage = "https://github.com/junegunn/vim-plug/"; 5595 5655 }; ··· 5608 5668 5609 5669 vim-polyglot = buildVimPluginFrom2Nix { 5610 5670 pname = "vim-polyglot"; 5611 - version = "2020-05-28"; 5671 + version = "2020-06-01"; 5612 5672 src = fetchFromGitHub { 5613 5673 owner = "sheerun"; 5614 5674 repo = "vim-polyglot"; 5615 - rev = "f0f49cf0fa8bbcb7f84e3ffe699a934142498b14"; 5616 - sha256 = "1fpiwjn16lvzcghsjbcak1hf0fqgknfyimbbw3pw4dcnvzv5w03a"; 5675 + rev = "5b3866302755da9e5a917ca42a38a4a03fb5f3e5"; 5676 + sha256 = "0v6ll98j44hgmczhl6cp4rw734x582iz7942cw5jmbp7wg83nz88"; 5617 5677 }; 5618 5678 meta.homepage = "https://github.com/sheerun/vim-polyglot/"; 5619 5679 }; ··· 5668 5728 5669 5729 vim-ps1 = buildVimPluginFrom2Nix { 5670 5730 pname = "vim-ps1"; 5671 - version = "2020-03-30"; 5731 + version = "2020-06-03"; 5672 5732 src = fetchFromGitHub { 5673 5733 owner = "PProvost"; 5674 5734 repo = "vim-ps1"; 5675 - rev = "9fdf92846fbeb8445e535cf0c5bdb4b1dce4a506"; 5676 - sha256 = "0w98zcjvb64fhd6ahy3cqrs4y7zacak9nzpkkhr03l6zzbqb5kz4"; 5735 + rev = "9d52746c3f879aa1aca4deb46edd63823d76d89d"; 5736 + sha256 = "1yx1rnpln0lxvf6pbdn8yyxiyhi7rfl8wl94kd8djk51h5lhq1n3"; 5677 5737 }; 5678 5738 meta.homepage = "https://github.com/PProvost/vim-ps1/"; 5679 5739 }; ··· 6028 6088 6029 6089 vim-snippets = buildVimPluginFrom2Nix { 6030 6090 pname = "vim-snippets"; 6031 - version = "2020-05-16"; 6091 + version = "2020-06-02"; 6032 6092 src = fetchFromGitHub { 6033 6093 owner = "honza"; 6034 6094 repo = "vim-snippets"; 6035 - rev = "087d3e7c72912baeb6b1d7ba626e61d50092c848"; 6036 - sha256 = "1vir3sl2px0m4pr2z013mfzwagrh9wqkj3wagysjvm779l462407"; 6095 + rev = "900bf93c6680e38ce568dba26c3f48b4365ac730"; 6096 + sha256 = "1gxqmvr6hz7vblrji2dz2l1x18264ainbl70j60yfx3vjp5aa9vq"; 6037 6097 }; 6038 6098 meta.homepage = "https://github.com/honza/vim-snippets/"; 6039 6099 }; ··· 6086 6146 meta.homepage = "https://github.com/tpope/vim-speeddating/"; 6087 6147 }; 6088 6148 6149 + vim-spirv = buildVimPluginFrom2Nix { 6150 + pname = "vim-spirv"; 6151 + version = "2019-11-20"; 6152 + src = fetchFromGitHub { 6153 + owner = "kbenzie"; 6154 + repo = "vim-spirv"; 6155 + rev = "e71404f92990aa4718925ade568427c0d8631469"; 6156 + sha256 = "0aimpcz6vvrkcfgsj0xp12xdy1l83n387rsy74dzk23a220d59na"; 6157 + }; 6158 + meta.homepage = "https://github.com/kbenzie/vim-spirv/"; 6159 + }; 6160 + 6089 6161 vim-startify = buildVimPluginFrom2Nix { 6090 6162 pname = "vim-startify"; 6091 6163 version = "2020-04-18"; ··· 6220 6292 6221 6293 vim-test = buildVimPluginFrom2Nix { 6222 6294 pname = "vim-test"; 6223 - version = "2020-05-26"; 6295 + version = "2020-06-03"; 6224 6296 src = fetchFromGitHub { 6225 6297 owner = "vim-test"; 6226 6298 repo = "vim-test"; 6227 - rev = "b882783760b954144dda5be7ad6cd4bdefd013fb"; 6228 - sha256 = "0s0dlgjkkxajkfnpihc09py0qbbamibhalsv2vdvwcqva02xrylx"; 6299 + rev = "e819de903fe10fdcbb3714f3e96bafd918e4d117"; 6300 + sha256 = "05jh89rgd4p6mkryv5dm83jhxfmg1k77rk4zq35i8dy8i6cvi41z"; 6229 6301 }; 6230 6302 meta.homepage = "https://github.com/vim-test/vim-test/"; 6231 6303 }; ··· 6326 6398 meta.homepage = "https://github.com/tmux-plugins/vim-tmux/"; 6327 6399 }; 6328 6400 6401 + vim-tmux-clipboard = buildVimPluginFrom2Nix { 6402 + pname = "vim-tmux-clipboard"; 6403 + version = "2019-04-07"; 6404 + src = fetchFromGitHub { 6405 + owner = "roxma"; 6406 + repo = "vim-tmux-clipboard"; 6407 + rev = "47187740b88f9dab213f44678800cc797223808e"; 6408 + sha256 = "1a7rpbvb7dgjfnrh95zg2ia6iiz2mz2xps31msb8h14hcj6dsv6y"; 6409 + }; 6410 + meta.homepage = "https://github.com/roxma/vim-tmux-clipboard/"; 6411 + }; 6412 + 6329 6413 vim-tmux-focus-events = buildVimPluginFrom2Nix { 6330 6414 pname = "vim-tmux-focus-events"; 6331 6415 version = "2019-12-09"; ··· 6448 6532 6449 6533 vim-visual-multi = buildVimPluginFrom2Nix { 6450 6534 pname = "vim-visual-multi"; 6451 - version = "2020-05-28"; 6535 + version = "2020-05-30"; 6452 6536 src = fetchFromGitHub { 6453 6537 owner = "mg979"; 6454 6538 repo = "vim-visual-multi"; 6455 - rev = "cdcaa75d5a6054c7c69b6ebbaa4dff2fce6f96ed"; 6456 - sha256 = "0mszzkmi4kgmf6qjh5f2mr9y1b3p4jzvlsykvzavz8zb55yy4vkx"; 6539 + rev = "40991d51a6a3b22d56eefe9f6145602dfe1d494b"; 6540 + sha256 = "0kawg12w7ssk58lv6ppv85c75x4af7dbkw9ngx7n91y1f1wkinjj"; 6457 6541 }; 6458 6542 meta.homepage = "https://github.com/mg979/vim-visual-multi/"; 6459 6543 }; ··· 6700 6784 6701 6785 vimtex = buildVimPluginFrom2Nix { 6702 6786 pname = "vimtex"; 6703 - version = "2020-05-25"; 6787 + version = "2020-06-02"; 6704 6788 src = fetchFromGitHub { 6705 6789 owner = "lervag"; 6706 6790 repo = "vimtex"; 6707 - rev = "666191bc563be6716af6e167404dccb27f2fb8d1"; 6708 - sha256 = "03gc4w57j5xpcnmj60qrsc2qbrkvpmn9cfzz8xwha26cpngrwv9q"; 6791 + rev = "7ef9c50aaf110debb54a8b1f4bafcb34ec86a623"; 6792 + sha256 = "1i9phcxb29x14n202971vflqlwd9y2wa74v8aic4xhvqb5rli8as"; 6709 6793 }; 6710 6794 meta.homepage = "https://github.com/lervag/vimtex/"; 6711 6795 };
+8 -1
pkgs/misc/vim-plugins/vim-plugin-names
··· 111 111 fszymanski/deoplete-emoji 112 112 garbas/vim-snipmate 113 113 gentoo/gentoo-syntax 114 + GEverding/vim-hocon 114 115 gibiansky/vim-textobj-haskell 115 116 glts/vim-textobj-comment 116 117 godlygeek/csapprox ··· 130 131 hashivim/vim-terraform 131 132 haya14busa/incsearch-easymotion.vim 132 133 haya14busa/incsearch.vim 134 + haya14busa/is.vim 133 135 haya14busa/vim-asterisk 134 136 heavenshell/vim-jsdoc 135 137 hecal3/vim-leader-guide ··· 141 143 hsitz/VimOrganizer 142 144 iamcco/coc-spell-checker 143 145 ianks/vim-tsx 144 - icymind/NeoSolarized 145 146 idris-hackers/idris-vim 146 147 Inazuma110/deoplete-greek 147 148 inkarkat/vim-SyntaxRange ··· 160 161 jeetsukumaran/vim-buffergator 161 162 jeetsukumaran/vim-indentwise 162 163 jeffkreeftmeijer/neovim-sensible 164 + jeffkreeftmeijer/vim-numbertoggle 163 165 jelera/vim-javascript-syntax 164 166 jgdavey/tslime.vim 165 167 jhradilek/vim-docbk ··· 206 208 kana/vim-textobj-function 207 209 kana/vim-textobj-user 208 210 kassio/neoterm 211 + kbenzie/vim-spirv 209 212 kchmck/vim-coffee-script 210 213 KeitaNakamura/neodark.vim 211 214 keith/swift.vim ··· 366 369 osyo-manga/vim-anzu 367 370 osyo-manga/vim-textobj-multiblock 368 371 osyo-manga/vim-watchdogs 372 + overcache/NeoSolarized 369 373 pangloss/vim-javascript 370 374 parsonsmatt/intero-neovim 371 375 pearofducks/ansible-vim ··· 404 408 roxma/nvim-cm-racer 405 409 roxma/nvim-completion-manager 406 410 roxma/nvim-yarp 411 + roxma/vim-tmux-clipboard 407 412 RRethy/vim-illuminate 408 413 rust-lang/rust.vim 409 414 ryanoasis/vim-devicons ··· 437 442 Shougo/vimshell.vim 438 443 shumphrey/fugitive-gitlab.vim 439 444 sickill/vim-pasta 445 + simnalamburt/vim-mundo 440 446 SirVer/ultisnips 441 447 sjl/gundo.vim 442 448 sjl/splice.vim ··· 560 566 vmchale/ats-vim 561 567 vmchale/dhall-vim 562 568 VundleVim/Vundle.vim 569 + w0ng/vim-hybrid 563 570 wakatime/vim-wakatime 564 571 wannesm/wmgraphviz.vim 565 572 wellle/targets.vim
+5 -10
pkgs/misc/vscode-extensions/vscode-utils.nix
··· 1 1 { stdenv, lib, buildEnv, writeShellScriptBin, fetchurl, vscode, unzip, jq }: 2 2 let 3 - extendedPkgVersion = lib.getVersion vscode; 4 - extendedPkgName = lib.removeSuffix "-${extendedPkgVersion}" vscode.name; 5 - 6 - 7 3 buildVscodeExtension = a@{ 8 4 name, 9 - namePrefix ? "${extendedPkgName}-extension-", 10 5 src, 11 6 # Same as "Unique Identifier" on the extension's web page. 12 7 # For the moment, only serve as unique extension dir. ··· 18 13 buildInputs ? [], 19 14 ... 20 15 }: 21 - stdenv.mkDerivation ((removeAttrs a [ "vscodeExtUniqueId" ]) // { 16 + stdenv.mkDerivation ((removeAttrs a [ "vscodeExtUniqueId" ]) // { 22 17 23 - name = namePrefix + name; 18 + name = "vscode-extension-${name}"; 24 19 25 20 inherit vscodeExtUniqueId; 26 21 inherit configurePhase buildPhase dontPatchELF dontStrip; 27 22 28 - installPrefix = "share/${extendedPkgName}/extensions/${vscodeExtUniqueId}"; 23 + installPrefix = "share/vscode/extensions/${vscodeExtUniqueId}"; 29 24 30 25 buildInputs = [ unzip ] ++ buildInputs; 31 26 ··· 80 75 vscodeDefault = vscode; 81 76 }; 82 77 83 - 78 + 84 79 vscodeExts2nix = import ./vscodeExts2nix.nix { 85 80 inherit lib writeShellScriptBin; 86 81 vscodeDefault = vscode; ··· 90 85 inherit lib buildEnv writeShellScriptBin extensionsFromVscodeMarketplace jq; 91 86 vscodeDefault = vscode; 92 87 }; 93 - in 88 + in 94 89 { 95 90 inherit fetchVsixFromVscodeMarketplace buildVscodeExtension 96 91 buildVscodeMarketplaceExtension extensionFromVscodeMarketplace
-27
pkgs/os-specific/linux/cgmanager/default.nix
··· 1 - { stdenv, fetchurl, pkgconfig, libnih, dbus, pam, popt }: 2 - 3 - stdenv.mkDerivation rec { 4 - pname = "cgmanager"; 5 - version = "0.42"; 6 - 7 - src = fetchurl { 8 - url = "https://linuxcontainers.org/downloads/${pname}/${pname}-${version}.tar.gz"; 9 - sha256 = "15np08h9jrvc1y1iafr8v654mzgsv5hshzc0n4p3pbf0rkra3h7c"; 10 - }; 11 - 12 - nativeBuildInputs = [ pkgconfig ]; 13 - buildInputs = [ libnih dbus pam popt ]; 14 - 15 - configureFlags = [ 16 - "--with-init-script=systemd" 17 - "--sysconfdir=/etc" 18 - "--localstatedir=/var" 19 - ]; 20 - 21 - meta = with stdenv.lib; { 22 - homepage = "https://linuxcontainers.org/cgmanager/introduction/"; 23 - description = "A central privileged daemon that manages all your cgroups"; 24 - license = licenses.lgpl21; 25 - platforms = platforms.linux; 26 - }; 27 - }
+12 -12
pkgs/os-specific/linux/kernel/hardened/patches.json
··· 1 1 { 2 2 "4.14": { 3 - "name": "linux-hardened-4.14.182.a.patch", 4 - "sha256": "1kkchcv3qkm41rgscm12ii852q2846crbpvafywz31qg62lb6qig", 5 - "url": "https://github.com/anthraxx/linux-hardened/releases/download/4.14.182.a/linux-hardened-4.14.182.a.patch" 3 + "name": "linux-hardened-4.14.183.a.patch", 4 + "sha256": "0k9dg37q3hcm13iyw662indwy23aylc03ldqfn7613c7ymqmbzj7", 5 + "url": "https://github.com/anthraxx/linux-hardened/releases/download/4.14.183.a/linux-hardened-4.14.183.a.patch" 6 6 }, 7 7 "4.19": { 8 - "name": "linux-hardened-4.19.125.a.patch", 9 - "sha256": "1dhb8syp4j7hc4mx3s7c2x0gxil5dw7jh0swfqzjm02npbwpp19r", 10 - "url": "https://github.com/anthraxx/linux-hardened/releases/download/4.19.125.a/linux-hardened-4.19.125.a.patch" 8 + "name": "linux-hardened-4.19.126.a.patch", 9 + "sha256": "1wr4spaqgh404w0fqpys8xwj11as86j0cfzb903c0rx6lhqfp6sf", 10 + "url": "https://github.com/anthraxx/linux-hardened/releases/download/4.19.126.a/linux-hardened-4.19.126.a.patch" 11 11 }, 12 12 "5.4": { 13 - "name": "linux-hardened-5.4.43.a.patch", 14 - "sha256": "14d9sg1f2a0fnr2q9z6ck5biip1kbzqqwlg4xzpwv83vaycq4i3b", 15 - "url": "https://github.com/anthraxx/linux-hardened/releases/download/5.4.43.a/linux-hardened-5.4.43.a.patch" 13 + "name": "linux-hardened-5.4.44.a.patch", 14 + "sha256": "0gihrcxqg3hax20xhvna4lmgsivari6wwsyqz09w34v8p1fhd5nx", 15 + "url": "https://github.com/anthraxx/linux-hardened/releases/download/5.4.44.a/linux-hardened-5.4.44.a.patch" 16 16 }, 17 17 "5.6": { 18 - "name": "linux-hardened-5.6.15.a.patch", 19 - "sha256": "0gvp4mra07aj22mrjj8gzd3k7z1zafvak461iajrxfjhzh1z3bdf", 20 - "url": "https://github.com/anthraxx/linux-hardened/releases/download/5.6.15.a/linux-hardened-5.6.15.a.patch" 18 + "name": "linux-hardened-5.6.16.a.patch", 19 + "sha256": "0nci30k7xh56b6454cd0hkpvpkfqb98cqdpvjaamlnmiphz4sk1f", 20 + "url": "https://github.com/anthraxx/linux-hardened/releases/download/5.6.16.a/linux-hardened-5.6.16.a.patch" 21 21 } 22 22 }
+2 -2
pkgs/os-specific/linux/kernel/linux-4.14.nix
··· 3 3 with stdenv.lib; 4 4 5 5 buildLinux (args // rec { 6 - version = "4.14.182"; 6 + version = "4.14.183"; 7 7 8 8 # modDirVersion needs to be x.y.z, will automatically add .0 if needed 9 9 modDirVersion = if (modDirVersionArg == null) then concatStringsSep "." (take 3 (splitVersion "${version}.0")) else modDirVersionArg; ··· 13 13 14 14 src = fetchurl { 15 15 url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz"; 16 - sha256 = "142v7qnfska86jqzilwq00kxdrq08iaaaw7f47xp9bnhb8fiy7b7"; 16 + sha256 = "11c0vd2pwplm8wafich4zg2mnp10vvnap987c5jh96w1avpsyra2"; 17 17 }; 18 18 } // (args.argsOverride or {}))
+2 -2
pkgs/os-specific/linux/kernel/linux-4.19.nix
··· 3 3 with stdenv.lib; 4 4 5 5 buildLinux (args // rec { 6 - version = "4.19.125"; 6 + version = "4.19.126"; 7 7 8 8 # modDirVersion needs to be x.y.z, will automatically add .0 if needed 9 9 modDirVersion = if (modDirVersionArg == null) then concatStringsSep "." (take 3 (splitVersion "${version}.0")) else modDirVersionArg; ··· 13 13 14 14 src = fetchurl { 15 15 url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz"; 16 - sha256 = "0zmxs6q2rgssvsh76xq9xgcax7bps19x2448d1q1fj9pzc7g8hwq"; 16 + sha256 = "129ziwvk3f4xh8jvnq2krajc0bnrl2zxffqsiz63j7p3vc57wakf"; 17 17 }; 18 18 } // (args.argsOverride or {}))
+2 -2
pkgs/os-specific/linux/kernel/linux-4.4.nix
··· 1 1 { stdenv, buildPackages, fetchurl, perl, buildLinux, ... } @ args: 2 2 3 3 buildLinux (args // rec { 4 - version = "4.4.225"; 4 + version = "4.4.226"; 5 5 extraMeta.branch = "4.4"; 6 6 7 7 src = fetchurl { 8 8 url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz"; 9 - sha256 = "0pn66hf9yrjg15skq1inscr5m0slvgsd2qm8rg5id70llrb4jis9"; 9 + sha256 = "1dwvm81i62b06jsl38spfn719zrsbwq5z8viwckrpw4ma4w9k0j1"; 10 10 }; 11 11 } // (args.argsOverride or {}))
+2 -2
pkgs/os-specific/linux/kernel/linux-4.9.nix
··· 1 1 { stdenv, buildPackages, fetchurl, perl, buildLinux, ... } @ args: 2 2 3 3 buildLinux (args // rec { 4 - version = "4.9.225"; 4 + version = "4.9.226"; 5 5 extraMeta.branch = "4.9"; 6 6 7 7 src = fetchurl { 8 8 url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz"; 9 - sha256 = "1s63aymgsc4lsysy9d972ps9cyrf6bncyy5wcpv5a3wbaj678iz5"; 9 + sha256 = "1jj5ydz5cy87z7hrv54bkyl9739lpzja8580ngjhrip5iwb8q2j6"; 10 10 }; 11 11 } // (args.argsOverride or {}))
+2 -2
pkgs/os-specific/linux/kernel/linux-5.4.nix
··· 3 3 with stdenv.lib; 4 4 5 5 buildLinux (args // rec { 6 - version = "5.4.43"; 6 + version = "5.4.44"; 7 7 8 8 # modDirVersion needs to be x.y.z, will automatically add .0 if needed 9 9 modDirVersion = if (modDirVersionArg == null) then concatStringsSep "." (take 3 (splitVersion "${version}.0")) else modDirVersionArg; ··· 13 13 14 14 src = fetchurl { 15 15 url = "mirror://kernel/linux/kernel/v5.x/linux-${version}.tar.xz"; 16 - sha256 = "0i07g72138xdf1l8x593jndq0waf3fx7plz3m6n5f9fl885bjrr6"; 16 + sha256 = "0fc4nsv1zwlknvfv1bzkjlq2vlx28wfl09hg2p7r8cn7a77bphlp"; 17 17 }; 18 18 } // (args.argsOverride or {}))
+2 -2
pkgs/os-specific/linux/kernel/linux-5.6.nix
··· 3 3 with stdenv.lib; 4 4 5 5 buildLinux (args // rec { 6 - version = "5.6.15"; 6 + version = "5.6.16"; 7 7 8 8 # modDirVersion needs to be x.y.z, will automatically add .0 if needed 9 9 modDirVersion = if (modDirVersionArg == null) then concatStringsSep "." (take 3 (splitVersion "${version}.0")) else modDirVersionArg; ··· 13 13 14 14 src = fetchurl { 15 15 url = "mirror://kernel/linux/kernel/v5.x/linux-${version}.tar.xz"; 16 - sha256 = "0kh34f9vdfsi9g83fa1i1926djyzfi466w02c4y4d46ljf9pkav5"; 16 + sha256 = "1xvwk6yxi5nhiwhskpmr89a31286mw9hpm0y3l3i5ydswx6lnl15"; 17 17 }; 18 18 } // (args.argsOverride or {}))
+2 -2
pkgs/os-specific/linux/kernel/linux-libre.nix
··· 1 1 { stdenv, lib, fetchsvn, linux 2 2 , scripts ? fetchsvn { 3 3 url = "https://www.fsfla.org/svn/fsfla/software/linux-libre/releases/branches/"; 4 - rev = "17506"; 5 - sha256 = "0yial2fib8bvv31ihzlxn80xlnpx8f0z6ml9md5xj3zxzslsy5iq"; 4 + rev = "17527"; 5 + sha256 = "0kijrflm1z6wnd4hg46lgm1sqps3fvnrrbzwjfwqq171a78sphhr"; 6 6 } 7 7 , ... 8 8 }:
+38
pkgs/os-specific/linux/rtl88x2bu/default.nix
··· 1 + { stdenv, fetchFromGitHub, kernel, bc }: 2 + 3 + stdenv.mkDerivation rec { 4 + name = "rtl88x2bu-${kernel.version}-${version}"; 5 + version = "unstable-2020-05-19"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "cilynx"; 9 + repo = "rtl88x2BU"; 10 + rev = "0f159d7cd937a12b818121cb1f1c4910bd1adc72"; 11 + sha256 = "0flqnvzfdb4wsiiqv9vf5gfwd5fgpjvhs9zhqknnv1cmp8msgw6y"; 12 + }; 13 + 14 + hardeningDisable = [ "pic" ]; 15 + 16 + nativeBuildInputs = [ bc ]; 17 + buildInputs = kernel.moduleBuildDependencies; 18 + 19 + prePatch = '' 20 + substituteInPlace ./Makefile \ 21 + --replace /lib/modules/ "${kernel.dev}/lib/modules/" \ 22 + --replace '$(shell uname -r)' "${kernel.modDirVersion}" \ 23 + --replace /sbin/depmod \# \ 24 + --replace '$(MODDESTDIR)' "$out/lib/modules/${kernel.modDirVersion}/kernel/net/wireless/" 25 + ''; 26 + 27 + preInstall = '' 28 + mkdir -p "$out/lib/modules/${kernel.modDirVersion}/kernel/net/wireless/" 29 + ''; 30 + 31 + meta = with stdenv.lib; { 32 + description = "Realtek rtl88x2bu driver"; 33 + homepage = "https://github.com/cilynx/rtl88x2bu"; 34 + license = licenses.gpl2; 35 + platforms = platforms.linux; 36 + maintainers = [ maintainers.ralith ]; 37 + }; 38 + }
+2 -2
pkgs/servers/atlassian/confluence.nix
··· 8 8 9 9 stdenvNoCC.mkDerivation rec { 10 10 pname = "atlassian-confluence"; 11 - version = "7.5.0"; 11 + version = "7.5.1"; 12 12 13 13 src = fetchurl { 14 14 url = "https://product-downloads.atlassian.com/software/confluence/downloads/${pname}-${version}.tar.gz"; 15 - sha256 = "177n20cjlrnv767ql72dldmdrsky6xnn7cl52qpvahnglnp5878z"; 15 + sha256 = "0lxvff0sn1kxsm599lq72hw11qnwjn2da3mz1h8mqz0rn2adhg07"; 16 16 }; 17 17 18 18 buildPhase = ''
+55 -5
pkgs/servers/mpd/default.nix
··· 1 - { stdenv, fetchFromGitHub, meson, ninja, pkgconfig, glib, systemd, boost, darwin 1 + { stdenv, fetchFromGitHub, meson, ninja, pkg-config, glib, systemd, boost, darwin 2 2 # Inputs 3 3 , curl, libmms, libnfs, samba 4 4 # Archive support ··· 19 19 # Tag support 20 20 , libid3tag 21 21 , nixosTests 22 + # For documentation 23 + , doxygen 24 + , python3Packages # for sphinx-build 25 + # For tests 26 + , gtest 27 + , fetchpatch # used to fetch an upstream patch fixing a failing test 28 + , zip 22 29 }: 23 30 24 31 let ··· 112 119 sha256 = "0jnhjhm1ilpcwb4f58b8pgyzjq3dlr0j2xyk0zck0afwkdxyj9cb"; 113 120 }; 114 121 115 - buildInputs = [ glib boost ] 122 + # Won't be needed when 0.21.24 will be out 123 + patches = [ 124 + # Tests fail otherwise, see https://github.com/MusicPlayerDaemon/MPD/issues/844 125 + (fetchpatch { 126 + url = "https://github.com/MusicPlayerDaemon/MPD/commit/7aea2853612743e111ae5e947c8d467049e291a8.patch"; 127 + sha256 = "1bmxlsaiz3wlg1yyc4rkwsmgvc0pirv0s1vdxxsn91yssmh16c2g"; 128 + excludes = [ 129 + # The patch fails otherwise because it tries to update the NEWS 130 + # file which doesn't have the title "ver 0.21.24" yet. 131 + "NEWS" 132 + ]; 133 + }) 134 + ]; 135 + 136 + buildInputs = [ 137 + glib 138 + boost 139 + # According to the configurePhase of meson, gtest is considered a 140 + # runtime dependency. Quoting: 141 + # 142 + # Run-time dependency GTest found: YES 1.10.0 143 + gtest 144 + ] 116 145 ++ (lib.concatLists (lib.attrVals features_ featureDependencies)) 117 146 ++ lib.optionals stdenv.isDarwin [ darwin.apple_sdk.frameworks.AudioToolbox darwin.apple_sdk.frameworks.AudioUnit ]; 118 147 119 - nativeBuildInputs = [ meson ninja pkgconfig ]; 148 + nativeBuildInputs = [ 149 + meson 150 + ninja 151 + pkg-config 152 + python3Packages.sphinx 153 + doxygen 154 + ]; 155 + 156 + # Otherwise, the meson log says: 157 + # 158 + # Program zip found: NO 159 + checkInputs = [ zip ]; 160 + 161 + doCheck = true; 120 162 121 163 enableParallelBuilding = true; 122 164 123 165 mesonAutoFeatures = "disabled"; 124 - mesonFlags = 125 - map (x: "-D${x}=enabled") features_ 166 + 167 + outputs = [ "out" "doc" "man" ]; 168 + 169 + mesonFlags = [ 170 + # Documentation is enabled unconditionally but it's not installed 171 + # unconditionally thanks to the outputs being split 172 + "-Ddocumentation=true" 173 + "-Dtest=true" 174 + ] 175 + ++ map (x: "-D${x}=enabled") features_ 126 176 ++ map (x: "-D${x}=disabled") (lib.subtractLists features_ knownFeatures) 127 177 ++ lib.optional (builtins.elem "zeroconf" features_) 128 178 "-Dzeroconf=avahi"
+2 -2
pkgs/servers/plex/raw.nix
··· 8 8 # server, and the FHS userenv and corresponding NixOS module should 9 9 # automatically pick up the changes. 10 10 stdenv.mkDerivation rec { 11 - version = "1.19.2.2737-b69929dab"; 11 + version = "1.19.3.2852-219a9974e"; 12 12 pname = "plexmediaserver"; 13 13 14 14 # Fetch the source 15 15 src = fetchurl { 16 16 url = "https://downloads.plex.tv/plex-media-server-new/${version}/redhat/plexmediaserver-${version}.x86_64.rpm"; 17 - sha256 = "00s3ab66wnpwkjrp0ng8srcy3l32sh5ibv0i9m6l4d0a19hr01fs"; 17 + sha256 = "0sp7lnzf3zrwdmcg54mpvml89q1cbaq6s1cl9gj2z31xfiz07a26"; 18 18 }; 19 19 20 20 outputs = [ "out" "basedb" ];
-12
pkgs/servers/sql/mariadb/cmake-disable-auth-pam-testing.patch
··· 1 - diff --git a/plugin/auth_pam/CMakeLists.txt b/plugin/auth_pam/CMakeLists.txt 2 - index a556b870..918a26f9 100644 3 - --- a/plugin/auth_pam/CMakeLists.txt 4 - +++ b/plugin/auth_pam/CMakeLists.txt 5 - @@ -22,7 +22,6 @@ IF(HAVE_PAM_APPL_H) 6 - COMPONENT Server) 7 - ENDIF() 8 - IF(TARGET auth_pam OR TARGET auth_pam_v1) 9 - - ADD_SUBDIRECTORY(testing) 10 - ADD_LIBRARY(pam_user_map MODULE mapper/pam_user_map.c) 11 - TARGET_LINK_LIBRARIES(pam_user_map pam) 12 - SET_TARGET_PROPERTIES (pam_user_map PROPERTIES PREFIX "")
+9 -7
pkgs/servers/sql/mariadb/default.nix
··· 23 23 }; 24 24 25 25 common = rec { # attributes common to both builds 26 - version = "10.4.12"; 26 + version = "10.4.13"; 27 27 28 28 src = fetchurl { 29 29 urls = [ 30 30 "https://downloads.mariadb.org/f/mariadb-${version}/source/mariadb-${version}.tar.gz" 31 31 "https://downloads.mariadb.com/MariaDB/mariadb-${version}/source/mariadb-${version}.tar.gz" 32 32 ]; 33 - sha256 = "0252b9rxxz1ljjv6ni0wwgy14j8qmmdd2sq0a65dslx2ib9y3wgy"; 33 + sha256 = "1pwibmm52sc04qxp832pc3ylxw9wq90fjc7nxpcyp3yys49bpfs5"; 34 34 name = "mariadb-${version}.tar.gz"; 35 35 }; 36 36 ··· 72 72 "-DINSTALL_SUPPORTFILESDIR=share/doc/mysql" 73 73 "-DINSTALL_MYSQLTESTDIR=OFF" 74 74 "-DINSTALL_SQLBENCHDIR=OFF" 75 + "-DINSTALL_PAMDIR=share/pam/lib/security" 76 + "-DINSTALL_PAMDATADIR=share/pam/etc/security" 75 77 76 78 "-DWITH_ZLIB=system" 77 79 "-DWITH_SSL=system" ··· 94 96 rm "$out"/bin/{mariadb_config,mysql_config} 95 97 rm -r $out/include 96 98 rm -r $out/lib/pkgconfig 97 - rm -r $out/share/{aclocal,pkgconfig} 99 + rm -r $out/share/aclocal 98 100 ''; 99 101 100 102 enableParallelBuilding = true; ··· 160 162 ++ optional stdenv.hostPlatform.isLinux linux-pam 161 163 ++ optional (!stdenv.hostPlatform.isDarwin) mytopEnv; 162 164 163 - patches = common.patches ++ [ 164 - # Disable build unused plugin pam_mariadb_mtr.so. See https://jira.mariadb.org/browse/MDEV-21654 165 - ./cmake-disable-auth-pam-testing.patch 166 - ] ++ optionals stdenv.hostPlatform.isDarwin [ 165 + patches = common.patches ++ optionals stdenv.hostPlatform.isDarwin [ 167 166 ./cmake-without-plugin-auth-pam.patch 168 167 ]; 169 168 ··· 202 201 chmod +x "$out"/bin/wsrep_sst_common 203 202 rm "$out"/bin/{mariadb-client-test,mariadb-test,mysql_client_test,mysqltest} 204 203 rm -r "$out"/data # Don't need testing data 204 + mv "$out"/OFF/suite/plugins/pam/pam_mariadb_mtr.so "$out"/share/pam/lib/security 205 + mv "$out"/OFF/suite/plugins/pam/mariadb_mtr "$out"/share/pam/etc/security 206 + rm -r "$out"/OFF 205 207 '' + optionalString withStorageMroonga '' 206 208 mv "$out"/share/{groonga,groonga-normalizer-mysql} "$out"/share/doc/mysql 207 209 '' + optionalString (!stdenv.hostPlatform.isDarwin) ''
+2 -3
pkgs/servers/sql/mariadb/galera/default.nix
··· 10 10 11 11 in stdenv.mkDerivation rec { 12 12 pname = "mariadb-galera"; 13 - version = "26.4.3"; 13 + version = "26.4.5"; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "codership"; 17 17 repo = "galera"; 18 18 rev = "release_${version}"; 19 - sha256 = "1r0b4kxgqrivnwm4hprnpscb16v6l6j8cnvk4i8c64fig1ly8g3j"; 19 + sha256 = "10sir0hxxglw9jsjrclfgrqm8n5zng6rwj2fgff141x9n9l55w7l"; 20 20 fetchSubmodules = true; 21 21 }; 22 22 ··· 48 48 install -m 444 "LICENSE" "$out/$GALERA_LICENSE_DIR/GPLv2" 49 49 install -m 444 "asio/LICENSE_1_0.txt" "$out/$GALERA_LICENSE_DIR/LICENSE.asio" 50 50 install -m 444 "www.evanjones.ca/LICENSE" "$out/$GALERA_LICENSE_DIR/LICENSE.crc32c" 51 - install -m 444 "chromium/LICENSE" "$out/$GALERA_LICENSE_DIR/LICENSE.chromium" 52 51 ''; 53 52 54 53 meta = with stdenv.lib; {
+3 -3
pkgs/shells/zsh/oh-my-zsh/default.nix
··· 4 4 { stdenv, fetchgit }: 5 5 6 6 stdenv.mkDerivation rec { 7 - version = "2020-06-02"; 7 + version = "2020-06-05"; 8 8 pname = "oh-my-zsh"; 9 - rev = "c58572d5fe51b3ba09801837b6eee2cb6f0bf913"; 9 + rev = "94e784360e2ad34faa6a4a648c67a5c6ed6c987f"; 10 10 11 11 src = fetchgit { inherit rev; 12 12 url = "https://github.com/ohmyzsh/ohmyzsh"; 13 - sha256 = "1gvw90ma96wrg6bpphdgfqfhrgf5327q7dwqjmxxy67xspczm9v4"; 13 + sha256 = "032ba9mjf72jlzn6kcd9dygz28q1kj34fz54ss7rpw17di8hnydb"; 14 14 }; 15 15 16 16 pathsToLink = [ "/share/oh-my-zsh" ];
+2 -2
pkgs/tools/admin/azure-cli/default.nix
··· 1 1 { stdenv, lib, python, fetchFromGitHub, installShellFiles }: 2 2 3 3 let 4 - version = "2.5.1"; 4 + version = "2.7.0"; 5 5 src = fetchFromGitHub { 6 6 owner = "Azure"; 7 7 repo = "azure-cli"; 8 8 rev = "azure-cli-${version}"; 9 - sha256 = "129v01da0whayqi9nvrfnlrq10mn5j096k43xl72214nk7iliwfy"; 9 + sha256 = "0g0ddg04pwcsmyyzrqllx4ladw4x5zxc5yw29q8f6q59j6jaf1zb"; 10 10 }; 11 11 12 12 # put packages that needs to be overriden in the py package scope
+21 -18
pkgs/tools/admin/azure-cli/python-packages.nix
··· 157 157 azure-mgmt-core = overrideAzureMgmtPackage super.azure-mgmt-core "1.0.0" "zip" 158 158 "0pm565v05480f672l0n8z2sg6zk6iqyi91n0dhscibhdl54sy3si"; 159 159 160 - azure-mgmt-cosmosdb = overrideAzureMgmtPackage super.azure-mgmt-cosmosdb "0.13.0" "zip" 161 - "160cn4arl4dy6ax1zb64bzw0ygmpg8jc942m1zlh4nwx5x322gg8"; 160 + azure-mgmt-cosmosdb = overrideAzureMgmtPackage super.azure-mgmt-cosmosdb "0.14.0" "zip" 161 + "1af2vigpmcg2mp36dqi9g2dx4589bqm4w2af9dx6l9x65zfl89b9"; 162 162 163 163 azure-mgmt-deploymentmanager = overrideAzureMgmtPackage super.azure-mgmt-deploymentmanager "0.2.0" "zip" 164 164 "0c6pyr36n9snx879vas5r6l25db6nlp2z96xn759mz4kg4i45qs6"; ··· 166 166 azure-mgmt-imagebuilder = overrideAzureMgmtPackage super.azure-mgmt-imagebuilder "0.2.1" "zip" 167 167 "0mwlvy4x5nr3hsz7wdpdhpzwarzzwz4225bfpd68hr0pcjgzspky"; 168 168 169 - azure-mgmt-iothub = overrideAzureMgmtPackage super.azure-mgmt-iothub "0.11.0" "zip" 170 - "11887zf61ji1dh62czrsgxwz8idybw93m6iwahjy777jkdyviyzn"; 169 + azure-mgmt-iothub = overrideAzureMgmtPackage super.azure-mgmt-iothub "0.12.0" "zip" 170 + "187z0w5by7d9a2zsz3kidmzjw591akpc6dwhps4jyb4skcmyw86s"; 171 171 172 172 azure-mgmt-iotcentral = overrideAzureMgmtPackage super.azure-mgmt-iotcentral "3.0.0" "zip" 173 173 "0iq04hvivq3fvg2lhax95gx0x35avk5hps42227z3qna5i2cznpn"; ··· 175 175 azure-mgmt-kusto = overrideAzureMgmtPackage super.azure-mgmt-kusto "0.3.0" "zip" 176 176 "1pmcdgimd66h964a3d5m2j2fbydshcwhrk87wblhwhfl3xwbgf4y"; 177 177 178 - azure-mgmt-devtestlabs = overrideAzureMgmtPackage super.azure-mgmt-devtestlabs "2.2.0" "zip" 179 - "15lpyv9z8ss47rjmg1wx5akh22p9br2vckaj7jk3639vi38ac5nl"; 178 + azure-mgmt-devtestlabs = overrideAzureMgmtPackage super.azure-mgmt-devtestlabs "4.0.0" "zip" 179 + "1397ksrd61jv7400mgn8sqngp6ahir55fyq9n5k69wk88169qm2r"; 180 180 181 181 azure-mgmt-netapp = overrideAzureMgmtPackage super.azure-mgmt-netapp "0.8.0" "zip" 182 182 "0vbg5mpahrnnnbj80flgzxxiffic94wsc9srm4ir85y2j5rprpv7"; ··· 184 184 azure-mgmt-dns = overrideAzureMgmtPackage super.azure-mgmt-dns "2.1.0" "zip" 185 185 "1l55py4fzzwhxlmnwa41gpmqk9v2ncc79w7zq11sm9a5ynrv2c1p"; 186 186 187 - azure-mgmt-loganalytics = overrideAzureMgmtPackage super.azure-mgmt-loganalytics "0.5.0" "zip" 188 - "0k91zdlzx6nfly1v2i7qmzqrdiygdx8rmgar3iz8nwgafvvc9x0n"; 187 + azure-mgmt-loganalytics = overrideAzureMgmtPackage super.azure-mgmt-loganalytics "0.6.0" "zip" 188 + "0ffhlbd9fwx05njawhii46wqyvbhhz2xcfx0pxc7b978n7l7ylm1"; 189 189 190 - azure-mgmt-network = overrideAzureMgmtPackage super.azure-mgmt-network "10.1.0" "zip" 191 - "0fmsdwzyn167lwh87yyadq1bdc4q6rfz3gj5bh1mgavi9ghhxb75"; 190 + azure-mgmt-network = overrideAzureMgmtPackage super.azure-mgmt-network "10.2.0" "zip" 191 + "1nd2rcwl83x3xq4h5brb16jwbbq57gyxz6pgvmhnign9q76p836m"; 192 192 193 - azure-mgmt-media = overrideAzureMgmtPackage super.azure-mgmt-media "1.1.1" "zip" 194 - "16wk0ksycrscsn3n14qk4vvf7i567vq6f96lwf5dwbc81wx6n32x"; 193 + azure-mgmt-media = overrideAzureMgmtPackage super.azure-mgmt-media "2.1.0" "zip" 194 + "1py0hch0wghzfxazdrrs7p0kln2zn9jh3fmkzwd2z8qggj38q6gm"; 195 195 196 196 azure-mgmt-msi = overrideAzureMgmtPackage super.azure-mgmt-msi "0.2.0" "zip" 197 197 "0rvik03njz940x2hvqg6iiq8k0d88gyygsr86w8s0sa12sdbq8l6"; 198 198 199 - azure-mgmt-web = overrideAzureMgmtPackage super.azure-mgmt-web "0.44.0" "zip" 200 - "05dqakhfi301k2jnvccxdkigqvwnf9xz858pqg9vsri3dq69f1rw"; 199 + azure-mgmt-web = overrideAzureMgmtPackage super.azure-mgmt-web "0.46.0" "zip" 200 + "19n4cr8a2fwjks3485rkv31bsib9akah5b289sl5lsqyp6i8m671"; 201 201 202 202 azure-mgmt-redhatopenshift = overrideAzureMgmtPackage super.azure-mgmt-redhatopenshift "0.1.0" "zip" 203 203 "1g65lbia1i1jw6qkyjz2ldyl3p90rbr78l8kfryg70sj7z3gnnjn"; ··· 210 210 211 211 azure-mgmt-security = overrideAzureMgmtPackage super.azure-mgmt-security "0.1.0" "zip" 212 212 "1cb466722bs0ribrirb32kc299716pl0pwivz3jyn40dd78cwhhx"; 213 + 214 + azure-mgmt-signalr = overrideAzureMgmtPackage super.azure-mgmt-signalr "0.3.0" "zip" 215 + "08b2i6wz9n13h77ahay1hvmg8abk2vvs7kn4y7xip9gi6ij8fv0a"; 213 216 214 217 azure-mgmt-sql = overrideAzureMgmtPackage super.azure-mgmt-sql "0.18.0" "zip" 215 218 "0i9lnhcx85xccddvz1wdz5j0idm6sw2cn3066dww5993nmg0ijlr"; ··· 232 235 azure-mgmt-cdn = overrideAzureMgmtPackage super.azure-mgmt-cdn "4.1.0rc1" "zip" 233 236 "00q5723gvc57kg2w1iyhfchp018skwd89ibrw23p7ngm2bb76g45"; 234 237 235 - azure-mgmt-containerregistry = overrideAzureMgmtPackage super.azure-mgmt-containerregistry "3.0.0rc11" "zip" 236 - "1ixh2wmrbm1v2xlrnmy1l513jpqch6b5vyh9x77flm649x1cff2q"; 238 + azure-mgmt-containerregistry = overrideAzureMgmtPackage super.azure-mgmt-containerregistry "3.0.0rc12" "zip" 239 + "0q7w26n53x0lvr1a944jjl9d0yn0l029brx5nzfrz7ydf3jpb2i2"; 237 240 238 241 azure-mgmt-monitor = overrideAzureMgmtPackage super.azure-mgmt-monitor "0.9.0" "zip" 239 242 "170jyr1qzwhv5ihyrsg5d8qzjylqmg31dscd31jzi4i7bwqf3sb8"; ··· 320 323 }); 321 324 322 325 knack = super.knack.overridePythonAttrs(oldAttrs: rec { 323 - version = "0.7.0rc4"; 326 + version = "0.7.1"; 324 327 325 328 src = super.fetchPypi { 326 329 inherit (oldAttrs) pname; 327 330 inherit version; 328 - sha256 = "10v6qjpr7sbq5irq3kz24jiivpfm0f7jbj9iyx4dm8fgkrhgzlb6"; 331 + sha256 = "1z50vf0q7kzg3cq9cr24j43ri6wc76dhhklyc9lpvgjf2r061vzw"; 329 332 }; 330 333 }); 331 334
+3 -3
pkgs/tools/misc/watchexec/default.nix
··· 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "watchexec"; 5 - version = "1.12.0"; 5 + version = "1.13.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = pname; 9 9 repo = pname; 10 10 rev = version; 11 - sha256 = "03s9nsss4895x4lp90y65jajavk8c2nj1jjnmx0vbbwl210ghlv1"; 11 + sha256 = "0b6ichf528v9mca67301ncm808mzbdi212j0b8zz72aw8dff6ph2"; 12 12 }; 13 13 14 - cargoSha256 = "0p20d7paiafvl4k9iiazbgq75wk7k42sz2h1y5lalq16f5rp6dbp"; 14 + cargoSha256 = "13812swawp65f4j0c0q9x5bs9s3qancw0q2awasry0pcyh7nrxrj"; 15 15 16 16 nativeBuildInputs = [ installShellFiles ]; 17 17
+10 -20
pkgs/tools/security/aflplusplus/default.nix
··· 1 1 { stdenv, stdenvNoCC, fetchFromGitHub, callPackage, makeWrapper 2 - , clang_9, llvm_9, gcc, which, libcgroup, python, perl, gmp 3 - , file, cmocka, wine ? null, fetchpatch 2 + , clang, llvm, gcc, which, libcgroup, python, perl, gmp 3 + , file, wine ? null, fetchpatch 4 4 }: 5 5 6 6 # wine fuzzing is only known to work for win32 binaries, and using a mixture of ··· 17 17 libtokencap = callPackage ./libtokencap.nix { inherit aflplusplus; }; 18 18 aflplusplus = stdenvNoCC.mkDerivation rec { 19 19 pname = "aflplusplus"; 20 - version = "2.64c"; 20 + version = "2.65c"; 21 21 22 22 src = fetchFromGitHub { 23 23 owner = "AFLplusplus"; 24 24 repo = "AFLplusplus"; 25 25 rev = version; 26 - sha256 = "0n618pk6nlmkcbv1qm05fny4mnhcprrw0ppmra1phvk1y22iildj"; 26 + sha256 = "1np2a3kypb2m8nyv6qnij18yzn41pl8619jzydci40br4vxial9l"; 27 27 }; 28 28 enableParallelBuilding = true; 29 29 30 - # build of unsigaction32 broken in 2.64c: 31 - # https://github.com/AFLplusplus/AFLplusplus/commit/079fdbf9bc5be1adba19e4bd08be965bd4dd79dc#commitcomment-38428357 32 - # The applied patch fixes it. 33 - patches = [ 34 - (fetchpatch { 35 - url = "https://github.com/AFLplusplus/AFLplusplus/commit/5b9928f1a9d4b017ea04365ca8b522fde71236eb.patch"; 36 - sha256 = "1m4w9w4jaxb2mjkwvr6r4qa2j5cdzzpchjphpwd95861h0zvb6hh"; 37 - }) 38 - ]; 39 - 40 30 # Note: libcgroup isn't needed for building, just for the afl-cgroup 41 31 # script. 42 - nativeBuildInputs = [ makeWrapper which clang_9 gcc ]; 43 - buildInputs = [ llvm_9 python gmp ] 32 + nativeBuildInputs = [ makeWrapper which clang gcc ]; 33 + buildInputs = [ llvm python gmp ] 44 34 ++ stdenv.lib.optional (wine != null) python.pkgs.wrapPython; 45 35 46 36 47 37 postPatch = '' 48 38 # Replace the CLANG_BIN variables with the correct path 49 39 substituteInPlace llvm_mode/afl-clang-fast.c \ 50 - --replace "CLANGPP_BIN" '"${clang_9}/bin/clang++"' \ 51 - --replace "CLANG_BIN" '"${clang_9}/bin/clang"' \ 40 + --replace "CLANGPP_BIN" '"${clang}/bin/clang++"' \ 41 + --replace "CLANG_BIN" '"${clang}/bin/clang"' \ 52 42 --replace 'getenv("AFL_PATH")' "(getenv(\"AFL_PATH\") ? getenv(\"AFL_PATH\") : \"$out/lib/afl\")" 53 43 54 44 # Replace "gcc" and friends with full paths in afl-gcc ··· 115 105 wrapPythonProgramsIn $out/bin ${python.pkgs.pefile} 116 106 ''; 117 107 118 - installCheckInputs = [ perl file cmocka ]; 108 + installCheckInputs = [ perl file ]; 119 109 doInstallCheck = true; 120 110 installCheckPhase = '' 121 111 # replace references to tools in build directory with references to installed locations ··· 123 113 --replace '../libcompcov.so' '`$out/bin/get-afl-qemu-libcompcov-so`' \ 124 114 --replace '../libdislocator.so' '`$out/bin/get-libdislocator-so`' \ 125 115 --replace '../libtokencap.so' '`$out/bin/get-libtokencap-so`' 126 - perl -pi -e 's|(?<!\.)(\.\./)([^\s\/]+?)(?<!\.c)(?<!\.s?o)(?=\s)|\$out/bin/\2|g' test/test.sh 116 + perl -pi -e 's|(?<!\.)(?<!-I)(\.\./)([^\s\/]+?)(?<!\.c)(?<!\.s?o)(?=\s)|\$out/bin/\2|g' test/test.sh 127 117 cd test && ./test.sh 128 118 ''; 129 119
+2
pkgs/top-level/aliases.nix
··· 67 67 bundler_HEAD = bundler; # added 2015-11-15 68 68 cantarell_fonts = cantarell-fonts; # added 2018-03-03 69 69 catfish = xfce.catfish; # added 2019-12-22 70 + cgmanager = throw "cgmanager was deprecated by lxc and therefore removed from nixpkgs."; # added 2020-06-05 70 71 checkbashism = checkbashisms; # added 2016-08-16 71 72 cide = throw "deprecated in 2019-09-11: abandoned by upstream"; 72 73 cinepaint = throw "cinepaint has been removed from nixpkgs, as it was unmaintained"; # added 2019-12-10 ··· 275 276 lua5_1_sockets = lua51Packages.luasocket; # added 2017-05-02 276 277 lua5_expat = luaPackages.luaexpat; # added 2017-05-02 277 278 lua5_sec = luaPackages.luasec; # added 2017-05-02 279 + lxappearance-gtk3 = throw "lxappearance-gtk3 has been removed. Use lxappearance instead, which now defaults to Gtk3"; # added 2020-06-03 278 280 m3d-linux = m33-linux; # added 2016-08-13 279 281 man_db = man-db; # added 2016-05 280 282 manpages = man-pages; # added 2015-12-06
+22 -10
pkgs/top-level/all-packages.nix
··· 600 600 }; 601 601 602 602 aflplusplus = callPackage ../tools/security/aflplusplus { 603 - stdenv = clangStdenv; 603 + clang = clang_9; 604 + llvm = llvm_9; 604 605 python = python37; 605 606 wine = null; 606 607 }; ··· 4585 4586 kwalletcli = libsForQt5.callPackage ../tools/security/kwalletcli { }; 4586 4587 4587 4588 peruse = libsForQt5.callPackage ../tools/misc/peruse { }; 4589 + 4590 + ksmoothdock = libsForQt5.callPackage ../applications/misc/ksmoothdock { }; 4588 4591 4589 4592 kst = libsForQt5.callPackage ../tools/graphics/kst { gsl = gsl_1; }; 4590 4593 ··· 9508 9511 nodejs = nodejs-13_x; 9509 9512 }; 9510 9513 9511 - lxappearance = callPackage ../desktops/lxde/core/lxappearance { 9512 - gtk2 = gtk2-x11; 9513 - }; 9514 + lxappearance = callPackage ../desktops/lxde/core/lxappearance { }; 9514 9515 9515 - lxappearance-gtk3 = lxappearance.override { 9516 - withGtk3 = true; 9516 + lxappearance-gtk2 = callPackage ../desktops/lxde/core/lxappearance { 9517 + gtk2 = gtk2-x11; 9518 + withGtk3 = false; 9517 9519 }; 9518 9520 9519 9521 lxmenu-data = callPackage ../desktops/lxde/core/lxmenu-data.nix { }; ··· 16565 16567 }; 16566 16568 16567 16569 cachefilesd = callPackage ../os-specific/linux/cachefilesd { }; 16568 - 16569 - cgmanager = callPackage ../os-specific/linux/cgmanager { }; 16570 16570 16571 16571 checkpolicy = callPackage ../os-specific/linux/checkpolicy { }; 16572 16572 ··· 17064 17064 17065 17065 rtl8821ce = callPackage ../os-specific/linux/rtl8821ce { }; 17066 17066 17067 + rtl88x2bu = callPackage ../os-specific/linux/rtl88x2bu { }; 17068 + 17067 17069 rtlwifi_new = callPackage ../os-specific/linux/rtlwifi_new { }; 17068 17070 17069 17071 openafs = callPackage ../servers/openafs/1.6/module.nix { }; ··· 18181 18183 media-player-info = callPackage ../data/misc/media-player-info {}; 18182 18184 18183 18185 medio = callPackage ../data/fonts/medio { }; 18186 + 18187 + mint-x-icons = callPackage ../data/icons/mint-x-icons { }; 18184 18188 18185 18189 mno16 = callPackage ../data/fonts/mno16 { }; 18186 18190 ··· 20596 20600 }; 20597 20601 }; 20598 20602 20603 + libreoffice-qt = lowPrio (callPackage ../applications/office/libreoffice/wrapper.nix { 20604 + libreoffice = libsForQt5.callPackage ../applications/office/libreoffice 20605 + (libreoffice-args // { 20606 + kdeIntegration = true; 20607 + variant = "fresh"; 20608 + }); 20609 + }); 20610 + 20599 20611 libreoffice-fresh = lowPrio (callPackage ../applications/office/libreoffice/wrapper.nix { 20600 20612 libreoffice = callPackage ../applications/office/libreoffice 20601 20613 (libreoffice-args // { ··· 21625 21637 puremapping = callPackage ../applications/audio/pd-plugins/puremapping { }; 21626 21638 21627 21639 pybitmessage = callPackage ../applications/networking/instant-messengers/pybitmessage { }; 21628 - 21629 - pythonmagick = callPackage ../applications/graphics/PythonMagick { }; 21630 21640 21631 21641 qbittorrent = libsForQt5.callPackage ../applications/networking/p2p/qbittorrent { }; 21632 21642 qbittorrent-nox = qbittorrent.override { ··· 23045 23055 xdg-desktop-portal = callPackage ../development/libraries/xdg-desktop-portal { }; 23046 23056 23047 23057 xdg-desktop-portal-gtk = callPackage ../development/libraries/xdg-desktop-portal-gtk { }; 23058 + 23059 + xdg-desktop-portal-wlr = callPackage ../development/libraries/xdg-desktop-portal-wlr { }; 23048 23060 23049 23061 xdg-user-dirs = callPackage ../tools/X11/xdg-user-dirs { }; 23050 23062
-2
pkgs/top-level/ocaml-packages.nix
··· 191 191 192 192 curses = callPackage ../development/ocaml-modules/curses { }; 193 193 194 - custom_printf = callPackage ../development/ocaml-modules/custom_printf { }; 195 - 196 194 ctypes = callPackage ../development/ocaml-modules/ctypes { }; 197 195 198 196 decompress = callPackage ../development/ocaml-modules/decompress { };
+4
pkgs/top-level/python-packages.nix
··· 1367 1367 1368 1368 pytmx = callPackage ../development/python-modules/pytmx { }; 1369 1369 1370 + pythonmagick = callPackage ../development/python-modules/pythonmagick { }; 1371 + 1370 1372 python-binance = callPackage ../development/python-modules/python-binance { }; 1371 1373 1372 1374 python-dbusmock = callPackage ../development/python-modules/python-dbusmock { }; ··· 3118 3120 jupyterlab_server = callPackage ../development/python-modules/jupyterlab_server { }; 3119 3121 3120 3122 jupyterlab = callPackage ../development/python-modules/jupyterlab {}; 3123 + 3124 + jupyter-sphinx = callPackage ../development/python-modules/jupyter-sphinx { }; 3121 3125 3122 3126 jupytext = callPackage ../development/python-modules/jupytext { }; 3123 3127
+3
pkgs/top-level/release.nix
··· 183 183 idrisPackages = packagePlatforms pkgs.idrisPackages; 184 184 agdaPackages = packagePlatforms pkgs.agdaPackages; 185 185 186 + pkgsMusl.stdenv = [ "x86_64-linux" "aarch64-linux" ]; 187 + pkgsStatic.stdenv = [ "x86_64-linux" "aarch64-linux" ]; 188 + 186 189 tests = packagePlatforms pkgs.tests; 187 190 188 191 # Language packages disabled in https://github.com/NixOS/nixpkgs/commit/ccd1029f58a3bb9eca32d81bf3f33cb4be25cc66