diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix
index b8e642588d44..1f6d48f20d00 100644
--- a/maintainers/maintainer-list.nix
+++ b/maintainers/maintainer-list.nix
@@ -9390,6 +9390,12 @@
githubId = 1222539;
name = "Roman Naumann";
};
+ naphta = {
+ email = "naphta@noreply.github.com";
+ github = "naphta";
+ githubId = 6709831;
+ name = "Jake Hill";
+ };
nasirhm = {
email = "nasirhussainm14@gmail.com";
github = "nasirhm";
diff --git a/maintainers/team-list.nix b/maintainers/team-list.nix
index a43b3eb41412..a8e66897a683 100644
--- a/maintainers/team-list.nix
+++ b/maintainers/team-list.nix
@@ -363,6 +363,17 @@ with lib.maintainers; {
shortName = "Kodi";
};
+ libretro = {
+ members = [
+ aanderse
+ edwtjo
+ MP2E
+ thiagokokada
+ ];
+ scope = "Maintain Libretro, RetroArch and related packages.";
+ shortName = "Libretro";
+ };
+
linux-kernel = {
members = [
TredwellGit
diff --git a/nixos/doc/manual/from_md/release-notes/rl-2211.section.xml b/nixos/doc/manual/from_md/release-notes/rl-2211.section.xml
index 582b1715d1a4..0b59f19a934e 100644
--- a/nixos/doc/manual/from_md/release-notes/rl-2211.section.xml
+++ b/nixos/doc/manual/from_md/release-notes/rl-2211.section.xml
@@ -320,6 +320,15 @@
services.go-autoconfig.
+
+
+ tmate-ssh-server,
+ server side part of
+ tmate. Available
+ as
+ services.tmate-ssh-server.
+
+
Grafana
diff --git a/nixos/doc/manual/release-notes/rl-2211.section.md b/nixos/doc/manual/release-notes/rl-2211.section.md
index 3e38f85b8f10..7201b0e1cc09 100644
--- a/nixos/doc/manual/release-notes/rl-2211.section.md
+++ b/nixos/doc/manual/release-notes/rl-2211.section.md
@@ -110,6 +110,8 @@ In addition to numerous new and upgraded packages, this release has the followin
- [go-autoconfig](https://github.com/L11R/go-autoconfig), IMAP/SMTP autodiscover server. Available as [services.go-autoconfig](#opt-services.go-autoconfig.enable).
+- [tmate-ssh-server](https://github.com/tmate-io/tmate-ssh-server), server side part of [tmate](https://tmate.io/). Available as [services.tmate-ssh-server](#opt-services.tmate-ssh-server.enable).
+
- [Grafana Tempo](https://www.grafana.com/oss/tempo/), a distributed tracing store. Available as [services.tempo](#opt-services.tempo.enable).
- [AusweisApp2](https://www.ausweisapp.bund.de/), the authentication software for the German ID card. Available as [programs.ausweisapp](#opt-programs.ausweisapp.enable).
diff --git a/nixos/modules/module-list.nix b/nixos/modules/module-list.nix
index c25450167075..db07d6312c42 100644
--- a/nixos/modules/module-list.nix
+++ b/nixos/modules/module-list.nix
@@ -960,6 +960,7 @@
./services/networking/tinc.nix
./services/networking/tinydns.nix
./services/networking/tftpd.nix
+ ./services/networking/tmate-ssh-server.nix
./services/networking/trickster.nix
./services/networking/tox-bootstrapd.nix
./services/networking/tox-node.nix
diff --git a/nixos/modules/services/networking/tmate-ssh-server.nix b/nixos/modules/services/networking/tmate-ssh-server.nix
new file mode 100644
index 000000000000..1b8f6662ef4c
--- /dev/null
+++ b/nixos/modules/services/networking/tmate-ssh-server.nix
@@ -0,0 +1,122 @@
+{ config, lib, pkgs, ... }:
+with lib;
+let
+ cfg = config.services.tmate-ssh-server;
+
+ defaultKeysDir = "/etc/tmate-ssh-server-keys";
+ edKey = "${defaultKeysDir}/ssh_host_ed25519_key";
+ rsaKey = "${defaultKeysDir}/ssh_host_rsa_key";
+
+ keysDir =
+ if cfg.keysDir == null
+ then defaultKeysDir
+ else cfg.keysDir;
+
+ domain = config.networking.domain;
+in
+{
+ options.services.tmate-ssh-server = {
+ enable = mkEnableOption (mdDoc "tmate ssh server");
+
+ package = mkOption {
+ type = types.package;
+ description = mdDoc "The package containing tmate-ssh-server";
+ defaultText = literalExpression "pkgs.tmate-ssh-server";
+ default = pkgs.tmate-ssh-server;
+ };
+
+ host = mkOption {
+ type = types.str;
+ description = mdDoc "External host name";
+ defaultText = lib.literalExpression "config.networking.domain or config.networking.hostName ";
+ default =
+ if domain == null then
+ config.networking.hostName
+ else
+ domain;
+ };
+
+ port = mkOption {
+ type = types.port;
+ description = mdDoc "Listen port for the ssh server";
+ default = 2222;
+ };
+
+ openFirewall = mkOption {
+ type = types.bool;
+ default = true;
+ description = mdDoc "Whether to automatically open the specified ports in the firewall.";
+ };
+
+ advertisedPort = mkOption {
+ type = types.port;
+ description = mdDoc "External port advertised to clients";
+ };
+
+ keysDir = mkOption {
+ type = with types; nullOr str;
+ description = mdDoc "Directory containing ssh keys, defaulting to auto-generation";
+ default = null;
+ };
+ };
+
+ config = mkIf cfg.enable {
+
+ networking.firewall.allowedTCPPorts = optionals cfg.openFirewall [ cfg.port ];
+
+ services.tmate-ssh-server = {
+ advertisedPort = mkDefault cfg.port;
+ };
+
+ environment.systemPackages =
+ let
+ tmate-config = pkgs.writeText "tmate.conf"
+ ''
+ set -g tmate-server-host "${cfg.host}"
+ set -g tmate-server-port ${toString cfg.port}
+ set -g tmate-server-ed25519-fingerprint "@ed25519_fingerprint@"
+ set -g tmate-server-rsa-fingerprint "@rsa_fingerprint@"
+ '';
+ in
+ [
+ (pkgs.writeShellApplication {
+ name = "tmate-client-config";
+ runtimeInputs = with pkgs;[ openssh coreutils sd ];
+ text = ''
+ RSA_SIG="$(ssh-keygen -l -E SHA256 -f "${keysDir}/ssh_host_rsa_key.pub" | cut -d ' ' -f 2)"
+ ED25519_SIG="$(ssh-keygen -l -E SHA256 -f "${keysDir}/ssh_host_ed25519_key.pub" | cut -d ' ' -f 2)"
+ sd -sp '@ed25519_fingerprint@' "$ED25519_SIG" ${tmate-config} | \
+ sd -sp '@rsa_fingerprint@' "$RSA_SIG"
+ '';
+ })
+ ];
+
+ systemd.services.tmate-ssh-server = {
+ description = "tmate SSH Server";
+ after = [ "network.target" ];
+ wantedBy = [ "multi-user.target" ];
+ serviceConfig = {
+ ExecStart = "${cfg.package}/bin/tmate-ssh-server -h ${cfg.host} -p ${toString cfg.port} -q ${toString cfg.advertisedPort} -k ${keysDir}";
+ };
+ preStart = mkIf (cfg.keysDir == null) ''
+ if [[ ! -d ${defaultKeysDir} ]]
+ then
+ mkdir -p ${defaultKeysDir}
+ fi
+ if [[ ! -f ${edKey} ]]
+ then
+ ${pkgs.openssh}/bin/ssh-keygen -t ed25519 -f ${edKey} -N ""
+ fi
+ if [[ ! -f ${rsaKey} ]]
+ then
+ ${pkgs.openssh}/bin/ssh-keygen -t rsa -f ${rsaKey} -N ""
+ fi
+ '';
+ };
+ };
+
+ meta = {
+ maintainers = with maintainers; [ jlesquembre ];
+ };
+
+}
diff --git a/nixos/modules/system/boot/systemd/initrd.nix b/nixos/modules/system/boot/systemd/initrd.nix
index e843214f8552..03f94c426cb0 100644
--- a/nixos/modules/system/boot/systemd/initrd.nix
+++ b/nixos/modules/system/boot/systemd/initrd.nix
@@ -372,6 +372,8 @@ in {
"/etc/os-release".source = config.boot.initrd.osRelease;
"/etc/initrd-release".source = config.boot.initrd.osRelease;
+ } // optionalAttrs (config.environment.etc ? "modprobe.d/nixos.conf") {
+ "/etc/modprobe.d/nixos.conf".source = config.environment.etc."modprobe.d/nixos.conf".source;
};
storePaths = [
diff --git a/nixos/tests/all-tests.nix b/nixos/tests/all-tests.nix
index 8ec73cc05c86..131936a87c37 100644
--- a/nixos/tests/all-tests.nix
+++ b/nixos/tests/all-tests.nix
@@ -597,6 +597,7 @@ in {
systemd-initrd-btrfs-raid = handleTest ./systemd-initrd-btrfs-raid.nix {};
systemd-initrd-luks-keyfile = handleTest ./systemd-initrd-luks-keyfile.nix {};
systemd-initrd-luks-password = handleTest ./systemd-initrd-luks-password.nix {};
+ systemd-initrd-modprobe = handleTest ./systemd-initrd-modprobe.nix {};
systemd-initrd-shutdown = handleTest ./systemd-shutdown.nix { systemdStage1 = true; };
systemd-initrd-simple = handleTest ./systemd-initrd-simple.nix {};
systemd-initrd-swraid = handleTest ./systemd-initrd-swraid.nix {};
@@ -625,6 +626,7 @@ in {
tinc = handleTest ./tinc {};
tinydns = handleTest ./tinydns.nix {};
tinywl = handleTest ./tinywl.nix {};
+ tmate-ssh-server = handleTest ./tmate-ssh-server.nix { };
tomcat = handleTest ./tomcat.nix {};
tor = handleTest ./tor.nix {};
# traefik test relies on docker-containers
diff --git a/nixos/tests/retroarch.nix b/nixos/tests/retroarch.nix
index c506ed02da89..f4bf232ea725 100644
--- a/nixos/tests/retroarch.nix
+++ b/nixos/tests/retroarch.nix
@@ -2,7 +2,7 @@ import ./make-test-python.nix ({ pkgs, ... }:
{
name = "retroarch";
- meta = with pkgs.lib.maintainers; { maintainers = [ j0hax ]; };
+ meta = with pkgs.lib; { maintainers = teams.libretro.members ++ [ maintainers.j0hax ]; };
nodes.machine = { ... }:
@@ -11,7 +11,7 @@ import ./make-test-python.nix ({ pkgs, ... }:
services.xserver.enable = true;
services.xserver.desktopManager.retroarch = {
enable = true;
- package = pkgs.retroarchFull;
+ package = pkgs.retroarchBare;
};
services.xserver.displayManager = {
sddm.enable = true;
diff --git a/nixos/tests/systemd-initrd-modprobe.nix b/nixos/tests/systemd-initrd-modprobe.nix
new file mode 100644
index 000000000000..bf635a10d0e9
--- /dev/null
+++ b/nixos/tests/systemd-initrd-modprobe.nix
@@ -0,0 +1,17 @@
+import ./make-test-python.nix ({ lib, pkgs, ... }: {
+ name = "systemd-initrd-modprobe";
+
+ nodes.machine = { pkgs, ... }: {
+ boot.initrd.systemd.enable = true;
+ boot.initrd.kernelModules = [ "loop" ]; # Load module in initrd.
+ boot.extraModprobeConfig = ''
+ options loop max_loop=42
+ '';
+ };
+
+ testScript = ''
+ machine.wait_for_unit("multi-user.target")
+ max_loop = machine.succeed("cat /sys/module/loop/parameters/max_loop")
+ assert int(max_loop) == 42, "Parameter should be respected for initrd kernel modules"
+ '';
+})
diff --git a/nixos/tests/tmate-ssh-server.nix b/nixos/tests/tmate-ssh-server.nix
new file mode 100644
index 000000000000..e7f94db9bfcf
--- /dev/null
+++ b/nixos/tests/tmate-ssh-server.nix
@@ -0,0 +1,73 @@
+import ./make-test-python.nix ({ pkgs, lib, ... }:
+let
+ inherit (import ./ssh-keys.nix pkgs)
+ snakeOilPrivateKey snakeOilPublicKey;
+
+ setUpPrivateKey = name: ''
+ ${name}.succeed(
+ "mkdir -p /root/.ssh",
+ "chown 700 /root/.ssh",
+ "cat '${snakeOilPrivateKey}' > /root/.ssh/id_snakeoil",
+ "chown 600 /root/.ssh/id_snakeoil",
+ )
+ ${name}.wait_for_file("/root/.ssh/id_snakeoil")
+ '';
+
+ sshOpts = "-oStrictHostKeyChecking=no -oUserKnownHostsFile=/dev/null -oIdentityFile=/root/.ssh/id_snakeoil";
+
+in
+{
+ name = "tmate-ssh-server";
+ nodes =
+ {
+ server = { ... }: {
+ services.tmate-ssh-server = {
+ enable = true;
+ port = 2223;
+ };
+ };
+ client = { ... }: {
+ environment.systemPackages = [ pkgs.tmate ];
+ services.openssh.enable = true;
+ users.users.root.openssh.authorizedKeys.keys = [ snakeOilPublicKey ];
+ };
+ client2 = { ... }: {
+ environment.systemPackages = [ pkgs.openssh ];
+ };
+ };
+ testScript = ''
+ start_all()
+
+ server.wait_for_unit("tmate-ssh-server.service")
+ server.wait_for_open_port(2223)
+ server.wait_for_file("/etc/tmate-ssh-server-keys/ssh_host_ed25519_key.pub")
+ server.wait_for_file("/etc/tmate-ssh-server-keys/ssh_host_rsa_key.pub")
+ server.succeed("tmate-client-config > /tmp/tmate.conf")
+ server.wait_for_file("/tmp/tmate.conf")
+
+ ${setUpPrivateKey "server"}
+ client.wait_for_unit("sshd.service")
+ client.wait_for_open_port(22)
+ server.succeed("scp ${sshOpts} /tmp/tmate.conf client:/tmp/tmate.conf")
+
+ client.wait_for_file("/tmp/tmate.conf")
+ client.send_chars("root\n")
+ client.sleep(2)
+ client.send_chars("tmate -f /tmp/tmate.conf\n")
+ client.sleep(2)
+ client.send_chars("q")
+ client.sleep(2)
+ client.send_chars("tmate display -p '#{tmate_ssh}' > /tmp/ssh_command\n")
+ client.wait_for_file("/tmp/ssh_command")
+ ssh_cmd = client.succeed("cat /tmp/ssh_command")
+
+ client2.succeed("mkdir -p ~/.ssh; ssh-keyscan -p 2223 server > ~/.ssh/known_hosts")
+ client2.send_chars("root\n")
+ client2.sleep(2)
+ client2.send_chars(ssh_cmd.strip() + "\n")
+ client2.sleep(2)
+ client2.send_chars("touch /tmp/client_2\n")
+
+ client.wait_for_file("/tmp/client_2")
+ '';
+})
diff --git a/pkgs/applications/audio/gmpc/default.nix b/pkgs/applications/audio/gmpc/default.nix
index 4c93fad511ae..33930dfb7d2d 100644
--- a/pkgs/applications/audio/gmpc/default.nix
+++ b/pkgs/applications/audio/gmpc/default.nix
@@ -24,9 +24,10 @@ stdenv.mkDerivation rec {
version = "11.8.16";
libmpd = stdenv.mkDerivation {
- name = "libmpd-11.8.17";
+ pname = "libmpd";
+ version = "11.8.17";
src = fetchurl {
- url = "http://download.sarine.nl/Programs/gmpc/11.8/libmpd-11.8.17.tar.gz";
+ url = "https://download.sarine.nl/Programs/gmpc/${lib.versions.majorMinor version}/libmpd-${version}.tar.gz";
sha256 = "10vspwsgr8pwf3qp2bviw6b2l8prgdiswgv7qiqiyr0h1mmk487y";
};
patches = [ ./libmpd-11.8.17-remove-strndup.patch ];
diff --git a/pkgs/applications/editors/emacs/elisp-packages/elpa-generated.nix b/pkgs/applications/editors/emacs/elisp-packages/elpa-generated.nix
index 354210deb132..d479802e60d4 100644
--- a/pkgs/applications/editors/emacs/elisp-packages/elpa-generated.nix
+++ b/pkgs/applications/editors/emacs/elisp-packages/elpa-generated.nix
@@ -19,10 +19,10 @@
elpaBuild {
pname = "ack";
ename = "ack";
- version = "1.10";
+ version = "1.11";
src = fetchurl {
- url = "https://elpa.gnu.org/packages/ack-1.10.tar";
- sha256 = "0jz8badhjpzjlrprpzgcm1z6ask1ykc7ab62ixjrj9wcgfjif5qw";
+ url = "https://elpa.gnu.org/packages/ack-1.11.tar";
+ sha256 = "0fsi3lgfkyv9gxwcs0q5c9fawksz6x0pqarjagcndnd7jlbxjw7z";
};
packageRequires = [];
meta = {
@@ -234,10 +234,10 @@
elpaBuild {
pname = "async";
ename = "async";
- version = "1.9.6";
+ version = "1.9.7";
src = fetchurl {
- url = "https://elpa.gnu.org/packages/async-1.9.6.tar";
- sha256 = "0qyf1niqjhzaphb50q1znkwqzpdvqw3drivkzrqxrs747k7pm3my";
+ url = "https://elpa.gnu.org/packages/async-1.9.7.tar";
+ sha256 = "0wwjgvj42irznwz6rjh8yiz4p9hswgi6ak57anjn256c4zx8xaz2";
};
packageRequires = [ emacs ];
meta = {
@@ -1071,10 +1071,10 @@
elpaBuild {
pname = "denote";
ename = "denote";
- version = "0.6.1";
+ version = "1.0.0";
src = fetchurl {
- url = "https://elpa.gnu.org/packages/denote-0.6.1.tar";
- sha256 = "1yxfnwq2b32xrl52g61a9g3i53m94iybx0n8hh6nbmcv5x4y43ya";
+ url = "https://elpa.gnu.org/packages/denote-1.0.0.tar";
+ sha256 = "1gywi22x12p7hkliwy84i7pvyis5ja22fybz5shkdmkcl12mx631";
};
packageRequires = [ emacs ];
meta = {
@@ -1086,10 +1086,10 @@
elpaBuild {
pname = "detached";
ename = "detached";
- version = "0.9.0";
+ version = "0.9.1";
src = fetchurl {
- url = "https://elpa.gnu.org/packages/detached-0.9.0.tar";
- sha256 = "1br1s2kwb5ji4ad5m89grpyvjffhc3xxydgja9q796cx6zwrnavp";
+ url = "https://elpa.gnu.org/packages/detached-0.9.1.tar";
+ sha256 = "1hzvqb18bpdpmnk469cmkayvddm37knd3mjj7m6zv3qsjw17n6f1";
};
packageRequires = [ emacs ];
meta = {
@@ -1247,6 +1247,21 @@
license = lib.licenses.free;
};
}) {};
+ doc-toc = callPackage ({ elpaBuild, emacs, fetchurl, lib }:
+ elpaBuild {
+ pname = "doc-toc";
+ ename = "doc-toc";
+ version = "1.0";
+ src = fetchurl {
+ url = "https://elpa.gnu.org/packages/doc-toc-1.0.tar";
+ sha256 = "07yan1jmp6q87rhm8bmglswnhzlh5r9j35x5sqm5yfx0pcp16kpj";
+ };
+ packageRequires = [ emacs ];
+ meta = {
+ homepage = "https://elpa.gnu.org/packages/doc-toc.html";
+ license = lib.licenses.free;
+ };
+ }) {};
docbook = callPackage ({ elpaBuild, fetchurl, lib }:
elpaBuild {
pname = "docbook";
@@ -1386,10 +1401,10 @@
elpaBuild {
pname = "eev";
ename = "eev";
- version = "20220828";
+ version = "20220926";
src = fetchurl {
- url = "https://elpa.gnu.org/packages/eev-20220828.tar";
- sha256 = "0znsimjq61p67c2q3qbia5qrimy847xy6gjpl1jgyrdlpgm9hv6r";
+ url = "https://elpa.gnu.org/packages/eev-20220926.tar";
+ sha256 = "0kc30y44wl691jchafljp938kbwilawdfxm0bp6nsniv1bm95rpy";
};
packageRequires = [ emacs ];
meta = {
@@ -1401,10 +1416,10 @@
elpaBuild {
pname = "ef-themes";
ename = "ef-themes";
- version = "0.5.0";
+ version = "0.6.0";
src = fetchurl {
- url = "https://elpa.gnu.org/packages/ef-themes-0.5.0.tar";
- sha256 = "1k73q48vg7vyjmnvizinwn9if481ajq63ps2iwb01f1brrhmbf5v";
+ url = "https://elpa.gnu.org/packages/ef-themes-0.6.0.tar";
+ sha256 = "00xq5ymsq8lq2jc541lw64i9pp0a0757wj3nasmfsa27wfpivzhb";
};
packageRequires = [ emacs ];
meta = {
@@ -1563,10 +1578,10 @@
elpaBuild {
pname = "ement";
ename = "ement";
- version = "0.2";
+ version = "0.3";
src = fetchurl {
- url = "https://elpa.gnu.org/packages/ement-0.2.tar";
- sha256 = "1kxbkqiy5c9pxk4f5k3d3j2q3qn7cg8f21zpgds9s8fd6ax0arcf";
+ url = "https://elpa.gnu.org/packages/ement-0.3.tar";
+ sha256 = "08k1qfcymsnaz0mzq33l3i0fj9kjf5y0pdpn7k0skhhlsw90h078";
};
packageRequires = [
emacs
@@ -2909,10 +2924,10 @@
elpaBuild {
pname = "modus-themes";
ename = "modus-themes";
- version = "2.6.0";
+ version = "2.7.1";
src = fetchurl {
- url = "https://elpa.gnu.org/packages/modus-themes-2.6.0.tar";
- sha256 = "0i4y69rrdcm64mvqs5z7dmgx1xk0x7g5978q5gjblczlfka444k4";
+ url = "https://elpa.gnu.org/packages/modus-themes-2.7.1.tar";
+ sha256 = "1ms5nig05z26342723jln50m7xq055knr2570x40lkg2m9s1ikx1";
};
packageRequires = [ emacs ];
meta = {
@@ -3162,10 +3177,10 @@
elpaBuild {
pname = "notmuch-indicator";
ename = "notmuch-indicator";
- version = "0.1.0";
+ version = "0.1.1";
src = fetchurl {
- url = "https://elpa.gnu.org/packages/notmuch-indicator-0.1.0.tar";
- sha256 = "11kbl8y95vwww1rsgdd1q5x8i690gi4cxql4n2sg7r5dysdrbyz1";
+ url = "https://elpa.gnu.org/packages/notmuch-indicator-0.1.1.tar";
+ sha256 = "1fdl8xm48id1a85gf3gr8d8m3sz61xrras9f598pvrksm3j162b6";
};
packageRequires = [ emacs ];
meta = {
@@ -3582,10 +3597,10 @@
elpaBuild {
pname = "perl-doc";
ename = "perl-doc";
- version = "0.2";
+ version = "0.6";
src = fetchurl {
- url = "https://elpa.gnu.org/packages/perl-doc-0.2.tar";
- sha256 = "1p5bbkwllh91a0vg5aisqa9kbms7l9vxk14lm09bav952xxn6gdl";
+ url = "https://elpa.gnu.org/packages/perl-doc-0.6.tar";
+ sha256 = "0xmk09pfvdzkrjfsa2l78bd6akcbdhcbnpvwnm6r83h65gpld79f";
};
packageRequires = [ emacs ];
meta = {
@@ -3642,10 +3657,10 @@
elpaBuild {
pname = "plz";
ename = "plz";
- version = "0.2";
+ version = "0.2.1";
src = fetchurl {
- url = "https://elpa.gnu.org/packages/plz-0.2.tar";
- sha256 = "1b45m9b9gzx5ylpxcppkiikk5lfya7ngiqsap4a7m1b2cr8rqxcj";
+ url = "https://elpa.gnu.org/packages/plz-0.2.1.tar";
+ sha256 = "01xa4vjbcdm37dya5d006k9p37kcm1g4yh4j7vh7hjfdz43j6y9s";
};
packageRequires = [ emacs ];
meta = {
@@ -3747,10 +3762,10 @@
elpaBuild {
pname = "pyim";
ename = "pyim";
- version = "5.2.4";
+ version = "5.2.5";
src = fetchurl {
- url = "https://elpa.gnu.org/packages/pyim-5.2.4.tar";
- sha256 = "1dzl4xaf31nyjb5hnwwf29i75x0i8dakpmmagbn4ks5hi3jl2ig0";
+ url = "https://elpa.gnu.org/packages/pyim-5.2.5.tar";
+ sha256 = "00f23pl53rdy9iwp4gj2656wik7c6vnmhsglg7z4pz3ippz3f4hq";
};
packageRequires = [ async emacs xr ];
meta = {
@@ -4427,10 +4442,10 @@
elpaBuild {
pname = "sokoban";
ename = "sokoban";
- version = "1.4.8";
+ version = "1.4.9";
src = fetchurl {
- url = "https://elpa.gnu.org/packages/sokoban-1.4.8.tar";
- sha256 = "1w3vrkg239x1saqka21zbl380fxqmbz3lr7820spxd8p5w9v55pn";
+ url = "https://elpa.gnu.org/packages/sokoban-1.4.9.tar";
+ sha256 = "1zri4czw2d5impkgn8d4hliyw31vndadg7wj31gairk8kyakjpgm";
};
packageRequires = [ cl-lib emacs ];
meta = {
@@ -4687,10 +4702,10 @@
elpaBuild {
pname = "taxy-magit-section";
ename = "taxy-magit-section";
- version = "0.10";
+ version = "0.11";
src = fetchurl {
- url = "https://elpa.gnu.org/packages/taxy-magit-section-0.10.tar";
- sha256 = "1g58nvpb04ldhn5qnjw2q5idrv6vhlfa0qmb46cvis6bkz46cxkw";
+ url = "https://elpa.gnu.org/packages/taxy-magit-section-0.11.tar";
+ sha256 = "058z95c0z2hxplr5pfgph1cdq68zcrkmwx1wqyd5fy4a5h43yknq";
};
packageRequires = [ emacs magit-section taxy ];
meta = {
@@ -4826,10 +4841,10 @@
elpaBuild {
pname = "tramp";
ename = "tramp";
- version = "2.5.3.2";
+ version = "2.5.3.3";
src = fetchurl {
- url = "https://elpa.gnu.org/packages/tramp-2.5.3.2.tar";
- sha256 = "1jcicb9f7c1nmaqg20yy2j4wd0qfch4llc26ga7q3ckhx41pvbiw";
+ url = "https://elpa.gnu.org/packages/tramp-2.5.3.3.tar";
+ sha256 = "05w04qwk1lk50fzwl6fxyf6pb1jd2lx4as99zm1dpa858jab6w4a";
};
packageRequires = [ emacs ];
meta = {
@@ -4841,10 +4856,10 @@
elpaBuild {
pname = "tramp-nspawn";
ename = "tramp-nspawn";
- version = "1.0";
+ version = "1.0.1";
src = fetchurl {
- url = "https://elpa.gnu.org/packages/tramp-nspawn-1.0.tar";
- sha256 = "1si649vcj4md50p5nzvw431580rcl113rraj6fw636a394485hvx";
+ url = "https://elpa.gnu.org/packages/tramp-nspawn-1.0.1.tar";
+ sha256 = "1w8h563pcdksqqy5v5vi7vrx76r6pi4bzhqywk1v67rhnr33qsvq";
};
packageRequires = [ emacs ];
meta = {
diff --git a/pkgs/applications/editors/emacs/elisp-packages/nongnu-generated.nix b/pkgs/applications/editors/emacs/elisp-packages/nongnu-generated.nix
index 591774ad714b..53b5f9e1743e 100644
--- a/pkgs/applications/editors/emacs/elisp-packages/nongnu-generated.nix
+++ b/pkgs/applications/editors/emacs/elisp-packages/nongnu-generated.nix
@@ -49,10 +49,10 @@
elpaBuild {
pname = "annotate";
ename = "annotate";
- version = "1.7.2";
+ version = "1.8.0";
src = fetchurl {
- url = "https://elpa.nongnu.org/nongnu/annotate-1.7.2.tar";
- sha256 = "0vdpv8k1cvkn3cvsnxqv299gvp470ga2pgmfvdqi7k1vzypgpp57";
+ url = "https://elpa.nongnu.org/nongnu/annotate-1.8.0.tar";
+ sha256 = "169cav480g2fm3z7d5dixrng2h8fv39sa9n066b79cb573p4bbcp";
};
packageRequires = [];
meta = {
@@ -1208,10 +1208,10 @@
elpaBuild {
pname = "helm";
ename = "helm";
- version = "3.8.7";
+ version = "3.8.8";
src = fetchurl {
- url = "https://elpa.nongnu.org/nongnu/helm-3.8.7.tar";
- sha256 = "1n0m061amrzm0xpgqy2mp9vrk2960gqhl5hi6c1smcmm7nxqwz12";
+ url = "https://elpa.nongnu.org/nongnu/helm-3.8.8.tar";
+ sha256 = "1qsiw8gswjwfp79n7g103db7xsmk36lq6ln558ipn4cw0fpnq1sc";
};
packageRequires = [ helm-core popup ];
meta = {
@@ -1223,10 +1223,10 @@
elpaBuild {
pname = "helm-core";
ename = "helm-core";
- version = "3.8.7";
+ version = "3.8.8";
src = fetchurl {
- url = "https://elpa.nongnu.org/nongnu/helm-core-3.8.7.tar";
- sha256 = "1sak74v3gg34zzlbbgvlzvg7gw32fhcbxp5kigigmwvvbj5imgs7";
+ url = "https://elpa.nongnu.org/nongnu/helm-core-3.8.8.tar";
+ sha256 = "0wg21425ki8n8d954lkmlyci6awwwv53jg4gn5z495vh27qiv3qn";
};
packageRequires = [ async emacs ];
meta = {
@@ -2358,6 +2358,21 @@
license = lib.licenses.free;
};
}) {};
+ sweeprolog = callPackage ({ elpaBuild, emacs, fetchurl, lib }:
+ elpaBuild {
+ pname = "sweeprolog";
+ ename = "sweeprolog";
+ version = "0.4.5";
+ src = fetchurl {
+ url = "https://elpa.nongnu.org/nongnu/sweeprolog-0.4.5.tar";
+ sha256 = "17dbrn2yvc6ib4dig410kbmvpwp4iz6q9hx6g0mk3vxqjrmgwyls";
+ };
+ packageRequires = [ emacs ];
+ meta = {
+ homepage = "https://elpa.gnu.org/packages/sweeprolog.html";
+ license = lib.licenses.free;
+ };
+ }) {};
swift-mode = callPackage ({ elpaBuild, emacs, fetchurl, lib, seq }:
elpaBuild {
pname = "swift-mode";
@@ -2518,10 +2533,10 @@
elpaBuild {
pname = "tuareg";
ename = "tuareg";
- version = "2.3.0";
+ version = "3.0.1";
src = fetchurl {
- url = "https://elpa.nongnu.org/nongnu/tuareg-2.3.0.tar";
- sha256 = "0a24q64yk4bbgsvm56j1y68zs9yi25qyl83xydx3ff75sk27f1yb";
+ url = "https://elpa.nongnu.org/nongnu/tuareg-3.0.1.tar";
+ sha256 = "0y98gwnbrcj3csd9yilk1izgzmp1ds5dh3y1bxgb2fzrjir3i13f";
};
packageRequires = [ caml emacs ];
meta = {
diff --git a/pkgs/applications/editors/emacs/elisp-packages/recipes-archive-melpa.json b/pkgs/applications/editors/emacs/elisp-packages/recipes-archive-melpa.json
index 2faff33b5d07..1a630831d89a 100644
--- a/pkgs/applications/editors/emacs/elisp-packages/recipes-archive-melpa.json
+++ b/pkgs/applications/editors/emacs/elisp-packages/recipes-archive-melpa.json
@@ -204,11 +204,11 @@
"repo": "ymarco/auto-activating-snippets",
"unstable": {
"version": [
- 20220426,
- 2058
+ 20220930,
+ 52
],
- "commit": "566944e3b336c29d3ac11cd739a954c9d112f3fb",
- "sha256": "0walpgv18gx11hvij1mf9hgsd1x40rhccbzsnwsh86lka1g3na34"
+ "commit": "e92b5cffa4e87c221c24f3e72ae33959e1ec2b68",
+ "sha256": "1nl7wm4l30hjcbqrvdci66aa6ax32ih46n58q3imc46z8c6rhqxh"
},
"stable": {
"version": [
@@ -2197,15 +2197,15 @@
"repo": "alan-platform/AlanForEmacs",
"unstable": {
"version": [
- 20220923,
- 1554
+ 20220928,
+ 1229
],
"deps": [
"flycheck",
"s"
],
- "commit": "01466bf6451104e9e996d157f1258fe0e19e049f",
- "sha256": "1phpj6jbj8jbk90k3vi8y9m1faz3cxs3wkj2n17n5d2pmyjy77nb"
+ "commit": "8856871633ef961a0dd7cf019be44212cfe1add1",
+ "sha256": "1pmgp69w0vi14rzrrkxn8gwhvb1yfczcw73h5jfsawhislg2vq8a"
},
"stable": {
"version": [
@@ -2336,14 +2336,14 @@
"repo": "cpitclaudel/alectryon",
"unstable": {
"version": [
- 20211018,
- 321
+ 20220925,
+ 2236
],
"deps": [
"flycheck"
],
- "commit": "5505e00e5c8a5080ee0e640e5dc8de947e3b9aff",
- "sha256": "053pr895zdd0pklxvx4aa4lzn6lds1zgqd8adp9k1qcampxh64np"
+ "commit": "8a1f3054c97fc86d628413800cfef75577c43485",
+ "sha256": "11nsa1jh3d3q848hdx8qrqkk427pilldkai119plv3rnmf2sqckc"
},
"stable": {
"version": [
@@ -2484,11 +2484,11 @@
"repo": "domtronn/all-the-icons.el",
"unstable": {
"version": [
- 20220823,
- 1719
+ 20220929,
+ 2303
],
- "commit": "4a4d6269b8b85b0b15954f063e6ce378630d80c0",
- "sha256": "0y1dpxv8hha8pcxssayy0gaa7jd15ad0hwpmpixg164xzjn0cnb6"
+ "commit": "51bf77da1ebc3c199dfc11f54c0dce67559f5f40",
+ "sha256": "1idzamhpfgcdiwap20s3cc258kawxa1k46c4s79xslfbdqy0abdy"
},
"stable": {
"version": [
@@ -2526,14 +2526,14 @@
"repo": "wyuenho/all-the-icons-dired",
"unstable": {
"version": [
- 20220620,
- 1939
+ 20220929,
+ 1135
],
"deps": [
"all-the-icons"
],
- "commit": "b5d3af1e47de09e6ac80d4d7fba516e6a3c38e26",
- "sha256": "1a72ka2sfnn644kgz6ag8sz3j8dxkbmlyd5rv7fq9qwj7487n2yh"
+ "commit": "bcaed35bb3ad7fc46007f16e0d670beb82bb613e",
+ "sha256": "1ns87m2xgdp9q86iqbswz746gb896d0n0wv8b92n158hhz81c8g9"
},
"stable": {
"version": [
@@ -3227,11 +3227,11 @@
"repo": "bastibe/annotate.el",
"unstable": {
"version": [
- 20220916,
- 1547
+ 20220930,
+ 1003
],
- "commit": "f166cca70bc5d54da6027a590b8407bc08deece6",
- "sha256": "0n0jir0zhhskxm7z5kz988h9gxbd6mgiyyrixggjr7yyfg3m22r8"
+ "commit": "0c3342bd55c827b8e4529fd5ee2aa40053a334f6",
+ "sha256": "0y9v37y8l1mx14lggddlimlmivzz0ll4pwhq87szf50bv23xiq7r"
},
"stable": {
"version": [
@@ -3721,11 +3721,11 @@
"repo": "alexmurray/apparmor-mode",
"unstable": {
"version": [
- 20220920,
- 1225
+ 20220930,
+ 1134
],
- "commit": "fdd520249a882eaf7b52dfaba49887149697741b",
- "sha256": "0v179is71xpz3jn049wqib8dgjncv6pq0i9kx37rkg9djy06z0m8"
+ "commit": "9b0ba33995172044068fa2609d97b1015f9fb513",
+ "sha256": "0ncp3aq5b2xmr3khy2c6hz8492k56j8v8lfkqqky7n028zy90nv5"
}
},
{
@@ -4272,20 +4272,20 @@
"repo": "jwiegley/emacs-async",
"unstable": {
"version": [
- 20220922,
- 1622
+ 20220928,
+ 1909
],
- "commit": "dbac40131f6644bf80fd27581b62361e743fb4a8",
- "sha256": "04vx7a7rs8klfadafdik5x917zkz5hjbj9ckks6afq2d73pcj8lm"
+ "commit": "53addd02fbad33765f508f8e6254ebd44e1f81e5",
+ "sha256": "18pysi1pf6hbv6w0nq50j5xclvgd006iqqijh44wck9hxhdwyfr1"
},
"stable": {
"version": [
1,
9,
- 6
+ 7
],
- "commit": "370ead445f5d0fc21b7338e05a64830c410368a3",
- "sha256": "1q480ss2jgijdpy6pa4xrjni9pf5q6dwf8hv052fhdpi55bmfdn2"
+ "commit": "53addd02fbad33765f508f8e6254ebd44e1f81e5",
+ "sha256": "18pysi1pf6hbv6w0nq50j5xclvgd006iqqijh44wck9hxhdwyfr1"
}
},
{
@@ -5477,14 +5477,14 @@
"repo": "abo-abo/auto-yasnippet",
"unstable": {
"version": [
- 20191015,
- 942
+ 20220927,
+ 857
],
"deps": [
"yasnippet"
],
- "commit": "db9e0dd4335b2202cd5dac95bbbc87a1032d9bbe",
- "sha256": "0az8pip0gsq5xqpfizcz4rmj5hmkvz1fdkg996k9qqacp17p2caj"
+ "commit": "7ef65b8e128bcf8afc52a702402c7943839abfb9",
+ "sha256": "01mdijgngh4bjngxcs81d7v8f6r28ly355gz4f87dbqaxvsdj92f"
},
"stable": {
"version": [
@@ -9960,11 +9960,11 @@
"repo": "ocaml/caml-mode",
"unstable": {
"version": [
- 20220503,
- 1742
+ 20220928,
+ 835
],
- "commit": "d3d2f5dbeccd0f415cbb28fab2015dc678e80bbd",
- "sha256": "0w9ypvvkm8qx88rldkhysp12inc8izn1qj9rpcchk8xzs0s7sqxp"
+ "commit": "a970f303065fe176a920db0466dacf3e2a20b56b",
+ "sha256": "1bd21fhcjgz7iadbz66yyzb7d88mlan7mkxm8zm0jnlkhdmixc9v"
},
"stable": {
"version": [
@@ -10094,8 +10094,8 @@
"repo": "Titan-C/cardano.el",
"unstable": {
"version": [
- 20220906,
- 1126
+ 20220929,
+ 1312
],
"deps": [
"bech32",
@@ -10109,8 +10109,8 @@
"yaml-mode",
"yasnippet"
],
- "commit": "2d414d39b4824bf4de97b98f130da24c70ca916e",
- "sha256": "0ap82dyvzv19w89xinxfqq2ixsr8yrg3wq9lraxy87m6djjhlcy0"
+ "commit": "833a33780ea4fd95e99495b05fc19abac0412e5c",
+ "sha256": "1rzab8kqmrgsp3firl0v7bcbasv499gpj7qrm2g65lp1vygqh8m9"
}
},
{
@@ -10694,15 +10694,15 @@
"repo": "ema2159/centaur-tabs",
"unstable": {
"version": [
- 20220920,
- 510
+ 20220926,
+ 1247
],
"deps": [
"cl-lib",
"powerline"
],
- "commit": "eac6522bb9c19c525770822d9f14b4d0ff07324c",
- "sha256": "1z7b3s29xb0n25bfbbm1wrcap9dvig5zi5fcnvlyrl9si9565948"
+ "commit": "7d9fad0daa44ffb2acecf6525759e46e08e35f2c",
+ "sha256": "0la8fmwirspg7m453qhfb64sqryl59dxc1lfmjkh6mzf85nqbl1i"
},
"stable": {
"version": [
@@ -10803,11 +10803,11 @@
"repo": "nbarrientos/cern-ldap.el",
"unstable": {
"version": [
- 20220830,
- 1909
+ 20220925,
+ 1550
],
- "commit": "1e8ac2029ade5e7755ec76f15a0948a10c955a8f",
- "sha256": "11gc34qrsmh814ma4y8asxb1fvy0rvhmch4yv2ydimgfblhlffxs"
+ "commit": "4851e952318e11ea9693efe2e460983d5c6dffcd",
+ "sha256": "0axaynilvccj0bwv5xa6zbk5m1vvxgy1avngvpdqqxp8hwm4m1rj"
},
"stable": {
"version": [
@@ -11030,11 +11030,11 @@
"repo": "GrammarSoft/cg3",
"unstable": {
"version": [
- 20220901,
- 1202
+ 20220930,
+ 907
],
- "commit": "30a33cabfdaea2d9b54a040f88cf741ea43738b2",
- "sha256": "07jcfw9cy7d5h57mna30a8q1nq1qvy0jhxrlz18jl5nd09hr9lh6"
+ "commit": "4d0fcdd3f9f33832af357928762d785d88b3d494",
+ "sha256": "0nh6lgwrd776n3chk3wyla95hf5jhkcmbmnz25d5lsk35nb2fwb8"
},
"stable": {
"version": [
@@ -11711,8 +11711,8 @@
"repo": "clojure-emacs/cider",
"unstable": {
"version": [
- 20220919,
- 1610
+ 20220930,
+ 1032
],
"deps": [
"clojure-mode",
@@ -11722,8 +11722,8 @@
"sesman",
"spinner"
],
- "commit": "101671c06df301833b3dcf6a5ed83a028efc334f",
- "sha256": "16y01kwm5zyhczw7lpmxcql6jaka2bcdswbn0xnwkld7m4dnjamd"
+ "commit": "e75706f53bd0470bcec0d1e3a4cef6a043a20fc7",
+ "sha256": "09k527ah8vh02mvzy28y5hwr6dvzqgdjxbjwv9q4fc1bvmfmnl0l"
},
"stable": {
"version": [
@@ -12021,16 +12021,16 @@
"repo": "emacs-citar/citar",
"unstable": {
"version": [
- 20220913,
- 1718
+ 20220925,
+ 2234
],
"deps": [
"citeproc",
"org",
"parsebib"
],
- "commit": "60cc30e4aa6947a9a06db39a4198162fa5959f5e",
- "sha256": "124r0s9qc40d7hca7l37l4b40dcyd6vcliszp0cf5wc6g13m7n7k"
+ "commit": "219a69c519fa77ba609b05ac5dbcb9ae357d383b",
+ "sha256": "02ay11a5nn7j1f3f3zjrsrp6j1hsyl1k58v8cx4mi5m73wbchc98"
},
"stable": {
"version": [
@@ -12085,15 +12085,15 @@
"repo": "emacs-citar/citar-org-roam",
"unstable": {
"version": [
- 20220913,
- 1114
+ 20220927,
+ 1834
],
"deps": [
"citar",
"org-roam"
],
- "commit": "29688b89ac3bf78405fa0dce7e17965aa8fe0dff",
- "sha256": "06xzsrb1ihadwysxpghhcpl315rrv8zrfay03jwzqmm4hyrxvz6i"
+ "commit": "27105d0a9578279560cd79cfad5871e7e603bc58",
+ "sha256": "192p4bfa49mj5iq70lazi828gzwd1z7dfmckg4xfmdsd58crygh3"
},
"stable": {
"version": [
@@ -12906,11 +12906,11 @@
"repo": "clojure-emacs/clojure-mode",
"unstable": {
"version": [
- 20220905,
- 1237
+ 20220928,
+ 557
],
- "commit": "d47298212ffc486ade3f2428f103feba3a467af0",
- "sha256": "0jh2navzljxkna04lf95cqbvk9bzyfcjw9knvg5b331q6s9zl9ck"
+ "commit": "414157c3e523e80cc44dca8f86f1853122ee5f6b",
+ "sha256": "1ldzbc7zrkqnkf3gm69q94ys4my984zps1gymw5sdx6gn9qc96iv"
},
"stable": {
"version": [
@@ -16466,14 +16466,14 @@
"repo": "minad/consult",
"unstable": {
"version": [
- 20220914,
- 920
+ 20220930,
+ 2231
],
"deps": [
"compat"
],
- "commit": "76aab86015c3d7628dbd5f92b2dd8ab9aeadac8d",
- "sha256": "0wnsmn978ivf9vhis0by467q0fp4gprq169px41q4z4zaf6fcpjj"
+ "commit": "af11b72f628c1ff0b051bb4180bfdb7833d64e40",
+ "sha256": "0fmaxga2xws2xnxfxrqkvjacba1a1y6811s2m6bibfcm8iyldpyk"
},
"stable": {
"version": [
@@ -16780,27 +16780,27 @@
"repo": "jao/consult-notmuch",
"unstable": {
"version": [
- 20220513,
- 1647
+ 20220929,
+ 2111
],
"deps": [
"consult",
"notmuch"
],
- "commit": "4138855cddee0ef126cff6a5fc5ca9c49fd2682d",
- "sha256": "1wqp0pp408bxywxzq3gk1hk5vr19k4vsz5b979b4gbk89i1gxamb"
+ "commit": "29e9a3d0d4ed2e8bcefbf009103f7e5665b6c260",
+ "sha256": "18r47cj89qli534irah3lwwzsnik5bcf61clnrkhafqv9y51m67z"
},
"stable": {
"version": [
0,
- 7
+ 8
],
"deps": [
"consult",
"notmuch"
],
- "commit": "883527072b56bb09dd921800bca13860caaa4ffe",
- "sha256": "0xzpkpf2sb89qkbqcrwddp4pgnzdjp40bc5da22jq9r4pf67y7qs"
+ "commit": "29e9a3d0d4ed2e8bcefbf009103f7e5665b6c260",
+ "sha256": "18r47cj89qli534irah3lwwzsnik5bcf61clnrkhafqv9y51m67z"
}
},
{
@@ -20905,11 +20905,11 @@
"repo": "niklaseklund/detached.el",
"unstable": {
"version": [
- 20220923,
- 1411
+ 20220928,
+ 806
],
- "commit": "4d63d7d6aa4668fb7bd141c9701075f2dc7d67a5",
- "sha256": "064xr2gjl29zx8g6sb7fj2h2v2rpqpzrr6pd4nj4r5pah1hi7xcv"
+ "commit": "772ac746a9e8350f24ff548301ef13986e5b21d9",
+ "sha256": "129y80yya8v3a8iz9z8nix44mivfkd5p3q454ancynv89pkbhsl2"
},
"stable": {
"version": [
@@ -21031,11 +21031,11 @@
"repo": "radian-software/diary-manager",
"unstable": {
"version": [
- 20220508,
- 128
+ 20220929,
+ 2042
],
- "commit": "c538504e606208fa902d040e54188072df6193d0",
- "sha256": "1j10wl00mgfpw3554jngkmn44z4s28m5qvw3lg0zgca50xkjnyqa"
+ "commit": "56c739224e5bb845d275bfe3f4e420285de3a929",
+ "sha256": "1248xyb9rmlf07ag7hnvcisgljvacia72s9l0grihjfa3mrlmdks"
},
"stable": {
"version": [
@@ -21638,14 +21638,14 @@
"repo": "tilmanrassy/emacs-dir-treeview",
"unstable": {
"version": [
- 20220820,
- 27
+ 20220918,
+ 42
],
"deps": [
"treeview"
],
- "commit": "1e516096344e13cc5c19aeaed135a85de01b4561",
- "sha256": "071m5rshcjbbv6xrz0dqm9j4m6nhawwq8flhxwjb5ab9vidjby84"
+ "commit": "3430eb32d824270181fc74bac7334fa7c4b5be9a",
+ "sha256": "0grvkyasj1mck8i7qhclgidcx9zqil9pm1n5gk4h659fr9ji283k"
}
},
{
@@ -22612,14 +22612,14 @@
"repo": "alexluigit/dirvish",
"unstable": {
"version": [
- 20220923,
- 1034
+ 20221001,
+ 426
],
"deps": [
"transient"
],
- "commit": "36c8cb289fa57e6eb6b90080548deadeb4fc7838",
- "sha256": "09ikiijvqvji3rn9vb7cr32d9ap7r1b73rmm3kmlv18120fp29kb"
+ "commit": "a877ba816f907daea2d86bd10754bec6484e753a",
+ "sha256": "0xq2h5fbfzd3r4hxy0lp0zz12a9mhf8x58ddxk1s6j80v8xr5v0b"
},
"stable": {
"version": [
@@ -23710,15 +23710,15 @@
"repo": "seagle0128/doom-modeline",
"unstable": {
"version": [
- 20220924,
- 1354
+ 20220930,
+ 952
],
"deps": [
"compat",
"shrink-path"
],
- "commit": "3e022a7a12a1a2e2fad0133b215266d73467ff31",
- "sha256": "1b68c1bal7z56zg76i1lzmk2kylc75g49kq6i1f9gk5y71w888y1"
+ "commit": "5dbb43411e79c1c67cdcd05e04c037c229c8ea87",
+ "sha256": "03zj28dvf7dh2j21ffdn7liblg7j72wx3yfijx42w9v9hfgcya1m"
},
"stable": {
"version": [
@@ -24527,11 +24527,11 @@
"repo": "xenodium/dwim-shell-command",
"unstable": {
"version": [
- 20220910,
- 1225
+ 20220928,
+ 2032
],
- "commit": "e5d427e4e63ca7b13960b5ad69893186ae3a9ceb",
- "sha256": "0b5yy09li1v57q8bbf19m51s1w69zj5vnkfds12sdvdlrra7zqr0"
+ "commit": "6f599480be69437171fb4e9d58fd29b20731096f",
+ "sha256": "0qr50ivwgbpygp9kscm6h71jjys06s2jib1k8q35xahaah4dbrkf"
}
},
{
@@ -25025,30 +25025,30 @@
"repo": "masasam/emacs-easy-hugo",
"unstable": {
"version": [
- 20220616,
- 2302
+ 20220928,
+ 405
],
"deps": [
"popup",
"request",
"transient"
],
- "commit": "46aa41a207c9644ef9789512e025d4e7c7f3d5ea",
- "sha256": "07nhcnq0b1wha1nd7y6mzqgf7x5dzi4pg11q827fjfap7aw9mh6p"
+ "commit": "31e2f6d6d11be17576e135dd28d5ed441462d77d",
+ "sha256": "0jfm0cz65rlwb9ycdwd5lpwv0dh77ixd64bbjli4y4g5ilay6dx1"
},
"stable": {
"version": [
3,
9,
- 56
+ 57
],
"deps": [
"popup",
"request",
"transient"
],
- "commit": "46aa41a207c9644ef9789512e025d4e7c7f3d5ea",
- "sha256": "07nhcnq0b1wha1nd7y6mzqgf7x5dzi4pg11q827fjfap7aw9mh6p"
+ "commit": "31e2f6d6d11be17576e135dd28d5ed441462d77d",
+ "sha256": "0jfm0cz65rlwb9ycdwd5lpwv0dh77ixd64bbjli4y4g5ilay6dx1"
}
},
{
@@ -26113,8 +26113,8 @@
"repo": "joaotavora/eglot",
"unstable": {
"version": [
- 20220924,
- 854
+ 20220926,
+ 1235
],
"deps": [
"eldoc",
@@ -26124,8 +26124,8 @@
"seq",
"xref"
],
- "commit": "83052a5e61267a2e1c091c1bd4301ea81f1bc6d7",
- "sha256": "0irxjlfplmixshywsxpq7yknfy9g2m3dpky1mk6psxbk7h7swyyp"
+ "commit": "a49f620f53d00efe471dbceccc795329d6d40e5e",
+ "sha256": "18vgyjagk8s37dm30pqra1xk12rg0nv9npmm2q9vb44r47kbr02l"
},
"stable": {
"version": [
@@ -27306,8 +27306,8 @@
"repo": "jeetelongname/elfeed-goodies",
"unstable": {
"version": [
- 20220614,
- 49
+ 20220929,
+ 1136
],
"deps": [
"cl-lib",
@@ -27316,8 +27316,8 @@
"popwin",
"powerline"
],
- "commit": "c9d9cd196746add3010d74f43b5c9866562f39fb",
- "sha256": "1b80srhravjf791qlx42hmzlprzlf7p8faqn5cljh3nrrridivxn"
+ "commit": "ff9fa91e29c9cd06fdddedc1eabbdf4d3cb93e8c",
+ "sha256": "1s7f21cw84qv59hj3bnsph68p3mhzvdcsl9v095787pcddc85s3b"
}
},
{
@@ -29923,15 +29923,15 @@
"repo": "emacscollective/epkg",
"unstable": {
"version": [
- 20220917,
- 1359
+ 20220927,
+ 1207
],
"deps": [
"closql",
"compat"
],
- "commit": "01df3974f5bf08d0984619dbea4994e3863208f6",
- "sha256": "0zvybm76nqhpmbmhqj6l7nc3wv2wvi6jfwhj9qfz3ahki3cadsd6"
+ "commit": "582759aa230e1de252f7b60711e38034769ab602",
+ "sha256": "1cgxqaif9azbmfi101alca1x728jm5l5dzly9fczamlbz587jaac"
},
"stable": {
"version": [
@@ -31556,11 +31556,11 @@
"repo": "emacs-ess/ESS",
"unstable": {
"version": [
- 20220902,
- 818
+ 20220915,
+ 2126
],
- "commit": "ecd8865bbbdf6664b66be5ffd5d4e62d5af78240",
- "sha256": "09x0hfipb2jmg8q01nn706vn7s8ks23jzwmg9vjndlv0ki94ip62"
+ "commit": "f45542e723d7415f5e22bcf39f25e31d055d168c",
+ "sha256": "088dd8mmsabpg639r08rv8kz6qzmlmgfvqln8k26h0szzrin01di"
},
"stable": {
"version": [
@@ -31724,15 +31724,15 @@
"repo": "ShuguangSun/ess-view-data",
"unstable": {
"version": [
- 20220920,
- 1548
+ 20220927,
+ 353
],
"deps": [
"csv-mode",
"ess"
],
- "commit": "8f00579c79d12f359ce6aff828a7462c421c962d",
- "sha256": "0ww9b8gzih3klaq490k8hyizx867drcsds6kn8hjfqlj8fl0vh9q"
+ "commit": "1b48afef4dcc8fbaed1af98fade7f0df84bd6871",
+ "sha256": "0nybmqj166a5qrhcn0a7mlwdwfijm8hgzizvd3lycycak3ixq6xf"
},
"stable": {
"version": [
@@ -32174,15 +32174,15 @@
"repo": "emacs-evil/evil",
"unstable": {
"version": [
- 20220830,
- 1232
+ 20220929,
+ 1317
],
"deps": [
"cl-lib",
"goto-chg"
],
- "commit": "26ec0cda1bcb899ae37086a1268a055484171519",
- "sha256": "1klh8zx0pmq4lca8c33714h1qczxp3wlqxaqdg31lawvg3cdm5hp"
+ "commit": "0aaf5944db224f1d8948acac64e2b703ed151446",
+ "sha256": "0b0frclfbh9k5igv5gdcgb9cwnwmnxcmkf5sgsmm8glrnvgblg1q"
},
"stable": {
"version": [
@@ -32375,15 +32375,15 @@
"repo": "emacs-evil/evil-collection",
"unstable": {
"version": [
- 20220810,
- 1901
+ 20220926,
+ 1733
],
"deps": [
"annalist",
"evil"
],
- "commit": "665d5c99e216c7b18856f7ceda7c91ea5669f904",
- "sha256": "0vmwd85vc6hcyfzg4zwhsilp6y0kmygnyfn02ham0b6gc2kakz23"
+ "commit": "f45f4ab142adc02582e88d18e8f7ac904802b4c1",
+ "sha256": "04ak4hjg8dlzcx104lgmx66ip57z9vswhjhn2sx2b2sfyfhkbi6y"
},
"stable": {
"version": [
@@ -32941,11 +32941,11 @@
"repo": "redguardtoo/evil-matchit",
"unstable": {
"version": [
- 20220608,
- 1134
+ 20220927,
+ 220
],
- "commit": "271551560c3c8c066b29d335f781ff9b5aefe746",
- "sha256": "1vzpmr33smi1kgcrxj7jl8wvk1ffvy2bf6p6pki0r53lk03mf8fr"
+ "commit": "ec3dd819983b2d824142efddd46ef29b46a7c454",
+ "sha256": "00yclv8fky3czwnp3qfvcbbadqagqzyf6cxq50vyhmvjhnf9xspi"
},
"stable": {
"version": [
@@ -33895,15 +33895,15 @@
"repo": "meain/evil-textobj-tree-sitter",
"unstable": {
"version": [
- 20220905,
- 930
+ 20220930,
+ 1401
],
"deps": [
"evil",
"tree-sitter"
],
- "commit": "c2408aa1342fddbde5e877e405fdd2eb03a07779",
- "sha256": "1aw9pzsnl3wm01a1vc3y7x9cb6pqbb6w521gqiqxjfn8r6xjaljl"
+ "commit": "fad2178f4455301afcafcf93d93fa5c5ca2aed47",
+ "sha256": "00yfc4hwbsdm9qfvi8pbva7ifr2lxrcrnb16dv05jmfssx8kdpdk"
}
},
{
@@ -34402,6 +34402,31 @@
"sha256": "02q531c9wvdwflhggflnci4a36h2bb90bq25bbhw6i2lvrd9sk55"
}
},
+ {
+ "ename": "exercism",
+ "commit": "da659316f2b8c8b326e04ee1e55fceb105128103",
+ "sha256": "0vy86v7ya9lqizl7ldrnlzcd12219dksrgbgvyla0yr6i8msqh4w",
+ "fetcher": "github",
+ "repo": "anonimitoraf/exercism.el",
+ "unstable": {
+ "version": [
+ 20221001,
+ 1037
+ ],
+ "deps": [
+ "a",
+ "async",
+ "async-await",
+ "dash",
+ "persist",
+ "request",
+ "s",
+ "transient"
+ ],
+ "commit": "44dca0c889ac605777257ec3db442263772bb2c6",
+ "sha256": "1nzjfbyl0n4h9h9rrb037i65xd6j22ymvhb5irmrqvxbb2fvfs7w"
+ }
+ },
{
"ename": "exiftool",
"commit": "4835a76909d020781021e747fbc341111a94dbfa",
@@ -35632,11 +35657,11 @@
"repo": "technomancy/fennel-mode",
"unstable": {
"version": [
- 20220825,
- 1549
+ 20220928,
+ 842
],
- "commit": "a3d7564f209c32b804852b7fe8056c1952414f08",
- "sha256": "06w5q339k0nr0cvzc3s7zmk82124n0qikyyz918wvwgw8widcj3f"
+ "commit": "9173638b9a1f15e94a05440fdaec7a2f9ea45438",
+ "sha256": "0bb59s38lwpkmbwxld0z69jj3fk6h97yn2gqv51xm2rbkg2s92wc"
},
"stable": {
"version": [
@@ -36995,8 +37020,8 @@
"repo": "flycheck/flycheck",
"unstable": {
"version": [
- 20220823,
- 1254
+ 20220928,
+ 1355
],
"deps": [
"dash",
@@ -37004,8 +37029,8 @@
"pkg-info",
"seq"
],
- "commit": "600b3bffda3862121d96bbc5c1f8990fa9033a82",
- "sha256": "0nv8ln8mr63kn1c41amj88isl8f3imqhb0bqrpl6g6frm2rfwxkm"
+ "commit": "d72c29fec85f1da6584475d88c1265f80e1275ad",
+ "sha256": "1l39inrl26z9z13hdvbi8wk0zqnx31j4g2bs5nv80fxc8j5sxqna"
},
"stable": {
"version": [
@@ -39483,15 +39508,15 @@
"repo": "abingham/flycheck-vale",
"unstable": {
"version": [
- 20190609,
- 1533
+ 20220929,
+ 608
],
"deps": [
"flycheck",
"let-alist"
],
- "commit": "f08249535348d046d0974b9c20fe1b7dd3cd2660",
- "sha256": "0xjaxckl5rajlxq9a4c9n8l4605n2xkkyd2sdj38kd9w9a428wvz"
+ "commit": "7c7ebc3de058a321cb76348a01f45f02dc55d2f0",
+ "sha256": "086b2ljx3n2jpjm2vl7p0mnjbhx3v45kjrxd5y7q4ilhi29g5cpf"
}
},
{
@@ -39689,6 +39714,19 @@
],
"commit": "023472345980c251429046d6a20e85c76f9e928e",
"sha256": "1zfysavx2w5mvy2mgi3v32205f1b7zfcrabi17rzi0v88h8j46a8"
+ },
+ "stable": {
+ "version": [
+ 1,
+ 0,
+ 1
+ ],
+ "deps": [
+ "flymake",
+ "let-alist"
+ ],
+ "commit": "6fb90eefc2ad6214127de2ccff5160bf1d47eb87",
+ "sha256": "1dxy1bljvd8rar0pivdrfahmgnnjlxm0mlks8mzw3l7k7b7jar6k"
}
},
{
@@ -40713,6 +40751,21 @@
"sha256": "0v8sf5m0mygqahjyadxgffdf7p59wb0qnghyxajhc69sbg58hnnd"
}
},
+ {
+ "ename": "flymake-sqlfluff",
+ "commit": "a24b706cdc277fec9d3998574430882f318e26f8",
+ "sha256": "0pqwyaifdbj5lrwz5ifqmp2r2d4wjvqvr09gpgz54ijm3bjlb38q",
+ "fetcher": "github",
+ "repo": "erickgnavar/flymake-sqlfluff",
+ "unstable": {
+ "version": [
+ 20220925,
+ 2144
+ ],
+ "commit": "b76f335555c9a94ffc3d7281f3dca345de474eed",
+ "sha256": "0snghmn59xcfqb90rgfph8fviapcwhh7d76hls54ixc6lc5za42p"
+ }
+ },
{
"ename": "flymake-swi-prolog",
"commit": "a3645b08cb46e3d91081da7baa982b5283918447",
@@ -41407,11 +41460,11 @@
"repo": "usaoc/elisp-for",
"unstable": {
"version": [
- 20220923,
- 1018
+ 20220929,
+ 1246
],
- "commit": "5df8659ef315882b90f84da2eb9adf95443b571c",
- "sha256": "0xm4l2kiy5j1pjjrja7791msb37fi26nabfhnacxaiagxksxlda5"
+ "commit": "22de9e71e0b7f831da4e4a756c75abcc73a02fad",
+ "sha256": "12asqfhy6bmwg7k0iysvv1z85cvnyrwrl8bzbjrx7giwyy3rk30l"
},
"stable": {
"version": [
@@ -41582,15 +41635,15 @@
"repo": "lassik/emacs-format-all-the-code",
"unstable": {
"version": [
- 20220909,
- 1032
+ 20220928,
+ 1045
],
"deps": [
"inheritenv",
"language-id"
],
- "commit": "48f79e894c04b0c73c6334194ee17d7f72046c83",
- "sha256": "1ri9cbbd73g3a6wlmj8g4xx5vwfnxr2r7sdkr0c91yfihai51xg1"
+ "commit": "d01a0702472d159bacc704394198a77a64d3c79b",
+ "sha256": "1r406npg5f2wqysj9rligcjjr68m44ja8n8v82rf8zpi6v1pmp8h"
},
"stable": {
"version": [
@@ -43488,16 +43541,16 @@
"repo": "thisch/gerrit.el",
"unstable": {
"version": [
- 20220812,
- 2150
+ 20220928,
+ 227
],
"deps": [
"dash",
"magit",
"s"
],
- "commit": "4de561d1295d4c86ca9b159ab0c746bedc2d0380",
- "sha256": "1k1gr6hnb9warbaglhfzarm145afsrv55xdkq6wq6s0imac742ba"
+ "commit": "38e53dfa782d65c7f93db8368b0c49f619c1f09e",
+ "sha256": "0rjrv7y4zkzry2fbsi55ccrnmasd0l8cpd0rapf0sskwc1wldymi"
}
},
{
@@ -44846,30 +44899,30 @@
"repo": "akirak/github-linguist.el",
"unstable": {
"version": [
- 20220418,
- 22
+ 20220928,
+ 2013
],
"deps": [
"async",
"map",
"project"
],
- "commit": "e1055cba19d82620a735e8e40d094b538e1f4d94",
- "sha256": "00abshhhm6pvzgwaqhw8g0gwfs915hpdnfh5bqxr9434a56hgkd2"
+ "commit": "73f9f52e1f626e866d8becc7a3671630449764c2",
+ "sha256": "0vsab3jwkck9l42j22j2ndcj6njqbi516z7ayhlnv2z10ifjwfp7"
},
"stable": {
"version": [
0,
1,
- 1
+ 2
],
"deps": [
"async",
"map",
"project"
],
- "commit": "6e3fc58a465e6726dcba6da038f959028c62223b",
- "sha256": "1zli3xzp44c61jrg0fn7h39ianxjp2r24sswm3i99hnx052pp8fp"
+ "commit": "f8f28745542d7e4300d73c6bf006ce48b6657947",
+ "sha256": "0a5ibyg7hncwiavngzvivhf5sbhp3czsicyfy1rpfijmbjm4whyl"
}
},
{
@@ -47875,11 +47928,11 @@
"repo": "ROCKTAKEY/grugru",
"unstable": {
"version": [
- 20211119,
- 815
+ 20221001,
+ 1525
],
- "commit": "1b3b807e84cb250f0cc70876a438fed3b27eb756",
- "sha256": "1p99lrq6p6xyn9lc2zmf68ns70kayhri1xls0h1h6ibxsqzvxyac"
+ "commit": "d03ccd6314d474f3e6beadc69c0b6ce32af62f07",
+ "sha256": "1s5xig6pbkbnb0xn7rp3a02ig0pzdwxqj54f3bjda0c37ch0l1cj"
},
"stable": {
"version": [
@@ -48592,14 +48645,14 @@
"repo": "alphapapa/hammy.el",
"unstable": {
"version": [
- 20220901,
- 1102
+ 20220926,
+ 1800
],
"deps": [
"ts"
],
- "commit": "bd51cfd903d00a3302542dc2a8a17fe8b4d48107",
- "sha256": "1vn0jzdkzjwvzmm824dgjdwhgfjpg4swsky61w2z9d57fl8p04an"
+ "commit": "62d3262a60d0f6f07920919bb3c47b57cb11bab2",
+ "sha256": "0q9lz0pz501l2s5g5hcn62ii2xfma04csij1rc6k3wzv6gnx4ary"
}
},
{
@@ -49032,11 +49085,11 @@
"repo": "emacsorphanage/haxe-mode",
"unstable": {
"version": [
- 20210108,
- 1835
+ 20220930,
+ 251
],
- "commit": "fb3f3c9514e652f8955a67baeae13de264996860",
- "sha256": "05kaxcazbr51chcmlx0fscwk32blj3lzndkr0qpbwfrn8n6mcmrg"
+ "commit": "4d51bd4bf75aef53d1671e22ce6555e4daf883db",
+ "sha256": "0dfjr6k0w996ygds0d5w0msx83bincvwnmmwaq8sxhdi3rnx26r2"
},
"stable": {
"version": [
@@ -49175,28 +49228,28 @@
"repo": "emacs-helm/helm",
"unstable": {
"version": [
- 20220924,
- 1201
+ 20220928,
+ 1917
],
"deps": [
"helm-core",
"popup"
],
- "commit": "3c64aa842a7d382460cacc9d6fbe0e39d012b4f5",
- "sha256": "0j0sfm8an38d9lfgaijrg8abjwz63qrmh4zq8vhrb572gam9kxn8"
+ "commit": "0a9a1e32cf130d181b26e23919402c8c25f41996",
+ "sha256": "1i8hbdp5sg99h3imqydk4wd7mqsa04113yavk5sx1wgc17jm1l42"
},
"stable": {
"version": [
3,
8,
- 7
+ 8
],
"deps": [
"helm-core",
"popup"
],
- "commit": "4ede199d5d1b7050486a0fdeecbbbf49fef31118",
- "sha256": "1a8zkp00ahb84ww5072naxwllzbjhi7ccarkk2d7xsykn5lig54c"
+ "commit": "0a9a1e32cf130d181b26e23919402c8c25f41996",
+ "sha256": "1i8hbdp5sg99h3imqydk4wd7mqsa04113yavk5sx1wgc17jm1l42"
}
},
{
@@ -50081,26 +50134,26 @@
"repo": "emacs-helm/helm",
"unstable": {
"version": [
- 20220920,
- 1150
+ 20220928,
+ 1917
],
"deps": [
"async"
],
- "commit": "0c12230b4f90118990a3449cbc220b3e13417387",
- "sha256": "1hrwab6k4sa8f6x6wssl25lpbp214arb1k210xa788gshm40wqjv"
+ "commit": "0a9a1e32cf130d181b26e23919402c8c25f41996",
+ "sha256": "1i8hbdp5sg99h3imqydk4wd7mqsa04113yavk5sx1wgc17jm1l42"
},
"stable": {
"version": [
3,
8,
- 7
+ 8
],
"deps": [
"async"
],
- "commit": "4ede199d5d1b7050486a0fdeecbbbf49fef31118",
- "sha256": "1a8zkp00ahb84ww5072naxwllzbjhi7ccarkk2d7xsykn5lig54c"
+ "commit": "0a9a1e32cf130d181b26e23919402c8c25f41996",
+ "sha256": "1i8hbdp5sg99h3imqydk4wd7mqsa04113yavk5sx1wgc17jm1l42"
}
},
{
@@ -53905,14 +53958,14 @@
"repo": "duncanburke/help-find",
"unstable": {
"version": [
- 20220513,
- 1028
+ 20220929,
+ 822
],
"deps": [
"dash"
],
- "commit": "6dd61bbb6290e06e30c002c011da71e348ac045f",
- "sha256": "00b4vbk3m0br5k2x9mqx1v58j7jpd4k1nln18s99ggxpmx5klk02"
+ "commit": "ef7266fc480367c12bff64817c875af940d0c9c0",
+ "sha256": "1m73capf6flcn8d8ykx13va0wvpcqkjj5isdf5wrlaxhayjc2s7r"
}
},
{
@@ -53947,8 +54000,8 @@
"repo": "Wilfred/helpful",
"unstable": {
"version": [
- 20220919,
- 540
+ 20220925,
+ 2206
],
"deps": [
"dash",
@@ -53956,8 +54009,8 @@
"f",
"s"
],
- "commit": "db1e15b3783c83d9781a546f37b900ad53576659",
- "sha256": "0cxpm6b36bwd42gmah9ic7i74m25j232wag5s0v3m1bsqrk66ra4"
+ "commit": "3aa08da7a151f1928bf0e3d12fc2443b6485b6ef",
+ "sha256": "062ym5662b83dxga30qgdvp7krq30m41m3qpj2n64jfimbyk1f56"
},
"stable": {
"version": [
@@ -54928,11 +54981,11 @@
"repo": "ideasman42/emacs-hl-indent-scope",
"unstable": {
"version": [
- 20220911,
- 920
+ 20220929,
+ 2350
],
- "commit": "c8fd8bc602d71050d4e953ddd8922583081745ad",
- "sha256": "03kd2j99d2zifarpcsj62f12a28n6k4dwghsa0cdxjkkpakf16lr"
+ "commit": "6220879d7b8b8fdb2274555b401890f7ae8d48c0",
+ "sha256": "0ysbg6r9af45qxc2cnh41ymp69aq1sr3dqyxb9f37ss2dkdjryc3"
}
},
{
@@ -55083,16 +55136,16 @@
"repo": "thanhvg/emacs-hnreader",
"unstable": {
"version": [
- 20220103,
- 1909
+ 20220928,
+ 423
],
"deps": [
"org",
"promise",
"request"
],
- "commit": "e17006072b0cd06ab7ff32c6187e9565131a78b2",
- "sha256": "0fyfgdzjc1xy2v13wz96xj09fa18q4285xksc77wm9gxn7ghpvz4"
+ "commit": "8481681c9b2f3bd1ddab12a657f5f3827e288ad7",
+ "sha256": "0ls4q79s361bwa89g1iq3mk6a9d5q3f5sldip8ww42dafmd9smbi"
}
},
{
@@ -57609,11 +57662,11 @@
"repo": "jcs-elpa/indent-control",
"unstable": {
"version": [
- 20220704,
- 652
+ 20220930,
+ 2107
],
- "commit": "d82a5aa4d3ee4b37c69261480e1866fff8b7b348",
- "sha256": "0llrz47013x2fllqg9p114ancrryb2dxpkypmxpr2x7y75qqkvk7"
+ "commit": "586b955dde5a0699fca76db28ad0d6c3e4141a27",
+ "sha256": "00jjkfa7aj5sssdsbkyh7crs2y6j3h9gyj3gmdapj8hk1wkbnc9a"
},
"stable": {
"version": [
@@ -57933,6 +57986,36 @@
"sha256": "0a1hhvfbl6mq8rjsi77fg9fh5a91hi5scjrg9rjqc5ffbql67y0v"
}
},
+ {
+ "ename": "inferior-islisp",
+ "commit": "f276aa46506c784e1dc8caff8c5fa9885da4ba82",
+ "sha256": "1igq56vabdk38dby8g6db5f8kqifpdfkh8rlbd23bak6hyrlqadz",
+ "fetcher": "gitlab",
+ "repo": "sasanidas/islisp-mode",
+ "unstable": {
+ "version": [
+ 20220924,
+ 1040
+ ],
+ "deps": [
+ "islisp-mode"
+ ],
+ "commit": "423b84fe4cc6944e36971225b3e19c888e7e4690",
+ "sha256": "174zjlgcikaydgx5npsbwqblzc61pxnnpw50nia8jhh8175j2sbl"
+ },
+ "stable": {
+ "version": [
+ 0,
+ 3,
+ 1
+ ],
+ "deps": [
+ "islisp-mode"
+ ],
+ "commit": "18258f7134cfd8e0bd12538351b3cd23ae44cec1",
+ "sha256": "174zjlgcikaydgx5npsbwqblzc61pxnnpw50nia8jhh8175j2sbl"
+ }
+ },
{
"ename": "inflections",
"commit": "392c7616d27bf12b29ef3c2ea71e42ffaea81cc6",
@@ -58016,14 +58099,14 @@
"repo": "ubolonton/info-colors",
"unstable": {
"version": [
- 20200125,
- 1447
+ 20220927,
+ 1640
],
"deps": [
"cl-lib"
],
- "commit": "47ee73cc19b1049eef32c9f3e264ea7ef2aaf8a5",
- "sha256": "1zmiik1ba7xspbk2g8igr1rscxxzxpzjrzspxjcw9khw6z4iwr51"
+ "commit": "2e237c301ba62f0e0286a27c1abe48c4c8441143",
+ "sha256": "0di34jg2r8nlflxln5azaf2a409hr3pwl93x8jdkv070yqyrf69f"
},
"stable": {
"version": [
@@ -58976,6 +59059,30 @@
"sha256": "09hx28lmldm7z3x22a0qx34id09fdp3z61pdr61flgny213q1ach"
}
},
+ {
+ "ename": "islisp-mode",
+ "commit": "f276aa46506c784e1dc8caff8c5fa9885da4ba82",
+ "sha256": "08fpz699philm5j45ixziccy8jc4bx0nzjgbsx64j84r5dbdnyg8",
+ "fetcher": "gitlab",
+ "repo": "sasanidas/islisp-mode",
+ "unstable": {
+ "version": [
+ 20220924,
+ 1043
+ ],
+ "commit": "bbf45d02495f9455e91beed01676178dfa5d3561",
+ "sha256": "174zjlgcikaydgx5npsbwqblzc61pxnnpw50nia8jhh8175j2sbl"
+ },
+ "stable": {
+ "version": [
+ 0,
+ 3,
+ 1
+ ],
+ "commit": "18258f7134cfd8e0bd12538351b3cd23ae44cec1",
+ "sha256": "174zjlgcikaydgx5npsbwqblzc61pxnnpw50nia8jhh8175j2sbl"
+ }
+ },
{
"ename": "isortify",
"commit": "c756ccbae044bc23131060355532261aa9a12409",
@@ -59140,11 +59247,11 @@
"repo": "abo-abo/swiper",
"unstable": {
"version": [
- 20220915,
- 1532
+ 20220926,
+ 1250
],
- "commit": "011653a8c0572202603458fa90f337a419fb88a6",
- "sha256": "16ci7d89kflw17h4f7kl9pmmj6gkdfqzjwspj6ckdgw18l4vlbqh"
+ "commit": "29b61fe1f4d5268d750b666a7ffc1269e22c6477",
+ "sha256": "0ckpclxyrihyimpl9bcyql1gfsn1b7flr23asni1rzxzpq16nvn9"
},
"stable": {
"version": [
@@ -61826,8 +61933,8 @@
"repo": "gcv/julia-snail",
"unstable": {
"version": [
- 20220828,
- 1436
+ 20220927,
+ 704
],
"deps": [
"dash",
@@ -61837,8 +61944,8 @@
"spinner",
"vterm"
],
- "commit": "ef72f073d783a26c008c9fb478f3d686b9e9ea1b",
- "sha256": "0vwlc0q1mrrgfwvz753j2wx7krqxyw23bkhms6vjki921zq24fsb"
+ "commit": "0e6fa5180447024c794cb8186c782c5cf28ae68e",
+ "sha256": "0phzrwr90zl7hvmh7p0cgkhs1sj2zpk3hg4f2gf49ix3q7vbbwhl"
},
"stable": {
"version": [
@@ -62871,14 +62978,14 @@
"repo": "tarsius/keymap-utils",
"unstable": {
"version": [
- 20220422,
- 1612
+ 20220918,
+ 2243
],
"deps": [
"compat"
],
- "commit": "2e5f99f38cfdd55979dadda74b2d7086fedebb03",
- "sha256": "08w0bccyi3j6cqgywah952vazl50gq4rh8p076459lyl8kjsc189"
+ "commit": "e4ef3c5fb46b1f749c9d838d2eba709e164402e2",
+ "sha256": "19vf6rmydf0ayns9cllj2skq79xjfdn343csijmy3vb6hp3zq869"
},
"stable": {
"version": [
@@ -65208,11 +65315,11 @@
"repo": "merrickluo/liberime",
"unstable": {
"version": [
- 20211203,
- 244
+ 20220928,
+ 845
],
- "commit": "79b709debe036f98d74ac129934e59c4d08c1dd5",
- "sha256": "1z1z8x65z4wp9gkbasljxc9bwigi2db95sy31m6k9120k74gkzsk"
+ "commit": "2217883b0ca3b308de4e2c670a0ac8c767fd633e",
+ "sha256": "0s0fsjs52x4v1h04j711fd2w7dmx55dc1chfd0s3czf1r5vr7hc3"
},
"stable": {
"version": [
@@ -65437,8 +65544,8 @@
"repo": "emacs-vs/line-reminder",
"unstable": {
"version": [
- 20220721,
- 451
+ 20220928,
+ 1307
],
"deps": [
"fringe-helper",
@@ -65446,8 +65553,8 @@
"indicators",
"ov"
],
- "commit": "1b2dfa899409f4af2896fce6b9acbe98072abd59",
- "sha256": "1xxmvdgqfj3lv33vn4pw3rdrxjmqypf09hh5w1jr69xbyl2ahzzp"
+ "commit": "7561700e37543bc7622e41d81d5b6dd038a8efe0",
+ "sha256": "0amx49lpbdxmm844b8xlc9x3x848pdq3az41b0l7qkyvsschxajl"
},
"stable": {
"version": [
@@ -67400,26 +67507,26 @@
"repo": "ROCKTAKEY/lsp-latex",
"unstable": {
"version": [
- 20210815,
- 1426
+ 20221001,
+ 1150
],
"deps": [
"lsp-mode"
],
- "commit": "d1da34e21d88e507dc1abc75ec457c9cd30165db",
- "sha256": "0saghy3j54gyknx5qljwrpkf8ibbdwjqwljfnqqn6yxq1kmfmdik"
+ "commit": "94c4536579c18e17e87f2441810968a153c3bea1",
+ "sha256": "1myzjgx2hq70aa9vb0vmgh2jdd25c5b7x580ccb9c0p40rzjjpbr"
},
"stable": {
"version": [
- 2,
+ 3,
0,
0
],
"deps": [
"lsp-mode"
],
- "commit": "1c60c2d331baf778bd8a3ac9d5688516398ae323",
- "sha256": "1nm03yn02ja867d9ba3n980v86kcd5varzng1lhzv7fr7akv5j13"
+ "commit": "94c4536579c18e17e87f2441810968a153c3bea1",
+ "sha256": "1myzjgx2hq70aa9vb0vmgh2jdd25c5b7x580ccb9c0p40rzjjpbr"
}
},
{
@@ -67506,8 +67613,8 @@
"repo": "emacs-lsp/lsp-mode",
"unstable": {
"version": [
- 20220922,
- 1911
+ 20221001,
+ 846
],
"deps": [
"dash",
@@ -67517,8 +67624,8 @@
"markdown-mode",
"spinner"
],
- "commit": "447032e53c8bfb56dbd00f2b51355544e87ed180",
- "sha256": "0r26ibqbr4xyfcckkzpwlc42xyhfcdw9clgl45l889pjzdv1rmdx"
+ "commit": "a5bb8deaa1bfa03ee94b563cd1b030676931a7df",
+ "sha256": "1rcqjk6fj0a7plnlb41ci26041r6w3lfkb2ifwb5fgdfg5r7cqiz"
},
"stable": {
"version": [
@@ -68413,11 +68520,11 @@
"repo": "roadrunner1776/magik",
"unstable": {
"version": [
- 20220920,
- 1237
+ 20220926,
+ 1228
],
- "commit": "2f86d2f456029c3ed9d8e5cd0ed2f3dd8cb3b862",
- "sha256": "0zg8y62zi59v0p6hi9zq9ajc90q7qz439l7aaqr9rjwbmj91m5bk"
+ "commit": "0ae427be02275054ec08cd6fc5259f38473120b3",
+ "sha256": "068wylr06qq2mgpn786lb2jb4cfp28h8aqiqzdhnq1sdcrqmxb1c"
},
"stable": {
"version": [
@@ -68437,8 +68544,8 @@
"repo": "magit/magit",
"unstable": {
"version": [
- 20220919,
- 1308
+ 20220926,
+ 56
],
"deps": [
"compat",
@@ -68448,8 +68555,8 @@
"transient",
"with-editor"
],
- "commit": "4ee691cd90a4975b31ba4f3f6fc3ae69a0b0eb62",
- "sha256": "0384yy53nfs91sqnhvb9gb9j265dszzz4c0g414f5cf0pj0jar5f"
+ "commit": "ada7b21fcc90004d7ac1c5a42c0750e12c2a5ef8",
+ "sha256": "1nl5axpxv5srxyihkzsi1sqnb5r09fah9ppvsiw1ihgc6fh7a460"
},
"stable": {
"version": [
@@ -68476,15 +68583,15 @@
"repo": "magit/magit-annex",
"unstable": {
"version": [
- 20220302,
- 1725
+ 20220926,
+ 300
],
"deps": [
"cl-lib",
"magit"
],
- "commit": "efe484644666c6b7c544b0fb7b87e30703fa9425",
- "sha256": "1n2q9px8b3s3732a6yiz9gvfxbya7sa2qnxidzcn4gdp867l103c"
+ "commit": "0b3787d2c2ed0603467be8152847b7539c8a955c",
+ "sha256": "04g1bgzbxzm2g44rv89m3rcx2h89f06sj3m88his4m0l3rwgzkf7"
},
"stable": {
"version": [
@@ -68959,15 +69066,15 @@
"repo": "magit/magit",
"unstable": {
"version": [
- 20220901,
- 331
+ 20220929,
+ 1014
],
"deps": [
"compat",
"dash"
],
- "commit": "248d8103f83db841adf3d92b358ae42b81df41dc",
- "sha256": "1yxhdf1mry0axln0fp3gvrxsqn7ls76jxa4559snwcfzfxxf2gy3"
+ "commit": "cfe5a1260bf19191adab837e90acc1004529a0c9",
+ "sha256": "04lfwy494bv1acmr9jhr4w46jrpi4hyjmg5wjsxf547vx666q6vd"
},
"stable": {
"version": [
@@ -69389,22 +69496,22 @@
},
{
"ename": "makefile-executor",
- "commit": "08f8b4d680e4907dbd8ea46a75d98aa0e93c2bb9",
- "sha256": "0889rq2a7ks2ynyq91xsa2kpzgd72kzbjxx0b34w8faknpj3b6hi",
+ "commit": "f1cd87e10ef298dd8db2361d81211bf5d732cde1",
+ "sha256": "1rgldb38nni217g1xvxbpj6xs9l079f9wfii1v71fccqra3r0mny",
"fetcher": "github",
- "repo": "thiderman/makefile-executor.el",
+ "repo": "Olivia5k/makefile-executor.el",
"unstable": {
"version": [
- 20220919,
- 802
+ 20220928,
+ 936
],
"deps": [
"dash",
"f",
"s"
],
- "commit": "b304f4b5cc5d33eedf76ff0fdae839d1a00ed2a5",
- "sha256": "1axamja9a3h7x2bwsiqgxdf7rrv5n0jhi8cirblag9ipg1ba7j75"
+ "commit": "170d14d834a0d163cd618d642d4580ff75b014be",
+ "sha256": "1g9mzic9k27fhpzcfpvlirgks2ip13z4xn8bfqabmp0xgq41ga5j"
}
},
{
@@ -70892,11 +70999,11 @@
"repo": "meow-edit/meow",
"unstable": {
"version": [
- 20220920,
- 45
+ 20220930,
+ 15
],
- "commit": "c3f291ad289769fc9a3b2745a5e9969af6322d0c",
- "sha256": "0059jwhdxl4pi90c8rsxidy4ya5ixcxly1iblbbbk58rwfy28ck4"
+ "commit": "dae2baa8228ee0a5cb37c6707057160c57bfe5f2",
+ "sha256": "08zpgaihsza69n6wnx4va3qjnh0bica477xshf7klyp6w13akr3k"
},
"stable": {
"version": [
@@ -72491,11 +72598,11 @@
"repo": "protesilaos/modus-themes",
"unstable": {
"version": [
- 20220921,
- 1323
+ 20221001,
+ 752
],
- "commit": "ee35a9af344d2b2920589ec4d66e9cb513bdfb80",
- "sha256": "0k7syi00vk2gds2gj6q9c4dh5msnn21bqgqn5vz3sxffpaw4say0"
+ "commit": "ad5cb41daf57456dc28d54b07f9a1dcb2c55cbd4",
+ "sha256": "19b49lg598qz50976i09scz15bz5njk8bnd51c7cb4cyknh1c87z"
},
"stable": {
"version": [
@@ -72989,8 +73096,8 @@
"repo": "themkat/mos-mode",
"unstable": {
"version": [
- 20220828,
- 847
+ 20220927,
+ 1845
],
"deps": [
"dap-mode",
@@ -72998,8 +73105,8 @@
"ht",
"lsp-mode"
],
- "commit": "1e688e76f1600095b8b55ea8006489a3db9c421d",
- "sha256": "0jb9nmp01dsjc1djksgia09vy52yqk38i59wglaqqcv60150kfaj"
+ "commit": "3f82f1de4f951096424e0da14ea4e4a40a82059d",
+ "sha256": "1i9xcmnvnz1vxhi4c9hkfnyniabyah0pwd3r64lgxr5yv04wzsyp"
}
},
{
@@ -80334,6 +80441,24 @@
"sha256": "0nrfvmqb70phnq0k4wbdj6z666wq6xvabg4pgv8qn62rbrw4yyhm"
}
},
+ {
+ "ename": "org-custom-cookies",
+ "commit": "44e1c0107084b9ac41e7459a78c0ef03aa34a05a",
+ "sha256": "0gxw7rp4n9psfd657hnlggnllb4cp9d71n7mviknblifj065ynfz",
+ "fetcher": "github",
+ "repo": "gsingh93/org-custom-cookies",
+ "unstable": {
+ "version": [
+ 20220928,
+ 114
+ ],
+ "deps": [
+ "org"
+ ],
+ "commit": "e57e0de5b8200224bf5d44b62481c542986f2f13",
+ "sha256": "1r3m7nvx10yzxsasld3h59psml4r7kmz2wn79n5xkppkpb0dbymn"
+ }
+ },
{
"ename": "org-d20",
"commit": "98bf91038196dfb59c491c9ed96c6b6a0cb311a9",
@@ -82608,27 +82733,28 @@
"repo": "akirak/org-reverse-datetree",
"unstable": {
"version": [
- 20220831,
- 1033
+ 20220929,
+ 1630
],
"deps": [
"dash",
"org"
],
- "commit": "b25ec9f8671c399807b6988b215e5dfc7c95a539",
- "sha256": "1rjzsgy42mjjqd4a4f2jp73hf9jf8k324m3vspv2a4nrf5497p4i"
+ "commit": "e4e13cc5e240f9b2717295f6df536d29a8ead108",
+ "sha256": "0l05bn79dp27zk5xkcyk8qj6rwl7s1z02ncbzxw8qq10fs4081rm"
},
"stable": {
"version": [
0,
- 4
+ 4,
+ 1
],
"deps": [
"dash",
"org"
],
- "commit": "9b14ffbbdf0c08f3ea15fd4825522f5cd856d9a7",
- "sha256": "0v566plqyl82hjd26l38x6vxbw8l6ib9b5v9i0zggkqrahv1x91p"
+ "commit": "f1fcb0c6391f8e38c94a18f7c2a19124196e4862",
+ "sha256": "07yv157ci814ndzwrynmys80w5iiq9k43qvv4hajn5x7c467vm97"
}
},
{
@@ -82766,16 +82892,16 @@
"repo": "org-roam/org-roam-ui",
"unstable": {
"version": [
- 20220803,
- 1024
+ 20220927,
+ 1434
],
"deps": [
"org-roam",
"simple-httpd",
"websocket"
],
- "commit": "c75fc7506ee7f03840a9a93ed9336d7ed24551aa",
- "sha256": "0mkcd2622np8s5qz2zvx7lch6dc586xqmn6914gi4ym7nvklf3zy"
+ "commit": "6bf6a5eecc1fa7ddbb1fcda85e08fe9c393f9298",
+ "sha256": "0y2rpk2ncl18ymvvvqzjvy1d3kxi94ack6qxb8zp2p5jdx2n0ciw"
}
},
{
@@ -83333,15 +83459,15 @@
"url": "https://repo.or.cz/org-tag-beautify.git",
"unstable": {
"version": [
- 20220912,
- 430
+ 20220930,
+ 948
],
"deps": [
"all-the-icons",
"org-pretty-tags"
],
- "commit": "bfe7f054109f9f0e6fedbf5c9240fa96ebdde5fd",
- "sha256": "0i9r0623r6wwb8c0r5ph97n2iy166cmfcd6mmkmw6hpiyg19rx3x"
+ "commit": "25ceccde36cbb3bbed55da939348c47f91670455",
+ "sha256": "04j8c8j0d4lgn2pd2x21q79x3gdwsnzw57l45n5r8arqpdmmjbgz"
}
},
{
@@ -83795,11 +83921,11 @@
"repo": "nullman/emacs-org-visibility",
"unstable": {
"version": [
- 20220710,
- 1747
+ 20220929,
+ 1407
],
- "commit": "24aee13a956bc1cff72f8b04f47e7d9ec01bb3b3",
- "sha256": "1b7afdiagnf9biw0px7qc6ayjbbhy5z2gwl7g1whb3h5hvrri4j5"
+ "commit": "71d57ca126ccb5441b87aa052903fa6ad59b62f3",
+ "sha256": "1xl9v42isszx6svdnsnlfs5ksczyzwh14bzh5szkw041gfmy9k0r"
},
"stable": {
"version": [
@@ -84409,11 +84535,11 @@
"repo": "tbanel/orgaggregate",
"unstable": {
"version": [
- 20220726,
- 1241
+ 20220928,
+ 1944
],
- "commit": "815c9f6aa89354a5720759616bcb1ff7ec52b21c",
- "sha256": "19zzm7anr1f8dj53xikj4rdrj87bvc7f79hw6ig8zmyd7i490msy"
+ "commit": "068973339af3714ea015501f0fcc35014f255c1a",
+ "sha256": "03h0g2pr1yxbvvp7bj0k00p16dp3g5h4jgqjp28d4pllcpfwspmy"
}
},
{
@@ -84439,14 +84565,14 @@
"repo": "tbanel/orgtbljoin",
"unstable": {
"version": [
- 20220726,
- 1235
+ 20220928,
+ 1946
],
"deps": [
"cl-lib"
],
- "commit": "4b09436de15545ce73dd40e938176a98254109f8",
- "sha256": "0k7z3d24k4nqz13xj0a7l79idar3kdl022r4jm3f9hjkxlddsbfk"
+ "commit": "8ce207b7100dc9cde071099b56cebb87924aaafd",
+ "sha256": "07mp1kgp9jkajs1lwwzl051gaygi8wqmnkp52pddw4xfcni9i6va"
}
},
{
@@ -88477,17 +88603,25 @@
},
{
"ename": "pg",
- "commit": "5c4d1bb21948da2b283a3a9d89d9e3aed11afa13",
- "sha256": "0n0187ndvwza1nis9a12h584qdqkwqfzhdw21kz5d1i6c43g7gji",
+ "commit": "a84e158f6ad6258c2e499cd7a7ca3c2006203b0d",
+ "sha256": "1738lkqpl9afp9ivq9nnz77j14vbvx7n7yv1xn5b1fk3hfj60v5c",
"fetcher": "github",
- "repo": "cbbrowne/pg.el",
+ "repo": "emarsden/pg-el",
"unstable": {
"version": [
- 20130731,
- 2142
+ 20221001,
+ 1320
],
- "commit": "4f6516ec3946d95dcef49abb6703cc89ecb5183d",
- "sha256": "1zh7v4nnpzvbi8yj1ynlqlawk5bmlxi6s80b5f2y7hkdqb5q26k0"
+ "commit": "99085cd115b705e42e574b13dc168b901b767bf3",
+ "sha256": "09l2zzp0r0pwl0kak9z6kn700vm4mr99acn2g2dgn9c3pl0syndj"
+ },
+ "stable": {
+ "version": [
+ 0,
+ 16
+ ],
+ "commit": "11f27360086f27936401e1f4b196f73dbd11d880",
+ "sha256": "1jdnslpgdm16klaga02p33g7c8bjzg164kxz3jd7gs5v9gqa6ppz"
}
},
{
@@ -90973,23 +91107,20 @@
"repo": "auto-complete/popup-el",
"unstable": {
"version": [
- 20220910,
- 1225
+ 20220927,
+ 1610
],
- "commit": "66b840b6ded808974225501d2e672da7363579a6",
- "sha256": "0alrzskhbi1mr3d33gq6ym546yfj7lsfai8xasxnbawb6w8akc4w"
+ "commit": "20ce6cbd2f06423be35b3b700c698f0e109e880c",
+ "sha256": "13ww7hld5pa32myj9krr6prmc99s7hnpsw8mw9krpxffykkblj2f"
},
"stable": {
"version": [
0,
5,
- 8
+ 9
],
- "deps": [
- "cl-lib"
- ],
- "commit": "9d104d4bbbcb37bbc9d9ce762e74d41174683f86",
- "sha256": "0qrsz4z9q2bfq9xv4n94mvyslm232v2ql9r1fjycx7rnmpqggiwl"
+ "commit": "20ce6cbd2f06423be35b3b700c698f0e109e880c",
+ "sha256": "13ww7hld5pa32myj9krr6prmc99s7hnpsw8mw9krpxffykkblj2f"
}
},
{
@@ -91581,11 +91712,11 @@
"repo": "radian-software/prescient.el",
"unstable": {
"version": [
- 20220911,
- 138
+ 20221001,
+ 127
],
- "commit": "928cc72ec3dca8e9a60d356b9b8ce896ec5ff621",
- "sha256": "1hyn000z6xy5cb2k7h8xairxvhlhk2pcc1rqabwg76jlh8qbr24w"
+ "commit": "a86b71431002f7c7be6ea86f6f2694d206564b13",
+ "sha256": "1hxfilsd8bia4zn2gzsfzpll39bb980z4j76wqh4ry69nx84w2gf"
},
"stable": {
"version": [
@@ -91933,11 +92064,11 @@
"repo": "masukomi/private-comments-mode",
"unstable": {
"version": [
- 20220330,
- 1316
+ 20220929,
+ 1807
],
- "commit": "57eb1ba3812e44344b7d5336c3a3ad14a28e4f9e",
- "sha256": "0m5qksmzbjwzv10n7hb3v8sa6zab4kp2w7ayv2g7fc94cm1aljz2"
+ "commit": "b32b862e42e1f5cf26b6ca4cebea69b3f4e1aeab",
+ "sha256": "0q79dh1z9hgcln2maaw514dxqk1nw16wdqpw6vg2y6kz535xwmfn"
},
"stable": {
"version": [
@@ -92751,11 +92882,11 @@
"repo": "ProofGeneral/PG",
"unstable": {
"version": [
- 20220803,
- 1702
+ 20220930,
+ 1309
],
- "commit": "b5e3589ac84698eb94eb005bd17cd35633788127",
- "sha256": "12iscqdngyc6ap8xsxc44mfwsbzg93id2l4fc4y133brdcndzqal"
+ "commit": "ef18ee4d6ffa160fe563307561f2cad12e9478b5",
+ "sha256": "12sy38s3ys1jyvbfrbq9xwhdvvdmhcj3bymnqfvgqlhi7p3frrp8"
},
"stable": {
"version": [
@@ -92864,10 +92995,10 @@
"stable": {
"version": [
21,
- 6
+ 7
],
- "commit": "24487dd1045c7f3d64a21f38a3f0c06cc4cf2edb",
- "sha256": "0qr1158s97p7xdhjpbmd7ylqdzr2r3n5gn6xl4h948fyxzc9vsg8"
+ "commit": "54489e95e01882407f356f83c9074415e561db00",
+ "sha256": "0yhjgmgzj0awwsp6g2hsvwx86v2ns8pfcvk2wdq6kdyv6dngh7ig"
}
},
{
@@ -93788,28 +93919,28 @@
"repo": "tumashu/pyim",
"unstable": {
"version": [
- 20220919,
- 421
+ 20220927,
+ 803
],
"deps": [
"async",
"xr"
],
- "commit": "d1b28087e261814de5b3200629b023c403cb93d4",
- "sha256": "1izcw1gqh8j497qjm7zxijk7arlakicl8g5jadjbamxybcha1mlp"
+ "commit": "1129a07aa45c71c8d6712b73f089e7addbce53db",
+ "sha256": "180bkdl5zbsxi5q0fxr4p6676iblky9cd1qq9cxssbyzjpj1qpgq"
},
"stable": {
"version": [
5,
2,
- 4
+ 5
],
"deps": [
"async",
"xr"
],
- "commit": "6b4329a25f0ec61f8fd404d926315064b966fa0b",
- "sha256": "19q416q69lzf2w9yjv3fy7dnzrza3z6caqrrmnfh8q8lv22hn8ll"
+ "commit": "2d9e9c5b9703dc4f3a400ab353ee99556c892c00",
+ "sha256": "0ixvwfdk6kl14gqaz6988iz36fdjk8gd94aiqkaf7y2wlm4gjs11"
}
},
{
@@ -94676,11 +94807,11 @@
"repo": "quelpa/quelpa",
"unstable": {
"version": [
- 20220730,
- 230
+ 20220928,
+ 919
],
- "commit": "59bd9bf760f2fdf70c81c220f2875dbee0c29d5c",
- "sha256": "1lv8q6rs61qijrfj40fwy89gyhf9dgbp44z3p6clbhlq9kqf55jw"
+ "commit": "37962e3b264795b7a3593109c7f14dbf57d9b77e",
+ "sha256": "1xdqr73y8lpxhmgp1yrap3bw5pf8lhaw2v3jib1pka6aj40vi2di"
},
"stable": {
"version": [
@@ -98902,8 +99033,8 @@
"repo": "brotzeit/rustic",
"unstable": {
"version": [
- 20220923,
- 1411
+ 20220928,
+ 1157
],
"deps": [
"dash",
@@ -98917,8 +99048,8 @@
"spinner",
"xterm-color"
],
- "commit": "17d49c734276fe112bf051492555c3c2ae4f2fea",
- "sha256": "0n0hjj2inyl0kh0xkrmwrj5zfx85awba2aamrwz19irw17k1xyzz"
+ "commit": "0eca6e6f0b5b3b02233a2d03c797be2f9a983c19",
+ "sha256": "189dxc9p6dgiqgs3s0855lw4i2vpl2c9rhyyjanyih64mi378rm1"
},
"stable": {
"version": [
@@ -100920,11 +101051,11 @@
"repo": "midnightSuyama/shader-mode",
"unstable": {
"version": [
- 20180518,
- 1157
+ 20220930,
+ 1052
],
- "commit": "d7dc8d0d6fe8914e8b6d5cf2081ad61e6952359c",
- "sha256": "13scj6w3vsdcgmq7zak3pflqpq295wgzsng72rcafgkkr7r12rar"
+ "commit": "fe5a1982ba69e4a98b834141a46a1908f132df15",
+ "sha256": "1vch21zxhh4bwdm48060cixd479bs31i7hi5kxi7q8wqbic9gdzm"
}
},
{
@@ -105700,11 +105831,11 @@
"repo": "srfi-explorations/emacs-srfi",
"unstable": {
"version": [
- 20220922,
- 1947
+ 20220925,
+ 2308
],
- "commit": "72bd263bc3171c5a2123441a4ed89ef9dbbfca02",
- "sha256": "0v2v9fvwqgpxy9dnb2ymfga28rvxsxd5miby953qyjcbgrg7md47"
+ "commit": "20a1c9b36e99cbfbf70598e2cfaccd960e74c1ce",
+ "sha256": "1kz95vb6jbpkzs11mx623sj8xdf8n007vr9ix6wqvdsaqy158qkl"
},
"stable": {
"version": [
@@ -108224,14 +108355,14 @@
"repo": "mclear-tools/tabspaces",
"unstable": {
"version": [
- 20220614,
- 2113
+ 20220924,
+ 1805
],
"deps": [
"project"
],
- "commit": "6c3314167bf15a99247acb4eb60827faea36f4dd",
- "sha256": "1d9m8aji2nd38w1a39whbqsg1kpfjxkmi1xn6pyfkng5bzalfq40"
+ "commit": "93a2b5650e4a75bc844251b1807ec0aa48ea27e9",
+ "sha256": "1rqy6wxbriz1xxsk5mjifsczvi1dpqn3adhj677r4b9lbrl4jkqk"
}
},
{
@@ -108416,10 +108547,10 @@
"unstable": {
"version": [
20220924,
- 1232
+ 1640
],
- "commit": "566dd054ff70d9bfe26d6db448fcf4cc9c0623f1",
- "sha256": "14qnyb8vjxlw0qz8bkbpylbjw29pjwkj9k50qi6lmggmlw8x448f"
+ "commit": "d441ae6b392597f0e01bc79292845c880d468b60",
+ "sha256": "123h7wz2ql6cl6s0n6n18g4ssa0p1a90svx7zh9627w45q68qlbr"
},
"stable": {
"version": [
@@ -109777,11 +109908,11 @@
"version": [
2022,
9,
- 19,
+ 26,
0
],
- "commit": "2f0283d9c28cb792e846cbb7718bfa073943869d",
- "sha256": "1dv6c23656mfb9advmipy0dlh1z6qql9iv2y3m7k8fkchigc9pmw"
+ "commit": "167ba9f102920b1ed9b7c4b666b370935a4151dd",
+ "sha256": "1syxzqkr32r9ybdjiv545k5lg927z3qw61nprgs1s5im3fd4yh54"
}
},
{
@@ -110489,11 +110620,11 @@
"repo": "tok/tok-theme",
"unstable": {
"version": [
- 20220924,
- 1242
+ 20220928,
+ 1823
],
- "commit": "99b3cbd44470c2c345f3516a9d58a4d1c847a12a",
- "sha256": "1d12qf6gv3i6wjmqr4vpcq08b112jnwikll4ra5w86l9dbfk12wi"
+ "commit": "eb67fd9ba96a29e00d6c62261721ddf7c156e26b",
+ "sha256": "0m9hczl0jdwr7i3k4ba1rx0k4lvbjvjgg0fdvpax8p8lc1yav4cy"
}
},
{
@@ -111412,26 +111543,26 @@
"repo": "emacs-tree-sitter/tree-sitter-langs",
"unstable": {
"version": [
- 20220915,
- 441
+ 20220925,
+ 1020
],
"deps": [
"tree-sitter"
],
- "commit": "6d18db5e68d106b21c5c6a746bd262a8e8782a2c",
- "sha256": "0dcahb895wa66p7jzps7fnaaxjca3rg31hq8wrjc9f9fglz5ipvw"
+ "commit": "00738cb725785cbd42978f944f8661c33b5d3fe5",
+ "sha256": "1nr1k92c0k7q0x7mgm0x23jyysc09mf967bmhyw6m4pdy1myc38x"
},
"stable": {
"version": [
0,
12,
- 3
+ 4
],
"deps": [
"tree-sitter"
],
- "commit": "6d18db5e68d106b21c5c6a746bd262a8e8782a2c",
- "sha256": "0dcahb895wa66p7jzps7fnaaxjca3rg31hq8wrjc9f9fglz5ipvw"
+ "commit": "00738cb725785cbd42978f944f8661c33b5d3fe5",
+ "sha256": "1nr1k92c0k7q0x7mgm0x23jyysc09mf967bmhyw6m4pdy1myc38x"
}
},
{
@@ -111478,8 +111609,8 @@
"repo": "Alexander-Miller/treemacs",
"unstable": {
"version": [
- 20220917,
- 1219
+ 20220926,
+ 1903
],
"deps": [
"ace-window",
@@ -111491,8 +111622,8 @@
"pfuture",
"s"
],
- "commit": "e4bb236bd5cd7c077c2207b33d2699485c405536",
- "sha256": "02g8w3xpkil724mwpk67x31gv16ahhj6slvcjbis3c16ni9m14ck"
+ "commit": "20765acd38e00faa46a72b9a2cf63a7b451c6850",
+ "sha256": "04wglc8lkw06hq9y9lsd3p5pwsc70cxx047da9v9hhdm2milggkn"
},
"stable": {
"version": [
@@ -111797,11 +111928,11 @@
"repo": "tilmanrassy/emacs-treeview",
"unstable": {
"version": [
- 20220912,
- 2346
+ 20220928,
+ 43
],
- "commit": "b68f77bf102b289e7b0e97f767bb7ffff9a5835b",
- "sha256": "11c9m4x4nrh6vxma59vdm24vkipk38n17mcnva3ymn49r3597fwh"
+ "commit": "d9c10feddf3b959e7b33ce83103e1f0a61162723",
+ "sha256": "14s0b6zbapsvgyxki59lglwb3s8wjsjwkgj5r66af9nj2bgz5ms9"
}
},
{
@@ -112095,26 +112226,26 @@
"repo": "ocaml/tuareg",
"unstable": {
"version": [
- 20220719,
- 148
+ 20220929,
+ 1327
],
"deps": [
"caml"
],
- "commit": "ad8a688b7e2aeeafc320a845f86cdd9aa7c971ce",
- "sha256": "0vma9ylyaxrl21a3g4vlzd9iqpwallchaar3p7v0dyp5cf8xxvfw"
+ "commit": "53ce2fdfdd372d52f3a6547c33b687e7d403357a",
+ "sha256": "1pxw5cy1zxw10vqk0mgfjvi26sq50naf22irdv701dwnqdp6j5yy"
},
"stable": {
"version": [
- 2,
- 2,
- 0
+ 3,
+ 0,
+ 1
],
"deps": [
"caml"
],
- "commit": "5796f08757a6d172d628834a40ba6379f318edf5",
- "sha256": "06zxnn85fk5087iq0zxc5l5n9fz8r0367wylmynbfhc9711vccy6"
+ "commit": "4d94293cc5a7bba6cd043e29968719ce597d65f5",
+ "sha256": "1p3xpk78i8ywgdmc59w05wjjy9dg6gm5gicm08szmrlnx08v2ihm"
}
},
{
@@ -113773,11 +113904,11 @@
"repo": "jcs-elpa/use-ttf",
"unstable": {
"version": [
- 20220704,
- 700
+ 20220930,
+ 1951
],
- "commit": "0b1e16d4da63a53011bb46efdb9377293d3b5239",
- "sha256": "1dg4csd1kd6kc34d67rwvg1f0gfhipcbzawhc9qbpnpip99dj4mz"
+ "commit": "105577c6290934119978e23b168f0b97c9d586ba",
+ "sha256": "143iy63rlibxlyrzxj2qfh3vjwsdgzypimazs7vd6x7l4p45xzrj"
},
"stable": {
"version": [
@@ -118273,11 +118404,11 @@
"repo": "jobbflykt/x509-mode",
"unstable": {
"version": [
- 20220905,
- 1652
+ 20220926,
+ 944
],
- "commit": "def4acd761ee959b25599a8149488f1ab5789381",
- "sha256": "0lnl9pns1qwbc2qwvsgcxi7vd9w8sp24d2x6v8v1z0m4qi92a3mm"
+ "commit": "933b02832ca2e098f865d2080b9feb058afa008b",
+ "sha256": "12bc8jzay4l7wmw177l7x3h5yaf8gg3vzisbcvbfcn0x076765ll"
}
},
{
@@ -119440,11 +119571,11 @@
"url": "https://www.yatex.org/hgrepos/yatex",
"unstable": {
"version": [
- 20220924,
- 325
+ 20220929,
+ 123
],
- "commit": "86ceef677ca2804f00cb966b538a27928a28fe77",
- "sha256": "1n6y4gyxshmrx5600wmh19v500birj2xnaz609c3x14nlxwnfb33"
+ "commit": "923a6c0183be469fb4f94b1258527f2ca1cc5b79",
+ "sha256": "0f5xgzid2bl0qy803vzy1dn8hiq022rbdq2lnj4zxjcvz9jd5cm7"
},
"stable": {
"version": [
@@ -119803,11 +119934,11 @@
"repo": "taquangtrung/emacs-yul-mode",
"unstable": {
"version": [
- 20220911,
- 1651
+ 20220927,
+ 338
],
- "commit": "6d5a02ee18145d223a5b0bc46359f1938358b8d4",
- "sha256": "064j7qlallg3wl5gxz94bg17v8qsmdbbv2f1l76h4zw5v4x14y0b"
+ "commit": "56cba05549873fcf1b66e304969011dc1a1ad228",
+ "sha256": "1wkmi6xi81z3ff872lpz1cpqbw2sj2844kwzhqhvir4w2lqr4ab5"
}
},
{
@@ -119890,11 +120021,11 @@
"repo": "bbatsov/zenburn-emacs",
"unstable": {
"version": [
- 20220823,
- 442
+ 20220927,
+ 631
],
- "commit": "2db3a34f50ec4dd6e2cae92bab639ccfc742b3cc",
- "sha256": "1iqshfkf4xchymmf340bdh6vl555z50l2wd3r3g063gf03vxsr5a"
+ "commit": "4788de0bcfecf8faec69251decb9924492d008f3",
+ "sha256": "0x52xmv6rhjss480sddj8hrsibmq4i06kra9m58hhv9pwyfvijdw"
},
"stable": {
"version": [
diff --git a/pkgs/applications/editors/vim/plugins/generated.nix b/pkgs/applications/editors/vim/plugins/generated.nix
index f2476b0412d6..0cef634c2899 100644
--- a/pkgs/applications/editors/vim/plugins/generated.nix
+++ b/pkgs/applications/editors/vim/plugins/generated.nix
@@ -281,12 +281,12 @@ final: prev:
SchemaStore-nvim = buildVimPluginFrom2Nix {
pname = "SchemaStore.nvim";
- version = "2022-09-28";
+ version = "2022-10-04";
src = fetchFromGitHub {
owner = "b0o";
repo = "SchemaStore.nvim";
- rev = "33873c71335a31988b62025c3b2224f3a9fe8e15";
- sha256 = "134z58jhi343ylr6nip8f180cqvyf2l7gxrzygxyv55d2iz182qk";
+ rev = "faf602afe86b4cc33a4471371f128d80328cacf2";
+ sha256 = "1ilgdzjcqmplk81xx89rsspvvp7mhzrpcv9lwb9dk3drgnvlzza2";
};
meta.homepage = "https://github.com/b0o/SchemaStore.nvim/";
};
@@ -341,12 +341,12 @@ final: prev:
SpaceVim = buildVimPluginFrom2Nix {
pname = "SpaceVim";
- version = "2022-10-01";
+ version = "2022-10-04";
src = fetchFromGitHub {
owner = "SpaceVim";
repo = "SpaceVim";
- rev = "46f53be2f8e538e5b5aa5344bd9f9dd1a9ef1679";
- sha256 = "1c02vql960mfpgj96zmzkij8yc2xpsxwgs7dfqphkmwq3b02r1nx";
+ rev = "0026ba28a52156e8e965f131a060b8bdaed2769e";
+ sha256 = "1cph6c7x5sdx5gbmszl9w0blspnjwfzg3pf42gyvnph1c3hacqwk";
};
meta.homepage = "https://github.com/SpaceVim/SpaceVim/";
};
@@ -534,11 +534,11 @@ final: prev:
ale = buildVimPluginFrom2Nix {
pname = "ale";
- version = "2022-09-30";
+ version = "2022-10-04";
src = fetchFromGitHub {
owner = "dense-analysis";
repo = "ale";
- rev = "a33960eb51b638f232dff71cfeac5ede87b38312";
+ rev = "4094426c707dda404754487bf496db1b4c7d05f1";
sha256 = "1v56lzs9i29bwzb1iqwanzv3khr9gd9lmwv5v5ddhg9b3bq55rnv";
};
meta.homepage = "https://github.com/dense-analysis/ale/";
@@ -798,12 +798,12 @@ final: prev:
barbar-nvim = buildVimPluginFrom2Nix {
pname = "barbar.nvim";
- version = "2022-10-02";
+ version = "2022-10-03";
src = fetchFromGitHub {
owner = "romgrk";
repo = "barbar.nvim";
- rev = "95f2c58c84726eac14fd6e86dbcab599d7ecaedd";
- sha256 = "19nja82dcv7gr0sc1404zjak00wb5n7k3plnnnndl0siah3i4d7k";
+ rev = "61424a6211431a42458bc755b3e7e982e671c438";
+ sha256 = "1xg7wm3prq2vj0jg2knb96lc7mlh7l6fw6c23s0i9vqrbz4b8jr2";
};
meta.homepage = "https://github.com/romgrk/barbar.nvim/";
};
@@ -930,12 +930,12 @@ final: prev:
bufferline-nvim = buildVimPluginFrom2Nix {
pname = "bufferline.nvim";
- version = "2022-09-19";
+ version = "2022-10-04";
src = fetchFromGitHub {
owner = "akinsho";
repo = "bufferline.nvim";
- rev = "83bf4dc7bff642e145c8b4547aa596803a8b4dc4";
- sha256 = "1wlwm75c1ngk4dkzynl7p5av6ydxagcmx82bg7l9037h2ijvqhv2";
+ rev = "0606ceeea77e85428ba06e21c9121e635992ccc7";
+ sha256 = "099ad6vxlmplzvzrykl2rnbamgacriasa2pab8fv8q9hmdd0nbc2";
};
meta.homepage = "https://github.com/akinsho/bufferline.nvim/";
};
@@ -990,12 +990,12 @@ final: prev:
ccc-nvim = buildVimPluginFrom2Nix {
pname = "ccc.nvim";
- version = "2022-10-02";
+ version = "2022-10-04";
src = fetchFromGitHub {
owner = "uga-rosa";
repo = "ccc.nvim";
- rev = "0a8a6f1b42dd3c8031fe5d96cc835998169e1ac9";
- sha256 = "01k31s7mpl3kkh2yl078915yq78ga9x0rhawbz03s0kjssvlsfyd";
+ rev = "81dd97874eb63ac719c372bdeb1cd15d9ddcca15";
+ sha256 = "1rpj7qlwwycq8znxa1v369mbbirhgkj81whrhcm5vrwmkhy9j1w7";
};
meta.homepage = "https://github.com/uga-rosa/ccc.nvim/";
};
@@ -1062,11 +1062,11 @@ final: prev:
clangd_extensions-nvim = buildVimPluginFrom2Nix {
pname = "clangd_extensions.nvim";
- version = "2022-09-28";
+ version = "2022-10-02";
src = fetchFromGitHub {
owner = "p00f";
repo = "clangd_extensions.nvim";
- rev = "7fa598a4a1bfd61a8f194d7db1e4d820221e9ea9";
+ rev = "756a12b1604aa86368f2078ab44bfa788a29ece4";
sha256 = "1wxyy98gal3zdwrh6z92044yyj3nbw2bzq9diwa1h5waraf9jg7r";
};
meta.homepage = "https://github.com/p00f/clangd_extensions.nvim/";
@@ -1470,12 +1470,12 @@ final: prev:
cmp-path = buildVimPluginFrom2Nix {
pname = "cmp-path";
- version = "2022-07-26";
+ version = "2022-10-03";
src = fetchFromGitHub {
owner = "hrsh7th";
repo = "cmp-path";
- rev = "447c87cdd6e6d6a1d2488b1d43108bfa217f56e1";
- sha256 = "0nmxwfn0gp70z26w9x03dk2myx9bbjxqw7zywzvdm28lgr43dwhv";
+ rev = "91ff86cd9c29299a64f968ebb45846c485725f23";
+ sha256 = "18ixx14ibc7qrv32nj0ylxrx8w4ggg49l5vhcqd35hkp4n56j6mn";
};
meta.homepage = "https://github.com/hrsh7th/cmp-path/";
};
@@ -1506,12 +1506,12 @@ final: prev:
cmp-spell = buildVimPluginFrom2Nix {
pname = "cmp-spell";
- version = "2021-10-19";
+ version = "2022-10-03";
src = fetchFromGitHub {
owner = "f3fora";
repo = "cmp-spell";
- rev = "5602f1a0de7831f8dad5b0c6db45328fbd539971";
- sha256 = "1pk6izww8canfqpiyrqd6qx1p3j18pwfzkfx4ynbng8kl9nh6nv5";
+ rev = "5c32dd5c23ec31e88ed28c74231eec0c55dc8307";
+ sha256 = "1w0658jgn5v1018by1912dpnxa6y25pv929awaimgzd3wlsfm89p";
};
meta.homepage = "https://github.com/f3fora/cmp-spell/";
};
@@ -1602,12 +1602,12 @@ final: prev:
cmp-zsh = buildVimPluginFrom2Nix {
pname = "cmp-zsh";
- version = "2022-01-18";
+ version = "2022-10-03";
src = fetchFromGitHub {
owner = "tamago324";
repo = "cmp-zsh";
- rev = "1d8133e5637c73b3eb392682ae9661d521738268";
- sha256 = "0122lf44yqjp01znp7gnc682yx7fikjkzc5njp73lmys76321lz3";
+ rev = "c24db8e58fac9006ec23d93f236749288d00dec9";
+ sha256 = "1rifl2rhrbnq3hnwmn19fky3ibv1qf4pb0hx81pl38dgq6lfm2s6";
};
meta.homepage = "https://github.com/tamago324/cmp-zsh/";
};
@@ -1878,12 +1878,12 @@ final: prev:
compiler-explorer-nvim = buildVimPluginFrom2Nix {
pname = "compiler-explorer.nvim";
- version = "2022-10-02";
+ version = "2022-10-03";
src = fetchFromGitHub {
owner = "krady21";
repo = "compiler-explorer.nvim";
- rev = "737ec0937c2e3f8279bedb6e308a1c183b81f08a";
- sha256 = "1jawin6rvz5rkmh1vh3l980zghnc5hmppqginnj82n8s0lz1dl0d";
+ rev = "018d04971eb5939c01637e23377449b61f68f363";
+ sha256 = "072y39crph99mb1wzij480nmylh1llcfg0lf9smb90xabiads7sr";
};
meta.homepage = "https://github.com/krady21/compiler-explorer.nvim/";
};
@@ -2010,24 +2010,24 @@ final: prev:
coq-artifacts = buildVimPluginFrom2Nix {
pname = "coq.artifacts";
- version = "2022-10-02";
+ version = "2022-10-04";
src = fetchFromGitHub {
owner = "ms-jpq";
repo = "coq.artifacts";
- rev = "a72ed519665c483706e99c8e080b6333fece6030";
- sha256 = "1im5lrpz7b3nhc53sy7nn0i4ngiy47l2l3h8c0yjrbqz9j3gcjcm";
+ rev = "72a41cd2fa99c577ffa998321af38951655cc43c";
+ sha256 = "051vsxqxh6snv2awkh0jyx8pa43z94z2dpng463dsiw89fss2va0";
};
meta.homepage = "https://github.com/ms-jpq/coq.artifacts/";
};
coq-thirdparty = buildVimPluginFrom2Nix {
pname = "coq.thirdparty";
- version = "2022-10-02";
+ version = "2022-10-04";
src = fetchFromGitHub {
owner = "ms-jpq";
repo = "coq.thirdparty";
- rev = "563bdd935c282d1d380bd98d53923c2f7d02eae9";
- sha256 = "06lh0rm15frv741fv21hc8gwjahbp49iz03h944abqfh69cf4a35";
+ rev = "67342598dd2628a19e272acaf773b5b9f1a72248";
+ sha256 = "077agh0gzflrc7955xnbgzghf0kr1la1n3xfjydg6plb70kjqlri";
};
meta.homepage = "https://github.com/ms-jpq/coq.thirdparty/";
};
@@ -2046,12 +2046,12 @@ final: prev:
coq_nvim = buildVimPluginFrom2Nix {
pname = "coq_nvim";
- version = "2022-10-02";
+ version = "2022-10-04";
src = fetchFromGitHub {
owner = "ms-jpq";
repo = "coq_nvim";
- rev = "55b4222262ad8e826ce1c144a7b2b35f16f8a8e5";
- sha256 = "0bmcv72nw0vk8qlzhs5lfirh4jq13azva1wm2w2a8hlvnfg764ij";
+ rev = "8b165521046a05320c478f2a129a1310415bd7b6";
+ sha256 = "1c1iyi17qld3q0c275yzjwxrqjkynbmx000jsrsmgjh63xjzslg0";
};
meta.homepage = "https://github.com/ms-jpq/coq_nvim/";
};
@@ -2564,12 +2564,12 @@ final: prev:
diffview-nvim = buildVimPluginFrom2Nix {
pname = "diffview.nvim";
- version = "2022-09-24";
+ version = "2022-10-04";
src = fetchFromGitHub {
owner = "sindrets";
repo = "diffview.nvim";
- rev = "6baa30d0a6f63da254c2d2c0638a426166973976";
- sha256 = "0jhs3nkxjkp0w26yx6p9qx7la9sr4pxp2vgcdj6jbgrwifxaqp3y";
+ rev = "7c149a4df943c05846d3f552b89b47df50f009c9";
+ sha256 = "0660pvik5hzv8m42zwm67cm73rk1kln3ig2kpqyidbihpaxx95ay";
};
meta.homepage = "https://github.com/sindrets/diffview.nvim/";
};
@@ -2600,12 +2600,12 @@ final: prev:
dressing-nvim = buildVimPluginFrom2Nix {
pname = "dressing.nvim";
- version = "2022-09-20";
+ version = "2022-10-03";
src = fetchFromGitHub {
owner = "stevearc";
repo = "dressing.nvim";
- rev = "76477792b34f8fed167b5aa61a325e4dab26c3d7";
- sha256 = "10ma1k67c36jy38j3mx3s57scflmja7m68cgf5dzh0icg7h4viyi";
+ rev = "12b808a6867e8c38015488ad6cee4e3d58174182";
+ sha256 = "037sxvq9ywdnmy9f2gw89q52a76rmg4gwbn62i669ca95wvkhzxa";
};
meta.homepage = "https://github.com/stevearc/dressing.nvim/";
};
@@ -2770,12 +2770,12 @@ final: prev:
feline-nvim = buildVimPluginFrom2Nix {
pname = "feline.nvim";
- version = "2022-10-01";
+ version = "2022-10-03";
src = fetchFromGitHub {
owner = "feline-nvim";
repo = "feline.nvim";
- rev = "83fcde2853a8881ea1b59cca80a5285662c1706c";
- sha256 = "0v3xmvk8jgad29wpxqdkqq95s1cap7gdz07i299hcz94l1y5fiqz";
+ rev = "5d6a054c476f2c2e3de72022d8f59764e53946ee";
+ sha256 = "1376p6hjwl3dd4fsc93qhc19dcnycp2gkz3nz684var2nk9rxanq";
};
meta.homepage = "https://github.com/feline-nvim/feline.nvim/";
};
@@ -2927,12 +2927,12 @@ final: prev:
friendly-snippets = buildVimPluginFrom2Nix {
pname = "friendly-snippets";
- version = "2022-09-18";
+ version = "2022-10-03";
src = fetchFromGitHub {
owner = "rafamadriz";
repo = "friendly-snippets";
- rev = "2be79d8a9b03d4175ba6b3d14b082680de1b31b1";
- sha256 = "0hbvqcmfgkdww6gwdx3xaim2bx5xvw825slh3wi69wkqa5qbjasx";
+ rev = "9f4ffd17ade26815cad52ba90f478a4e6e2d80df";
+ sha256 = "18saq9cswki4ny1ihvng1bgfc2zl69vngdm5c2hh7vszra95ql3s";
};
meta.homepage = "https://github.com/rafamadriz/friendly-snippets/";
};
@@ -3911,12 +3911,12 @@ final: prev:
legendary-nvim = buildVimPluginFrom2Nix {
pname = "legendary.nvim";
- version = "2022-09-26";
+ version = "2022-10-03";
src = fetchFromGitHub {
owner = "mrjones2014";
repo = "legendary.nvim";
- rev = "59309190f3c80a41160e29d644a15ceb5c64e239";
- sha256 = "17zg7hpabnb0bc9y78i358nasixmznimp44z097xw5h3fkz2z2aq";
+ rev = "aeb8ac4976094c9fb8741b623c301e3da9221edb";
+ sha256 = "01lz5p8mjjrfx6hm2s678ydixyxa3hqpmc7jv3j612lkk13hypms";
};
meta.homepage = "https://github.com/mrjones2014/legendary.nvim/";
};
@@ -4306,12 +4306,12 @@ final: prev:
lua-dev-nvim = buildVimPluginFrom2Nix {
pname = "lua-dev.nvim";
- version = "2022-10-02";
+ version = "2022-10-04";
src = fetchFromGitHub {
owner = "folke";
repo = "lua-dev.nvim";
- rev = "2ffe2f6de00360f13ac939b7f7257e6de5e80132";
- sha256 = "04nks3j6ah2dn4hlqabz0cvlwam86ig0a89mzpnw52injl95k9a1";
+ rev = "e651a72bd045f3d82efdd7d20f3630379af784b0";
+ sha256 = "140211vdac3khf082jfdfr6jixbl2s5x5g8z9j8ga6qyw0apdk95";
};
meta.homepage = "https://github.com/folke/lua-dev.nvim/";
};
@@ -4427,12 +4427,12 @@ final: prev:
material-nvim = buildVimPluginFrom2Nix {
pname = "material.nvim";
- version = "2022-09-25";
+ version = "2022-10-03";
src = fetchFromGitHub {
owner = "marko-cerovac";
repo = "material.nvim";
- rev = "548761ecc9f23423186dfeee293807f957b45185";
- sha256 = "0drcda1mipyia6pll6k2pns1sniwhsxs5hpc3671i77fwqw4synb";
+ rev = "88e1d132cc7b27a8304b897873384bee343b2d2c";
+ sha256 = "1jg2vqrbd1m94gqbdc3nwp6lbgb578vrw3nkh2a2p8694gp8ha5g";
};
meta.homepage = "https://github.com/marko-cerovac/material.nvim/";
};
@@ -5109,6 +5109,18 @@ final: prev:
meta.homepage = "https://github.com/mcchrish/nnn.vim/";
};
+ noice-nvim = buildVimPluginFrom2Nix {
+ pname = "noice.nvim";
+ version = "2022-10-04";
+ src = fetchFromGitHub {
+ owner = "folke";
+ repo = "noice.nvim";
+ rev = "15f3bbd607feee3dd4ea255ea2344c3d7d647406";
+ sha256 = "0kps8h4wrlidkjlklmhwdxabgfkb57qr5qmmn3b0bzlqamph21f7";
+ };
+ meta.homepage = "https://github.com/folke/noice.nvim/";
+ };
+
nord-vim = buildVimPluginFrom2Nix {
pname = "nord-vim";
version = "2022-05-31";
@@ -5159,24 +5171,24 @@ final: prev:
nui-nvim = buildVimPluginFrom2Nix {
pname = "nui.nvim";
- version = "2022-09-12";
+ version = "2022-10-04";
src = fetchFromGitHub {
owner = "MunifTanjim";
repo = "nui.nvim";
- rev = "e9889bbd9919544697d497537acacd9c67d0de99";
- sha256 = "0gd2kha6hi6z3y8g0wrgi9lnslchmldhxc5vbd6iak47csi7h7gr";
+ rev = "4715f6092443f0b8fb9a3bcb0cfd03202bb03477";
+ sha256 = "1ddqwifszbdl8yzi0sj8dh20cb4hg6rk3s6qjy4l4sgslzxgsnk9";
};
meta.homepage = "https://github.com/MunifTanjim/nui.nvim/";
};
null-ls-nvim = buildVimPluginFrom2Nix {
pname = "null-ls.nvim";
- version = "2022-10-01";
+ version = "2022-10-04";
src = fetchFromGitHub {
owner = "jose-elias-alvarez";
repo = "null-ls.nvim";
- rev = "c0c19f32b614b3921e17886c541c13a72748d450";
- sha256 = "1dvxpbl5jkzwcq1hk0b4r09qmjh5dxknbfmsyjxb6d4pzwv795xh";
+ rev = "c333ecce37ee5f096f17754901e4ec4827041166";
+ sha256 = "10nrgr1jqh3rqanakx2pary4yqlnjk2lz5bslbaznbv1jgxh2zj6";
};
meta.homepage = "https://github.com/jose-elias-alvarez/null-ls.nvim/";
};
@@ -5255,12 +5267,12 @@ final: prev:
nvim-bqf = buildVimPluginFrom2Nix {
pname = "nvim-bqf";
- version = "2022-09-21";
+ version = "2022-10-04";
src = fetchFromGitHub {
owner = "kevinhwang91";
repo = "nvim-bqf";
- rev = "aea31569d1b20aa6a35fa84ec756cb205a4a7134";
- sha256 = "105iz6m3hp2qqxhmgnz17rydcbbvwyn3yvrlfr5jsj0r8qxfs0yj";
+ rev = "90b00664709bc799bfa7cccde6dc34004499a089";
+ sha256 = "09nahj79xqira309dm84vm012n2b8q2k47z8wjib7a4zf2gqfmds";
};
meta.homepage = "https://github.com/kevinhwang91/nvim-bqf/";
};
@@ -5531,12 +5543,12 @@ final: prev:
nvim-jdtls = buildVimPluginFrom2Nix {
pname = "nvim-jdtls";
- version = "2022-09-29";
+ version = "2022-10-04";
src = fetchFromGitHub {
owner = "mfussenegger";
repo = "nvim-jdtls";
- rev = "75d27daa061458dd5735b5eb5bbc48d3baad1186";
- sha256 = "12yr1awyjl3chifq02yk3477vylli6vx4d2jkypqy7z91c1xf5jf";
+ rev = "0422245fdef57aa4eddba3d99aee1afaaf425da7";
+ sha256 = "0h43bqf5n0l8f1jyzp7splsvcdran9j4arafpvli4pkfd9qx3h38";
};
meta.homepage = "https://github.com/mfussenegger/nvim-jdtls/";
};
@@ -5615,12 +5627,12 @@ final: prev:
nvim-lspconfig = buildVimPluginFrom2Nix {
pname = "nvim-lspconfig";
- version = "2022-10-02";
+ version = "2022-10-03";
src = fetchFromGitHub {
owner = "neovim";
repo = "nvim-lspconfig";
- rev = "f11fdff7e8b5b415e5ef1837bdcdd37ea6764dda";
- sha256 = "0nr58hq0ywid1ickzs6wqx3dsiggh2384kqp8gr3325p9ygkmkgx";
+ rev = "fc2f44dc6024bddb75b82e471c642ad1f4483094";
+ sha256 = "197d6xjsp8cn8ff1awvv0yb3qqbb5kvyj8ddwdkvrfkm1a4hkbf6";
};
meta.homepage = "https://github.com/neovim/nvim-lspconfig/";
};
@@ -5651,12 +5663,12 @@ final: prev:
nvim-metals = buildVimPluginFrom2Nix {
pname = "nvim-metals";
- version = "2022-10-02";
+ version = "2022-10-03";
src = fetchFromGitHub {
owner = "scalameta";
repo = "nvim-metals";
- rev = "2b795eed773d4d693bee9feae1ade84a5e9a39e7";
- sha256 = "12kdn7xg5j6flqafnfx98zv3cr2166730qwmkh48jb18p8pwci3b";
+ rev = "1284bbf8d79fe010909e65abdd849f047ff51914";
+ sha256 = "121h5whwdyv3svby6qsjp893lwc98b6bs18jy58y5xzdzqv2lrd3";
};
meta.homepage = "https://github.com/scalameta/nvim-metals/";
};
@@ -5819,12 +5831,12 @@ final: prev:
nvim-treesitter = buildVimPluginFrom2Nix {
pname = "nvim-treesitter";
- version = "2022-10-02";
+ version = "2022-10-04";
src = fetchFromGitHub {
owner = "nvim-treesitter";
repo = "nvim-treesitter";
- rev = "8e763332b7bf7b3a426fd8707b7f5aa85823a5ac";
- sha256 = "1ah1ywrdcqzqd8jm2rhb9k4wpkq0xcm011vnalkiw1xiax251ndv";
+ rev = "ffd4525fd9e61950520cea4737abc1800ad4aabb";
+ sha256 = "0v73bdkmcnmm9j44w94hly2c6vnqfm375h1bss2vvw0whnk3in94";
};
meta.homepage = "https://github.com/nvim-treesitter/nvim-treesitter/";
};
@@ -5915,12 +5927,12 @@ final: prev:
nvim-web-devicons = buildVimPluginFrom2Nix {
pname = "nvim-web-devicons";
- version = "2022-09-30";
+ version = "2022-10-03";
src = fetchFromGitHub {
owner = "kyazdani42";
repo = "nvim-web-devicons";
- rev = "563f3635c2d8a7be7933b9e547f7c178ba0d4352";
- sha256 = "0lfhv9pd9a9q5qy45f9zag2fzfjlsisrf5h4xd64033331a67pgg";
+ rev = "a8cf88cbdb5c58e2b658e179c4b2aa997479b3da";
+ sha256 = "1946azhr3rq702mvidzby9jvq7h2zs45d6k9j7clxw2g9xbx0k6a";
};
meta.homepage = "https://github.com/kyazdani42/nvim-web-devicons/";
};
@@ -6047,24 +6059,24 @@ final: prev:
onedark-vim = buildVimPluginFrom2Nix {
pname = "onedark.vim";
- version = "2022-07-18";
+ version = "2022-10-03";
src = fetchFromGitHub {
owner = "joshdick";
repo = "onedark.vim";
- rev = "1fe54f212f09a03c2b5e277f0fe5b7b9d0b0a4ed";
- sha256 = "19jhpfwidwigrcwz20qgm4gf5znz61xslfsf90fkr7k45vgwsk4q";
+ rev = "0c23bb090f14580c924323ef1d3ccb1f9d2fa001";
+ sha256 = "1fylkscj2iz4p89807xzzaj21lqi6621afsa8p3pms5vcn0hi8jm";
};
meta.homepage = "https://github.com/joshdick/onedark.vim/";
};
onedarkpro-nvim = buildVimPluginFrom2Nix {
pname = "onedarkpro.nvim";
- version = "2022-09-29";
+ version = "2022-10-04";
src = fetchFromGitHub {
owner = "olimorris";
repo = "onedarkpro.nvim";
- rev = "a8cac3f8634edf16fb0fa855329b48ef3a8eea8d";
- sha256 = "1siwvam38mlcazv6kq1qvrc7rkxs817zah4pkk0107821z38hpyr";
+ rev = "11f6050c85e42d3f24bafd42ea20c4ab5540266f";
+ sha256 = "0iq5ajrfs1iqxnd4x1hm1d0321czvqbkfrig796ih3qcnglhn26s";
};
meta.homepage = "https://github.com/olimorris/onedarkpro.nvim/";
};
@@ -6119,12 +6131,12 @@ final: prev:
orgmode = buildVimPluginFrom2Nix {
pname = "orgmode";
- version = "2022-09-29";
+ version = "2022-10-04";
src = fetchFromGitHub {
owner = "nvim-orgmode";
repo = "orgmode";
- rev = "95f927355d4c275a9aad1e7fcc576cdb59f42d60";
- sha256 = "197ijymf7ad36zpk9d62nm4nb54d4n1ai17yimx7ji2a2z0qc845";
+ rev = "017570f58c6316982ecc6ddfe6fefd28b55a4092";
+ sha256 = "0bbvdraxslg8k2m2ldglmspaawrrrp3plglzri7hm8scnw7mz58n";
};
meta.homepage = "https://github.com/nvim-orgmode/orgmode/";
};
@@ -6553,12 +6565,12 @@ final: prev:
registers-nvim = buildVimPluginFrom2Nix {
pname = "registers.nvim";
- version = "2022-10-02";
+ version = "2022-10-03";
src = fetchFromGitHub {
owner = "tversteeg";
repo = "registers.nvim";
- rev = "d155742d5727373be0b484e87a0635348bbe2895";
- sha256 = "047c1nirs4qldxikx70dgchb8clmqac8255hbwrcydlbqrv6b66y";
+ rev = "29af8cd89822d4eeadbd3410bcb0c6ae1ce83307";
+ sha256 = "06xilrcsya49p59bnyg1958ipa2avzjavnih9md0h89ks3k93rs7";
};
meta.homepage = "https://github.com/tversteeg/registers.nvim/";
};
@@ -7819,12 +7831,12 @@ final: prev:
tokyonight-nvim = buildVimPluginFrom2Nix {
pname = "tokyonight.nvim";
- version = "2022-10-02";
+ version = "2022-10-04";
src = fetchFromGitHub {
owner = "folke";
repo = "tokyonight.nvim";
- rev = "66bfc2e8f754869c7b651f3f47a2ee56ae557764";
- sha256 = "1ld3cddnp7hl2zv86b2y2b2fjb3pivq3vlfn2mmnyy5vgflpq0w5";
+ rev = "d6a0adfe3f914efa06ca6e662f0b1398f3522783";
+ sha256 = "0d7ps1cya20i32d19qy93ycjwb57w2kid5wg2scg88kdi4g46q4v";
};
meta.homepage = "https://github.com/folke/tokyonight.nvim/";
};
@@ -8791,12 +8803,12 @@ final: prev:
vim-clap = buildVimPluginFrom2Nix {
pname = "vim-clap";
- version = "2022-10-01";
+ version = "2022-10-04";
src = fetchFromGitHub {
owner = "liuchengxu";
repo = "vim-clap";
- rev = "dc7089bef1e9759a219dc7df7efe39053f20fad3";
- sha256 = "1brkxd0yjrpkv9wzd42dzg5xqy3xifd7590f27lqjz2z0fymzgcy";
+ rev = "e2df4b83764f816d517563229b0f1c48d2610b3f";
+ sha256 = "13iy41x595nw5k8xd93v04xdbvnsx5s254v1mh5ima300abmx27w";
};
meta.homepage = "https://github.com/liuchengxu/vim-clap/";
};
@@ -10016,12 +10028,12 @@ final: prev:
vim-illuminate = buildVimPluginFrom2Nix {
pname = "vim-illuminate";
- version = "2022-09-21";
+ version = "2022-10-04";
src = fetchFromGitHub {
owner = "RRethy";
repo = "vim-illuminate";
- rev = "a2e8476af3f3e993bb0d6477438aad3096512e42";
- sha256 = "1wk0gxvljzl6c0vrwb99mvxj755ck1c6jhvn16r1d68kva1f0nkj";
+ rev = "0603e75fc4ecde1ee5a1b2fc8106ed6704f34d14";
+ sha256 = "01361ss6g7kcap7hjma9ij8xa75zlvy878s4p7r5sxxbdwwpqarg";
};
meta.homepage = "https://github.com/RRethy/vim-illuminate/";
};
@@ -11590,12 +11602,12 @@ final: prev:
vim-sexp-mappings-for-regular-people = buildVimPluginFrom2Nix {
pname = "vim-sexp-mappings-for-regular-people";
- version = "2020-01-16";
+ version = "2022-10-04";
src = fetchFromGitHub {
owner = "tpope";
repo = "vim-sexp-mappings-for-regular-people";
- rev = "7c3de2f13422fb4b62b4c34a660532c7b3d240c7";
- sha256 = "0malswal9hnbq2wf1rx2lp1r69wpwsvyhgi46xbg079x2n857bmj";
+ rev = "ffe645ff61e22d0b7c282d53b8745be4298104e6";
+ sha256 = "1g0zi26lppgp35f9q12484c00q7yj58d7wrpfs57v4six02292dc";
};
meta.homepage = "https://github.com/tpope/vim-sexp-mappings-for-regular-people/";
};
@@ -12179,12 +12191,12 @@ final: prev:
vim-tpipeline = buildVimPluginFrom2Nix {
pname = "vim-tpipeline";
- version = "2022-09-26";
+ version = "2022-10-03";
src = fetchFromGitHub {
owner = "vimpostor";
repo = "vim-tpipeline";
- rev = "c9a050e10d95461e344f7908fdb5e2d93156601a";
- sha256 = "1xz5ycnai7iy94xiq1xp1l1c66g0p39pndb09bkxmfxrdqi8pmyd";
+ rev = "5b9701c5b2c9d90a304f10aaf75c85cc91678d57";
+ sha256 = "09174syh0yd85xwc9kv8jv6h7zsd5ds8hrvzk7qryacb95vgv8mv";
};
meta.homepage = "https://github.com/vimpostor/vim-tpipeline/";
};
@@ -12684,12 +12696,12 @@ final: prev:
vimtex = buildVimPluginFrom2Nix {
pname = "vimtex";
- version = "2022-09-29";
+ version = "2022-10-03";
src = fetchFromGitHub {
owner = "lervag";
repo = "vimtex";
- rev = "54fd9f5ba70ba907e683a42e2b1903133a98dd60";
- sha256 = "04ksc7kw8w84ck7j1v7j16f0n85g6sv66cv4k6v8wdr3zm544zhl";
+ rev = "06ae45a2aa9fdee5d479b2ccd1be145d225852e2";
+ sha256 = "086qima9v821raw2mbm3wxkfj5l58mwwlbgjnnx5sz9msw7qg7dc";
};
meta.homepage = "https://github.com/lervag/vimtex/";
};
@@ -13045,12 +13057,12 @@ final: prev:
chad = buildVimPluginFrom2Nix {
pname = "chad";
- version = "2022-10-02";
+ version = "2022-10-04";
src = fetchFromGitHub {
owner = "ms-jpq";
repo = "chadtree";
- rev = "f58e1b82cf3c2f2b89d9f9c41a9fa3215880ad5c";
- sha256 = "02dzhfwmvqrkj19cgsinbvzdha6w1nw287dr0b1r6j5i5aqkqapa";
+ rev = "588c7e471f80666a3796cd432b192182238181c5";
+ sha256 = "1sig0gpgdj7qgpd889h5iabmz8x33niyd0jqfspsbw256vy6mki0";
};
meta.homepage = "https://github.com/ms-jpq/chadtree/";
};
@@ -13117,12 +13129,12 @@ final: prev:
rose-pine = buildVimPluginFrom2Nix {
pname = "rose-pine";
- version = "2022-09-20";
+ version = "2022-10-03";
src = fetchFromGitHub {
owner = "rose-pine";
repo = "neovim";
- rev = "3723a16f99955ab274777cc27323b75f2515420f";
- sha256 = "1mx6vkii6rhi7lv5l50kc7rqmi9rxvhw9bm7i8450d0258c987ak";
+ rev = "69dca24ba7f8e74f1e6f0bacbc93481ac4047f2e";
+ sha256 = "1n6q7h53zbbybyi219hamagpycasvnnxjgvifsdrxw7825zdnlsy";
};
meta.homepage = "https://github.com/rose-pine/neovim/";
};
diff --git a/pkgs/applications/editors/vim/plugins/overrides.nix b/pkgs/applications/editors/vim/plugins/overrides.nix
index 204ac0d298f3..69f07ef40fec 100644
--- a/pkgs/applications/editors/vim/plugins/overrides.nix
+++ b/pkgs/applications/editors/vim/plugins/overrides.nix
@@ -612,6 +612,10 @@ self: super: {
dependencies = with self; [ plenary-nvim ];
});
+ noice-nvim = super.noice-nvim.overrideAttrs(old: {
+ dependencies = with self; [ nui-nvim nvim-notify ];
+ });
+
null-ls-nvim = super.null-ls-nvim.overrideAttrs (old: {
dependencies = with self; [ plenary-nvim ];
});
diff --git a/pkgs/applications/editors/vim/plugins/vim-plugin-names b/pkgs/applications/editors/vim/plugins/vim-plugin-names
index e02ef4471aae..746a46a0bd20 100644
--- a/pkgs/applications/editors/vim/plugins/vim-plugin-names
+++ b/pkgs/applications/editors/vim/plugins/vim-plugin-names
@@ -429,6 +429,7 @@ https://github.com/EdenEast/nightfox.nvim/,,
https://github.com/zah/nim.vim/,,
https://github.com/tjdevries/nlua.nvim/,,
https://github.com/mcchrish/nnn.vim/,,
+https://github.com/folke/noice.nvim/,HEAD,
https://github.com/arcticicestudio/nord-vim/,,
https://github.com/shaunsingh/nord.nvim/,,
https://github.com/andersevenrud/nordic.nvim/,,
diff --git a/pkgs/applications/editors/vim/plugins/vim-utils.nix b/pkgs/applications/editors/vim/plugins/vim-utils.nix
index 1692a81c3d6c..2e482cdf7df5 100644
--- a/pkgs/applications/editors/vim/plugins/vim-utils.nix
+++ b/pkgs/applications/editors/vim/plugins/vim-utils.nix
@@ -167,7 +167,7 @@ let
rtpPath = ".";
vimFarm = prefix: name: drvs:
- let mkEntryFromDrv = drv: { name = "${prefix}/${drv.pname}"; path = drv; };
+ let mkEntryFromDrv = drv: { name = "${prefix}/${lib.getName drv}"; path = drv; };
in linkFarm name (map mkEntryFromDrv drvs);
/* Generates a packpath folder as expected by vim
diff --git a/pkgs/applications/emulators/retroarch/cores.nix b/pkgs/applications/emulators/retroarch/cores.nix
index ed47c579d642..0052212ec691 100644
--- a/pkgs/applications/emulators/retroarch/cores.nix
+++ b/pkgs/applications/emulators/retroarch/cores.nix
@@ -8,7 +8,6 @@
, fetchFromGitHub
, ffmpeg
, fluidsynth
-, gcc10Stdenv
, gettext
, hexdump
, hidapi
@@ -31,7 +30,6 @@
, portaudio
, python3
, retroarch
-, SDL
, sfml
, snappy
, udev
@@ -40,6 +38,7 @@
, xxd
, xz
, zlib
+, fetchpatch
}:
let
@@ -56,7 +55,7 @@ let
, stdenvOverride ? stdenv
, src ? (getCoreSrc core)
, broken ? false
- , version ? "unstable-2022-04-21"
+ , version ? "unstable-2022-10-01"
, platforms ? retroarch.meta.platforms
# The resulting core file is based on core name
# Setting `normalizeCore` to `true` will convert `-` to `_` on the core filename
@@ -113,7 +112,7 @@ let
meta = with lib; {
inherit broken description license platforms;
homepage = "https://www.libretro.com/";
- maintainers = with maintainers; [ edwtjo hrdinka MP2E thiagokokada ];
+ maintainers = with maintainers; teams.libretro.members ++ [ hrdinka ];
};
}) // builtins.removeAttrs args [ "core" "src" "description" "license" "makeFlags" ]
);
@@ -233,6 +232,7 @@ in
core = "blastem";
description = "Port of BlastEm to libretro";
license = lib.licenses.gpl3Only;
+ platforms = lib.platforms.x86;
};
bluemsx = mkLibRetroCore {
@@ -300,7 +300,6 @@ in
citra = mkLibRetroCore {
core = "citra";
description = "Port of Citra to libretro";
- stdenvOverride = gcc10Stdenv;
license = lib.licenses.gpl2Plus;
extraBuildInputs = [ libGLU libGL boost ffmpeg nasm ];
makefile = "Makefile";
@@ -331,7 +330,6 @@ in
core = "dolphin";
description = "Port of Dolphin to libretro";
license = lib.licenses.gpl2Plus;
-
extraNativeBuildInputs = [ cmake curl pkg-config ];
extraBuildInputs = [
libGLU
@@ -359,7 +357,7 @@ in
core = "dosbox";
description = "Port of DOSBox to libretro";
license = lib.licenses.gpl2Only;
- stdenvOverride = gcc10Stdenv;
+ CXXFLAGS = "-std=gnu++11";
};
eightyone = mkLibRetroCore {
@@ -397,7 +395,8 @@ in
license = lib.licenses.gpl2Only;
extraBuildInputs = [ libGL libGLU ];
makefile = "Makefile";
- makeFlags = lib.optional stdenv.hostPlatform.isAarch64 [ "platform=arm64" ];
+ makeFlags = lib.optionals stdenv.hostPlatform.isAarch64 [ "platform=arm64" ];
+ patches = [ ./fix-flycast-makefile.patch ];
platforms = [ "aarch64-linux" "x86_64-linux" ];
};
@@ -452,9 +451,9 @@ in
core = "hatari";
description = "Port of Hatari to libretro";
license = lib.licenses.gpl2Only;
- extraBuildInputs = [ SDL zlib ];
extraNativeBuildInputs = [ which ];
dontConfigure = true;
+ # zlib is already included in mkLibRetroCore as buildInputs
makeFlags = [ "EXTERNAL_ZLIB=1" ];
};
@@ -467,41 +466,37 @@ in
mame2000 = mkLibRetroCore {
core = "mame2000";
- description = "Port of MAME ~2000 to libretro";
+ description = "Port of MAME ~2000 to libretro, compatible with MAME 0.37b5 sets";
license = "MAME";
makefile = "Makefile";
makeFlags = lib.optional (!stdenv.hostPlatform.isx86) "IS_X86=0";
- enableParallelBuilding = false;
};
mame2003 = mkLibRetroCore {
core = "mame2003";
- description = "Port of MAME ~2003 to libretro";
+ description = "Port of MAME ~2003 to libretro, compatible with MAME 0.78 sets";
license = "MAME";
makefile = "Makefile";
- enableParallelBuilding = false;
};
mame2003-plus = mkLibRetroCore {
core = "mame2003-plus";
- description = "Port of MAME ~2003+ to libretro";
+ description = "Port of MAME ~2003+ to libretro, compatible with MAME 0.78 sets";
license = "MAME";
makefile = "Makefile";
- enableParallelBuilding = false;
};
mame2010 = mkLibRetroCore {
core = "mame2010";
- description = "Port of MAME ~2010 to libretro";
+ description = "Port of MAME ~2010 to libretro, compatible with MAME 0.139 sets";
license = "MAME";
makefile = "Makefile";
makeFlags = lib.optionals stdenv.hostPlatform.isAarch64 [ "PTR64=1" "ARM_ENABLED=1" "X86_SH2DRC=0" "FORCE_DRC_C_BACKEND=1" ];
- enableParallelBuilding = false;
};
mame2015 = mkLibRetroCore {
core = "mame2015";
- description = "Port of MAME ~2015 to libretro";
+ description = "Port of MAME ~2015 to libretro, compatible with MAME 0.160 sets";
license = "MAME";
makeFlags = [ "PYTHON=python3" ];
extraNativeBuildInputs = [ python3 ];
@@ -512,16 +507,11 @@ in
mame2016 = mkLibRetroCore {
core = "mame2016";
- description = "Port of MAME ~2016 to libretro";
+ description = "Port of MAME ~2016 to libretro, compatible with MAME 0.174 sets";
license = with lib.licenses; [ bsd3 gpl2Plus ];
extraNativeBuildInputs = [ python3 ];
extraBuildInputs = [ alsa-lib ];
makeFlags = [ "PYTHON_EXECUTABLE=python3" ];
- postPatch = ''
- # Prevent the failure during the parallel building of:
- # make -C 3rdparty/genie/build/gmake.linux -f genie.make obj/Release/src/host/lua-5.3.0/src/lgc.o
- mkdir -p 3rdparty/genie/build/gmake.linux/obj/Release/src/host/lua-5.3.0/src
- '';
enableParallelBuilding = false;
};
@@ -666,7 +656,7 @@ in
platforms = lib.platforms.x86;
};
- pcsx_rearmed = mkLibRetroCore {
+ pcsx-rearmed = mkLibRetroCore {
core = "pcsx_rearmed";
description = "Port of PCSX ReARMed with GNU lightning to libretro";
license = lib.licenses.gpl2Only;
@@ -677,11 +667,7 @@ in
core = "picodrive";
description = "Fast MegaDrive/MegaCD/32X emulator";
license = "MAME";
-
- extraBuildInputs = [ libpng SDL ];
- SDL_CONFIG = "${lib.getDev SDL}/bin/sdl-config";
- dontAddPrefix = true;
- configurePlatforms = [ ];
+ dontConfigure = true;
makeFlags = lib.optional stdenv.hostPlatform.isAarch64 [ "platform=aarch64" ];
};
@@ -727,6 +713,17 @@ in
makefile = "Makefile";
};
+ puae = mkLibRetroCore {
+ core = "puae";
+ description = "Amiga emulator based on WinUAE";
+ license = lib.licenses.gpl2Only;
+ makefile = "Makefile";
+ patches = fetchpatch {
+ url = "https://github.com/libretro/libretro-uae/commit/90ba4c9bb940e566781c3590553270ad69cf212e.patch";
+ sha256 = "sha256-9xkRravvyFZc0xsIj0OSm2ux5BqYogfQ1TDnH9l6jKw=";
+ };
+ };
+
quicknes = mkLibRetroCore {
core = "quicknes";
description = "QuickNES libretro port";
@@ -747,7 +744,7 @@ in
core = "scummvm";
description = "Libretro port of ScummVM";
license = lib.licenses.gpl2Only;
- extraBuildInputs = [ fluidsynth libjpeg libvorbis libGLU libGL SDL ];
+ extraBuildInputs = [ fluidsynth libjpeg libvorbis libGLU libGL ];
makefile = "Makefile";
preConfigure = "cd backends/platform/libretro/build";
};
@@ -800,9 +797,8 @@ in
core = "stella";
description = "Port of Stella to libretro";
license = lib.licenses.gpl2Only;
- extraBuildInputs = [ libpng pkg-config SDL ];
makefile = "Makefile";
- preBuild = "cd src/libretro";
+ preBuild = "cd src/os/libretro";
dontConfigure = true;
};
@@ -844,7 +840,7 @@ in
core = "tic80";
description = "Port of TIC-80 to libretro";
license = lib.licenses.mit;
- extraNativeBuildInputs = [ cmake pkg-config libGL libGLU ];
+ extraNativeBuildInputs = [ cmake pkg-config ];
makefile = "Makefile";
cmakeFlags = [
"-DBUILD_LIBRETRO=ON"
diff --git a/pkgs/applications/emulators/retroarch/default.nix b/pkgs/applications/emulators/retroarch/default.nix
index 4a8c762b6a93..2e929debc34b 100644
--- a/pkgs/applications/emulators/retroarch/default.nix
+++ b/pkgs/applications/emulators/retroarch/default.nix
@@ -1,5 +1,6 @@
{ lib
, stdenv
+, nixosTests
, enableNvidiaCgToolkit ? false
, withGamemode ? stdenv.isLinux
, withVulkan ? stdenv.isLinux
@@ -36,11 +37,11 @@
}:
let
- version = "1.10.3";
+ version = "1.11.0";
libretroCoreInfo = fetchFromGitHub {
owner = "libretro";
repo = "libretro-core-info";
- sha256 = "sha256-wIIMEWrria8bZe/rcoJwDA9aCMWwbkDQFyEU80TZXFQ=";
+ sha256 = "sha256-46T87BpzWUQHD7CsCF2sZo065Sl8Y4Sj1zwzBWmCiiU=";
rev = "v${version}";
};
runtimeLibs = lib.optional withVulkan vulkan-loader
@@ -53,7 +54,7 @@ stdenv.mkDerivation rec {
src = fetchFromGitHub {
owner = "libretro";
repo = "RetroArch";
- sha256 = "sha256-nAv1yv0laqlOmB8UUkK5wSYy/ySqXloEErm+yV30bbA=";
+ sha256 = "sha256-/rOf85TQTXbY9kIETaO5E58f2ZvKPqEFLsbNne/+/lw=";
rev = "v${version}";
};
@@ -135,12 +136,14 @@ stdenv.mkDerivation rec {
# https://github.com/libretro/RetroArch/issues/14025
++ lib.optionals stdenv.isDarwin [ "-fcommon" ];
+ passthru.tests = nixosTests.retroarch;
+
meta = with lib; {
homepage = "https://libretro.com";
description = "Multi-platform emulator frontend for libretro cores";
license = licenses.gpl3Plus;
platforms = platforms.unix;
changelog = "https://github.com/libretro/RetroArch/blob/v${version}/CHANGES.md";
- maintainers = with maintainers; [ MP2E edwtjo matthewbauer kolbycrouch thiagokokada ];
+ maintainers = with maintainers; teams.libretro.members ++ [ matthewbauer kolbycrouch ];
};
}
diff --git a/pkgs/applications/emulators/retroarch/fix-flycast-makefile.patch b/pkgs/applications/emulators/retroarch/fix-flycast-makefile.patch
new file mode 100644
index 000000000000..a067839c7c32
--- /dev/null
+++ b/pkgs/applications/emulators/retroarch/fix-flycast-makefile.patch
@@ -0,0 +1,12 @@
+diff --git a/Makefile b/Makefile
+index 01d99c30..8c2dd248 100644
+--- a/Makefile
++++ b/Makefile
+@@ -440,7 +440,6 @@ else ifeq ($(platform), arm64)
+ CPUFLAGS += -DTARGET_LINUX_ARMv8 -frename-registers
+ CFLAGS += $(CPUFLAGS)
+ CXXFLAGS += $(CPUFLAGS)
+- ASFLAGS += $(CFLAGS) -c -frename-registers -fno-strict-aliasing -ffast-math -ftree-vectorize
+ PLATFORM_EXT := unix
+ WITH_DYNAREC=arm64
+ HAVE_GENERIC_JIT = 0
diff --git a/pkgs/applications/emulators/retroarch/hashes.json b/pkgs/applications/emulators/retroarch/hashes.json
index 41649cbf4c00..71eec60faf0e 100644
--- a/pkgs/applications/emulators/retroarch/hashes.json
+++ b/pkgs/applications/emulators/retroarch/hashes.json
@@ -2,8 +2,8 @@
"atari800": {
"owner": "libretro",
"repo": "libretro-atari800",
- "rev": "beab30e7ea10b7ed14d0514064f47d16f76cd995",
- "sha256": "r9MsnasNhhYdFyr2VHJXkTXssB5U00JW6wN/+i+SNUk="
+ "rev": "94033288b026fe699bc50703609807aa8075f4dd",
+ "sha256": "fTKFELELt1g7t3uPgnXIgeMkkSbl9GHr0/k2FHcpDFI="
},
"beetle-gba": {
"owner": "libretro",
@@ -14,38 +14,38 @@
"beetle-lynx": {
"owner": "libretro",
"repo": "beetle-lynx-libretro",
- "rev": "de0d520d679cb92767876d4e98da908b1ea6a2d6",
- "sha256": "BszU5bnlHBOwQSZOM9P4WIP863rS5RluNWvGBFxqzYs="
+ "rev": "3d2fcc5a555bea748b76f92a082c40227dff8222",
+ "sha256": "PpFLi9DIvv8igtAqDPkLfH1CjkbeOumcpNCP7K9C1PY="
},
"beetle-ngp": {
"owner": "libretro",
"repo": "beetle-ngp-libretro",
- "rev": "facf8e1f5440c5d289258ee3c483710f3bf916fb",
- "sha256": "vDKDt7MvCB9XQYP291cwcEPDxfNIVgNSWtBYz9PVgcw="
+ "rev": "00c7cb8ea97ad9a372307405d8abf34e401fec8a",
+ "sha256": "MtZMPjgT4dQy+E+4jSDE08PRi0pwa+q48kmTHhfIQMY="
},
"beetle-pce-fast": {
"owner": "libretro",
"repo": "beetle-pce-fast-libretro",
- "rev": "e8801687f232a6f8828b3ff5dadbc9fe1b0076fc",
- "sha256": "YM+URLnMqsdmk/5yqCg8U4mPpgtmj5qne2CrbTpTeN8="
+ "rev": "cc248db4d2f47d0f255fbc1a3c651df4beb3d835",
+ "sha256": "euoNldhyEPfC9EgEX201mpSjns2qbCIAow0zmMKTnaE="
},
"beetle-pcfx": {
"owner": "libretro",
"repo": "beetle-pcfx-libretro",
- "rev": "bfc0954e14b261a04dcf8dbe0df8798f16ae3f3c",
- "sha256": "XzCb1lZFYgsg+3eQ1OqyycNxCgLtZFA30rno3ytdnoM="
+ "rev": "08632fcbc039f70dbd6da5810db9dcc304d7fbde",
+ "sha256": "G+OUs6k8dwH4BK+0X/g47wbY7Dpb3lT5TslLwPWq6g4="
},
"beetle-psx": {
"owner": "libretro",
"repo": "beetle-psx-libretro",
- "rev": "5a24d54d30dd00d817d267cf92fd5b3f4640928f",
- "sha256": "uG1BhElNW75PnfM+rEYfbl97iwRT89hnl84yvlgx6fg="
+ "rev": "bd6b9ef3049fe3f70a18ee6f752a935ae83c2f2b",
+ "sha256": "CXcLMOF6IXUrp14nyTQ5KK2LR+FyWcF0UcvHTxEVSo0="
},
"beetle-saturn": {
"owner": "libretro",
"repo": "beetle-saturn-libretro",
- "rev": "dd18f9c477106263b3b7b050f4970d331ff7b23a",
- "sha256": "RN5dmORtNOjIklSz/n11lz37bZ4IcPD7cyRcBGS4Oi8="
+ "rev": "054862a4ccb9b2f1bad9e5b075fc3d1116dc8055",
+ "sha256": "oL9YPvDGkUs0Tm/rNznnV+Tg5mcvqs1VcGVmz/fDHmw="
},
"beetle-snes": {
"owner": "libretro",
@@ -56,63 +56,63 @@
"beetle-supergrafx": {
"owner": "libretro",
"repo": "beetle-supergrafx-libretro",
- "rev": "59991a98c232b1a8350a9d67ac554c5b22771d3c",
- "sha256": "zv3dAPWrj6hkNaFQ5vUKm5Orcrb2XO48WSkAFiAVUO0="
+ "rev": "3cfafe8c684a2f4f4532bcf18e25d2f8760ca45d",
+ "sha256": "hIBUMpXgX5zPi/W1vAhkuxprGfZQ/K5ZrtiswV36EMQ="
},
"beetle-vb": {
"owner": "libretro",
"repo": "beetle-vb-libretro",
- "rev": "246555f8ed7e0b9e5748b2ee2ed6743187c61393",
- "sha256": "96lQlDqx2bvFeovqGGkemxqS2zlHw92O6YeTEGlgf34="
+ "rev": "162918f06d9a705330b2ba128e0d3b65fd1a1bcc",
+ "sha256": "BtrdDob+B5g8Lq93LUhF7E0uWFUIMZneWFgH0VcsgPE="
},
"beetle-wswan": {
"owner": "libretro",
"repo": "beetle-wswan-libretro",
- "rev": "d1fb3f399a2bc16b9ad0f2e8c8ba9f7051cd26bd",
- "sha256": "p9mJv7zBFjNh1sh5iAjBZzxP6k8ydUNDXLQIjHl9doQ="
+ "rev": "16d96f64a32cbe1fa89c40b142298dbd007f2f4d",
+ "sha256": "LBtOQfVvP70OB6qMnFXtWdJUu7CkkMfSQ0iPGhe7xeI="
},
"blastem": {
"owner": "libretro",
"repo": "blastem",
- "rev": "0786858437ed71996f43b7af0fbe627eb88152fc",
- "sha256": "uEP5hSgLAle1cLv/EM7D11TJMAggu7pqWxfrUt3rhEg="
+ "rev": "277e4a62668597d4f59cadda1cbafb844f981d45",
+ "sha256": "EHvKElPw8V5Z6LnMaQXBCdM4niLIlF3aBm8dRbeYXHs="
},
"bluemsx": {
"owner": "libretro",
"repo": "bluemsx-libretro",
- "rev": "92d0c41b4973854114c7b2d06ab727a266d404c5",
- "sha256": "dL4k+zG8L4KK4lwf9eXPVGk/u5xQn2htIEpoKyj9kQI="
+ "rev": "acf358be18644a9df0ed9602d63c2f73d4fe605a",
+ "sha256": "K4mH+brakYZcVEeYMFUkFThqdZGt2+aP5DfpOgWSJxg="
},
"bsnes": {
"owner": "libretro",
"repo": "bsnes-libretro",
- "rev": "26c583e1c5d09253b6c61e2b9d418e8758eef632",
- "sha256": "Qa0ScFHcEgBUoWouNoW4JINZ2aHjNATndxhcwKw476Q="
+ "rev": "7679cb9618c37c9044158d5cf3da28ef25afa9af",
+ "sha256": "9ozzXvCAuafcZn9iq91tTq16e2mlYqjwauJUGSbFd+k="
},
"bsnes-hd": {
"owner": "DerKoun",
"repo": "bsnes-hd",
- "rev": "65f24e56c37f46bb752190024bd4058e64ad77d1",
- "sha256": "1dk2i71NOLeTTOZjVll8wrkr5dIH5bGSGUeeHqWjZHE="
+ "rev": "04821703aefdc909a4fd66d168433fcac06c2ba7",
+ "sha256": "QmNthbWb92vel5PFwJRXeEEVZHIxfvZ0ls+csodpGbU="
},
"bsnes-mercury": {
"owner": "libretro",
"repo": "bsnes-mercury",
- "rev": "4ba6d8d88e57d3193d95e1bcf39e8d31121f76d4",
- "sha256": "w2MVslgRlxW4SMzgcXP4gXr9A8B07N7LNrB1LXzk1Zk="
+ "rev": "fb9a41fe9bc230a07c4506cad3cbf21d3fa635b4",
+ "sha256": "gBOxKSv3j229IVdtffqFV/zSSacEs8UsBERnQgdFw4Y="
},
"citra": {
"owner": "libretro",
"repo": "citra",
- "rev": "44e01f99016008eff18bc7a28234d1098382358d",
- "sha256": "vIrUStv+VM8pYeznnWSVBRfSA71/B7VIY7B/syymGzE=",
+ "rev": "70bf7d8a63b0b501e8f5cff89a86a3e2d4083aa0",
+ "sha256": "uHWROH6/ZAZygkhEQGNyllncCp2XDCdYwy/CKgGKAcM=",
"fetchSubmodules": true
},
"desmume": {
"owner": "libretro",
"repo": "desmume",
- "rev": "5d0ae2be2c9fb6362af528b3722e81323318eb9f",
- "sha256": "4bJ6fLZ+fV7SnZ71YT3JFcXFOgmskNUCmCHwc2QNl0A="
+ "rev": "fbd368c8109f95650e1f81bca1facd6d4d8687d7",
+ "sha256": "7MFa5zd1jdOCqSI+VPl5nAHE7Kfm/lA0lbSPFskzqaQ="
},
"desmume2015": {
"owner": "libretro",
@@ -123,20 +123,20 @@
"dolphin": {
"owner": "libretro",
"repo": "dolphin",
- "rev": "6a0b6ee8a4d5363e669f5faf43abc8f17e4278a8",
- "sha256": "TeeHnttGmCeOTDTK/gJM+RpusjDDndapZAa3T+oLiq0="
+ "rev": "9810e29a1f3633d32b6643b97a1147d83311d73a",
+ "sha256": "iIaVSJSC3mD1k751vQvWI6x0C/HhfjEaMwfX53FpZv4="
},
"dosbox": {
"owner": "libretro",
"repo": "dosbox-libretro",
- "rev": "74cd17ed0ff810ff78cb8c1f1e45513bfe8a0f32",
- "sha256": "0PIloW7j/87asDJ8IDw4r3r4muxNF+RbvkIRPLZQvRc="
+ "rev": "b7b24262c282c0caef2368c87323ff8c381b3102",
+ "sha256": "PG2eElenlEpu0U/NIh53p0uLqewnEdaq6Aoak5E1P3I="
},
"eightyone": {
"owner": "libretro",
"repo": "81-libretro",
- "rev": "2e34567a320cba27b9162b1776db4de3cdb7cf03",
- "sha256": "vjrHRLzc9Fy0MwV9d+LlcJTGJfVsRauEig8R+erBtfw="
+ "rev": "73f6cca62dabc84df946aea71cf457ce5ae5ea9d",
+ "sha256": "oovIKMZXxtLc+zmbguagTVoMPngokdN3xTBnb/+KUjY="
},
"fbalpha2012": {
"owner": "libretro",
@@ -147,14 +147,14 @@
"fbneo": {
"owner": "libretro",
"repo": "fbneo",
- "rev": "e4625a196b9232ba93a156e3a5164aa11193f20a",
- "sha256": "/5JmwuLWWBQWXnqCMjKzOC2XG6wo5a6xgQOYX1P1zcw="
+ "rev": "8678b0fcd02c4049c0cfa40a0ab87fded1bbedd8",
+ "sha256": "MiLYaURj17Sq8V31SDFQ93XH4DAYMQQelVq+4EBmtro="
},
"fceumm": {
"owner": "libretro",
"repo": "libretro-fceumm",
- "rev": "b3c35b6515b2b6a789c589f976a4a323ebebe3eb",
- "sha256": "zwFQGQyO0Vj/IBM1k8JB3D/jB3OwDuGdSHLavr8Fxgw="
+ "rev": "3d3cc53c0177e296af2427c29bbb31902b26f3b8",
+ "sha256": "Z5LqP6IBq0H6uM0027PSkW6JLvVDA/4CrO6bI478Z1o="
},
"flycast": {
"owner": "libretro",
@@ -165,38 +165,38 @@
"fmsx": {
"owner": "libretro",
"repo": "fmsx-libretro",
- "rev": "11fa9f3c08cde567394c41320ca76798c2c64670",
- "sha256": "1u5c5oDIjjXEquh6UBv2H1F/Ln7h44DTF1ohDG0Qnww="
+ "rev": "1360c9ff32b390383567774d01fbe5d6dfcadaa3",
+ "sha256": "LLGD29HKpV34IOJ2ygjHZZT7XQqHHXccnpGNfWCuabg="
},
"freeintv": {
"owner": "libretro",
"repo": "freeintv",
- "rev": "295dd3c9e4b2d4f652f6a6a904afbe90a8187068",
- "sha256": "tz0X6AfD7IL3Y50vjgSO5r6sDhu++6Gj8Rp7de5OqMk="
+ "rev": "9a65ec6e31d48ad0dae1f381c1ec61c897f970cb",
+ "sha256": "ZeWw/K6i04XRympqZ6sQG/yjN8cJglVcIkxpyRHx424="
},
"gambatte": {
"owner": "libretro",
"repo": "gambatte-libretro",
- "rev": "15536214cdce31894d374b2ffa2494543057082b",
- "sha256": "cTSoK6rezRajnuWPt7WkYn3SWL0sTu7h5X3Ig1KukDA="
+ "rev": "7e02df60048db0898131ea365f387a026e4e648d",
+ "sha256": "RnFuD8PL+/uPhWe+sSXMPm5+XH8FzCwY+MSquR/AB+o="
},
"genesis-plus-gx": {
"owner": "libretro",
"repo": "Genesis-Plus-GX",
- "rev": "7520ac8aae7b08262c0472e724e6ef0bfe41d285",
- "sha256": "wKcO/dulgZKgXTuHdcQvfSrfxSI5UA0az6qMLtP4K6g="
+ "rev": "5cdb31854074de1662266a0a675866ea7b787b42",
+ "sha256": "vMswSKM5aYlPZu5y4Z1L/+eaPBdQaLPPMKoC7B/xzqc="
},
"gpsp": {
"owner": "libretro",
"repo": "gpsp",
- "rev": "f0f0b31f9ab95946965b75fed8d31e19290f3d43",
- "sha256": "aiegBSpQDyXzVkyWuUpI66QvA1tqS8PQ8+75U89K10A="
+ "rev": "81649a2c8075201bb823cce8fdf16a31c92a3b6c",
+ "sha256": "De9Tke+fp6CtXzm0w6Qzts3jj1j/1uB0kYZfaWyNqA0="
},
"gw": {
"owner": "libretro",
"repo": "gw-libretro",
- "rev": "d08a08154ce8ed8e9de80582c108f157e4c6b226",
- "sha256": "PWd/r4BBmhiNqJdV6OaXHr4XCdR1GyVipq3zvyBcqEs="
+ "rev": "19a1cb3105ca4a82139fb4994e7995fd956f6f8d",
+ "sha256": "luhKXzxrXVNAHw8ArF1I78Zch7XEPwI3aqe0f6WRgD0="
},
"handy": {
"owner": "libretro",
@@ -207,44 +207,44 @@
"hatari": {
"owner": "libretro",
"repo": "hatari",
- "rev": "e5e36a5262cfeadc3d1c7b411b7a70719c4f293c",
- "sha256": "T4I3NVEMBKr5HLs60x48VNRl2TMnhqvaF+LTtYQ7qdU="
+ "rev": "1ebf0a0488580ef95c0b28f02223b31813c867c5",
+ "sha256": "i6dr+fFWPatRCIY+ajIZ1p3ERPV5ktv0nxHKxbGE5ao="
},
"mame": {
"owner": "libretro",
"repo": "mame",
- "rev": "b7dd999590717638ceade2e24d16d63147aa12ad",
- "sha256": "QgENNjykhO+WSxAb//J+R7QP3/rZnxqv7sarO4eBYuc="
+ "rev": "fcacbc7811a9b69874fd09b91e7217e44c6a0980",
+ "sha256": "WiBmqBcqxXmeQOmTN4FDDUv680uqAkpYUOnvJ7FXn4k="
},
"mame2000": {
"owner": "libretro",
"repo": "mame2000-libretro",
- "rev": "dd9d6612c29bf5b29bc2f94cab2d43fe3dcd69ee",
- "sha256": "X0fP0bNBk2hqXVdRspylLIjZO563aMXkyX4qgx/3Vr8="
+ "rev": "0208517404e841fce0c094f1a2776a0e1c6c101d",
+ "sha256": "WEJd7wSzY32sqMpMrjCD0hrOyAQq1WMBaGiY/2QQ4BQ="
},
"mame2003": {
"owner": "libretro",
"repo": "mame2003-libretro",
- "rev": "3eb27d5f161522cf873c0642f14b8e2267b3820f",
- "sha256": "TQ4FwboKeEP58hOL2hYs4OYes2o0wSKFSp4CqZV5r6I="
+ "rev": "cb0c89304b2cd584cda7105c6be4e69fa304f0e0",
+ "sha256": "ob/aUh5NZCfQvpA+nEs2QhVXeNBBVZesX/xQfatY9wU="
},
"mame2003-plus": {
"owner": "libretro",
"repo": "mame2003-plus-libretro",
- "rev": "e5ee29ecb8182952f861f22516e5791625fe2671",
- "sha256": "YunfAITR/Etm8lvEab/HigZoBz+ayJQ7ezjItWI/HvE="
+ "rev": "982db57b325b54aa90a60bd2e512b624d3b6642c",
+ "sha256": "uyysUD/PULHyaOw42GJoBsT9fYdYuAl4eLCVNRU8/Sw="
},
"mame2010": {
"owner": "libretro",
"repo": "mame2010-libretro",
- "rev": "932e6f2c4f13b67b29ab33428a4037dee9a236a8",
- "sha256": "HSZRSnc+0300UE9fPcUOMrXABlxHhTewkFPTqQ4Srxs="
+ "rev": "5f524dd5fca63ec1dcf5cca63885286109937587",
+ "sha256": "OmJgDdlan/niGQfajv0KNG8NJfEKn7Nfe6GRQD+TZ8M="
},
"mame2015": {
"owner": "libretro",
"repo": "mame2015-libretro",
- "rev": "e6a7aa4d53726e61498f68d6b8e2c092a2169fa2",
- "sha256": "IgiLxYYuUIn3YE+kQCXzgshES2VNpUHn0Qjsorw0w/s="
+ "rev": "2599c8aeaf84f62fe16ea00daa460a19298c121c",
+ "sha256": "TURTX0XrvqwqKG3O3aCttDAdicBdge5F1thVvYgEHaw="
},
"mame2016": {
"owner": "libretro",
@@ -255,20 +255,20 @@
"melonds": {
"owner": "libretro",
"repo": "melonds",
- "rev": "e93ec3e462d3dfc1556781510a3cee113f02abb2",
- "sha256": "NDrsqX17OKw1/PIZSrWAxhVl+Qk/xG7lCnr6Ts+7YJ4="
+ "rev": "6a03f3f11a729dbf698ec53954c735a0680aca01",
+ "sha256": "GH/G/UzwjNqHwtIwx6VohP4XsJKe+EFU2n+GX43IByM="
},
"mesen": {
"owner": "libretro",
"repo": "mesen",
- "rev": "bb9ea02eba28682986044a6f49329ec533aa26ba",
- "sha256": "G2NQDpByvI9RFEwrRiKXcMnPtVtqpvEoZgk7/fk5qCU="
+ "rev": "9b412c1533a6d7eec7b2904775cbd26c21f02119",
+ "sha256": "Tf+lWfSU7AuW6Um5TXkWNAeg35W08YkYQwW0Yx3iNTM="
},
"mesen-s": {
"owner": "libretro",
"repo": "mesen-s",
- "rev": "b0b53409eecb696fb13f411ffde72e8f576feb09",
- "sha256": "lDHyeIsVsI5+ZK8EJI50alrFuu0uJmxscda5bR1UmQQ="
+ "rev": "32a7adfb4edb029324253cb3632dfc6599ad1aa8",
+ "sha256": "/OOMH7kt9Pmkdmy5m+I8FMvog5mqZHyrZvfjHccz8oo="
},
"meteor": {
"owner": "libretro",
@@ -279,114 +279,120 @@
"mgba": {
"owner": "libretro",
"repo": "mgba",
- "rev": "5d48e0744059ebf38a4e937b256ffd5df4e0d103",
- "sha256": "OYw2nlldFx5B7WX0E8Gbgfp1j4h65ZxyKDS9tneHXQg="
+ "rev": "db7ace387cdc87d9f2bd4f9f5211c26ce0b07867",
+ "sha256": "i/U5yrnGQBRHqBu8c/mQ7Eov43+6IOOs+H8pSKXNM1E="
},
"mupen64plus": {
"owner": "libretro",
"repo": "mupen64plus-libretro-nx",
- "rev": "6e9dcd2cd9d23d3e79eaf2349bf7e9f25ad45bf1",
- "sha256": "rs/VL2K6aS8Rl01IyxUiWipzLEzg+7+fbXxI0qN5X/I="
+ "rev": "c10546e333d57eb2e5a6ccef1e84cb6f9274c526",
+ "sha256": "dbS32slJBfz8DHeIQy20lAYw0+ig0LRgIaGfqW082xs="
},
"neocd": {
"owner": "libretro",
"repo": "neocd_libretro",
- "rev": "327aeceecdf71c8a0c0af3d6dc53686c94fe44ad",
- "sha256": "cY0P+0EQ0b9df+YT2EMvrxjp5L+DwIg31rEJqchU+hc="
+ "rev": "b7d96e794f2dfa500cba46c78cbc3c28349cfd05",
+ "sha256": "TG5xIqIM0MlHDNtPhyISqo/ctTqemKROwXgoqUsCQ0E="
},
"nestopia": {
"owner": "libretro",
"repo": "nestopia",
- "rev": "a9e197f2583ef4f36e9e77d930a677e63a2c2f62",
- "sha256": "QqmWSk8Ejf7QMJk0cVBgpnyqcK6oLjCnnXMXInuWfYc="
+ "rev": "a9ee6ca84f04990e209880fe47144e62b14253db",
+ "sha256": "q3pD2Cm/a62x3xW8JymU9w82zHlT0BoPlaSfzjZzh/c="
},
"np2kai": {
"owner": "AZO234",
"repo": "NP2kai",
- "rev": "2b09ea6a589cdcae27bca27160b3f82638fbb45d",
- "sha256": "M3kGA1TU3xui6of9XgUspI+Zf+hjYP1d2mgKwxsy3IQ=",
+ "rev": "606fafa7081b62df5f4727c34560da23927c21cd",
+ "sha256": "qS7OrY8bFkAmRgbzLCw9PqgxtKuVNKI+tsDVU7PqWIw=",
"fetchSubmodules": true
},
"nxengine": {
"owner": "libretro",
"repo": "nxengine-libretro",
- "rev": "bc692a392473a45f63cdccbb353c3445b530d671",
- "sha256": "tAZkYHRKL+mI6f7YCnaU0qTSOZGW2o20p6wovMK1n2k="
+ "rev": "aa32afb8df8461920037bdbbddbff00bf465c6de",
+ "sha256": "Ic5YsNLoEZJ/vkjthwypwLN3ntB/5EX8bU92V80S7R4="
},
"o2em": {
"owner": "libretro",
"repo": "libretro-o2em",
- "rev": "641f06d67d192a0677ec861fcb731d3ce8da0f87",
- "sha256": "s3FreOziXeGhUyQdSoOywZldD21m3+OXK0EJ2Z8rXiY="
+ "rev": "3303cc15e4323280084471f694f6d34c78199725",
+ "sha256": "xH8Dlsg84q8awxjObMPXKZcJSwmix1YdRXIpee7rw6o="
},
"opera": {
"owner": "libretro",
"repo": "opera-libretro",
- "rev": "3849c969c64b82e622a7655b327fa94bc5a4c7cc",
- "sha256": "McSrvjrYTemqAAnfHELf9qXC6n6Dg4kNsUDA7e2DvkE="
+ "rev": "8a49bb8877611037438aeb857cb182f41ee0e3a1",
+ "sha256": "oH+sQi4D+xkqiJbq7fgGdHjgvyLt8UjlgXIo7K3wXZM="
},
"parallel-n64": {
"owner": "libretro",
"repo": "parallel-n64",
- "rev": "b804ab1a199d6ff1f8fef4aa7dfcf663990e430b",
- "sha256": "zAet6hYa/79CBbvwZNTNs/ayWuHHlwg+0Y4BAUFddBc="
+ "rev": "a03fdcba6b2e9993f050b50112f597ce2f44fa2c",
+ "sha256": "aJG+s+1OkHQHPvVzlJWU/VziQWj1itKkRwqcEBK+lgA="
},
"pcsx2": {
"owner": "libretro",
"repo": "pcsx2",
- "rev": "0251730a21d7238856d79aa25e2942b48edb38f6",
- "sha256": "a/lWLBCww4QwxdO7Sbvmfq0XF9FnP4xzF51ljsWk46I="
+ "rev": "ad7650949e6c8c87cd2c5e278af88e3722a321bc",
+ "sha256": "iqXCW28werxbZNo1hlDLiD3ywSZ9hvWmxwGPJ5bRZ+w="
},
"pcsx_rearmed": {
"owner": "libretro",
"repo": "pcsx_rearmed",
- "rev": "e24732050e902bd5402b2b7da7c391d2ca8fa799",
- "sha256": "tPz5E3QO6FucjYOzdjbY2FHLPz1Fmms10tdt7rZIW8U="
+ "rev": "5b406fd9567c0829171af44b3325dae6dd155732",
+ "sha256": "V+z58fRSaLurDiu4Y/xQjndkMKPSmEGjay3foDkppM0="
},
"picodrive": {
"owner": "libretro",
"repo": "picodrive",
- "rev": "7ff457f2f833570013f2a7e2608ac40632e0735d",
- "sha256": "xEG5swvvWFhvosC1XpFaZphESNaf4AtX+6UE02B57j8=",
+ "rev": "26719f348eb579a8372e2c58ef0132d95d9dc817",
+ "sha256": "xD8RxFHeKOltIc35Zudj29x+vkq2AXfSKu0/ZzQQHi4=",
"fetchSubmodules": true
},
"play": {
"owner": "jpd002",
"repo": "Play-",
- "rev": "39eb5c2eb6da65dc76b1c4d1319175a68120a77a",
- "sha256": "EF3p0lvHjKGt4pxtTAkDM+uHsnW72lN+Ki8BaZIk/BQ=",
+ "rev": "1129440ab6ede8263275dc3a5eec1624d20442fb",
+ "sha256": "nTJjxVPGOofnIZbjGe3GZDIj4YnC73IbSdGsSuVIjEA=",
"fetchSubmodules": true
},
"ppsspp": {
"owner": "hrydgard",
"repo": "ppsspp",
- "rev": "83b8211abf7fb705835eb1ccf8feae04816ae96c",
- "sha256": "8K4bz/GUnE8GrlAVFULMXLC+i3ZYvR28EpehEg6up4s=",
+ "rev": "16f93a26844b26e11cf9becfd275c4a637bfd1ab",
+ "sha256": "k1URDPE4kRMY1LUeR2zcLJFGt0Gnt5N8gTQHpIxDdRw=",
"fetchSubmodules": true
},
"prboom": {
"owner": "libretro",
"repo": "libretro-prboom",
- "rev": "b22a6b19fd976a14374db9083baea9c91b079106",
- "sha256": "NmEWRTHaZjV2Y6Wrc3WOamXCnOawKc2ja1KBDxokRiY="
+ "rev": "4e671fa0a4b7b892e17ac4e1803c9d627653a4c1",
+ "sha256": "d2/cpfhNczZkHzMGQIxO9jw65AMs9Jmh4ItiLLdDYsk="
},
"prosystem": {
"owner": "libretro",
"repo": "prosystem-libretro",
- "rev": "fbf62c3dacaac694f7ec26cf9be10a51b27271e7",
- "sha256": "Opb6CUeT/bnaTg4MJo7DNsVyaPa73PLbIor25HHWzZ0="
+ "rev": "cf544d3c8e40ff197ea5bb177a1269db31077803",
+ "sha256": "A7yQwzM8ewI+UCPQVyO7DNyiQCTw2yG1soi6l7T3pDE="
+ },
+ "puae": {
+ "owner": "libretro",
+ "repo": "libretro-uae",
+ "rev": "1b7dd443ff89d667d99f8c44454a91ed59bcabd9",
+ "sha256": "YJiZEtB0rBFffEZj/hB7zEFBUp02kCzblq4CtCmygKo="
},
"quicknes": {
"owner": "libretro",
"repo": "QuickNES_Core",
- "rev": "e6f08c165af45fc2d2f26c80ba0cfc33e26f9cfe",
- "sha256": "JQtlqN3mvIwKy6iN9opHPHnh0E7AIn9JVitIfXklI/I="
+ "rev": "1b88a09f1c386ff9ee46bb371583ae04c5cb5dd0",
+ "sha256": "Q7DDufGTdP+R05ND56PxMNR96ZacJFxPi0ETieV2B58="
},
"sameboy": {
"owner": "libretro",
"repo": "sameboy",
- "rev": "b154b7d3d885a3cf31203f0b8f50d3b37c8b742b",
- "sha256": "tavGHiNpRiPkibi66orMf93cnCqQCD8XhSl/36nl/9M="
+ "rev": "09138330990da32362246c7034cf4de2ea0a2a2b",
+ "sha256": "hQWIuNwCykkJR+6naNarR50kUvIFNny+bbZHR6/GA/4="
},
"scummvm": {
"owner": "libretro",
@@ -397,38 +403,38 @@
"smsplus-gx": {
"owner": "libretro",
"repo": "smsplus-gx",
- "rev": "9de9847dc8ba458e9522d5ae8b87bf71ad437257",
- "sha256": "XzqQ/3XH5L79UQep+DZ+mDHnUJKZQXzjNCZNZw2mGvY="
+ "rev": "60af17ddb2231ba98f4ed1203e2a2f58d08ea088",
+ "sha256": "2SZR9BOTYLmtjEF4Bdl49H2pFNEIaU68VqlA7ll5TqU="
},
"snes9x": {
"owner": "snes9xgit",
"repo": "snes9x",
- "rev": "3c729a9763263bc3a69f48370e43ae05e672970a",
- "sha256": "01M6Wvbu1omMwh3Xg4RGh028jirGs7mLpxwKJgMRQxA="
+ "rev": "28be1a196d2c59ed4b6489d487187569a7370aff",
+ "sha256": "FW4ynSS+R1ygQaCS0UrWGktfHGtcy0P/Mp/BXKfmII0="
},
"snes9x2002": {
"owner": "libretro",
"repo": "snes9x2002",
- "rev": "c4397de75a5f11403d154abd935e39fe969bca94",
- "sha256": "yL4SIRR1Er+7Iq3YPfoe5ES47nvyA3UmGK+upLzKiFA="
+ "rev": "540baad622d9833bba7e0696193cb06f5f02f564",
+ "sha256": "WJh8Qf1/uFaL9f9d28qXsbpeAZfYGPgjoty3G6XAKSs="
},
"snes9x2005": {
"owner": "libretro",
"repo": "snes9x2005",
- "rev": "23f759bc4bf2e39733296f7749e446418e3cd0f3",
- "sha256": "/bZrMp7NHgdYvA3Tw1ZoWXRg7VxmatRUX5cCJsU3NCY="
+ "rev": "fd45b0e055bce6cff3acde77414558784e93e7d0",
+ "sha256": "zjA/G62V38/hj+WjJDGAs48AcTUIiMWL8feCqLsCRnI="
},
"snes9x2010": {
"owner": "libretro",
"repo": "snes9x2010",
- "rev": "c98224bc74aa0bbf355d128b22e4a2a4e94215b0",
- "sha256": "mf5msdwdcRRfFWHwmWLS/qKd7gNlLwexGEB6wB6TfhE="
+ "rev": "e86e54624a7910a64a9a744e3734d4067c48d240",
+ "sha256": "U1eeXuhYssAOgiNOZ7fr/8rkPScts3GmWgK6ki39PVA="
},
"stella": {
"owner": "stella-emu",
"repo": "stella",
- "rev": "efb2a9f299cad241e12d811580f28d75b6c3438d",
- "sha256": "QYwDTd8EZUMXJiuSJtoW8XQXgl+Wx0lPkNLOwzM5bzA="
+ "rev": "65115cc3a133d68979f3096bdecb067bcaedb493",
+ "sha256": "letOnjaIGIjC9xwj5C156VkBhMPFtVq12FG7SuC5+OY="
},
"stella2014": {
"owner": "libretro",
@@ -439,14 +445,14 @@
"swanstation": {
"owner": "libretro",
"repo": "swanstation",
- "rev": "0e53a5ac09a30d73d78b628f7e4954ebe5615801",
- "sha256": "vOu99fsm2oeSi96tWR+vV5suZSYCyXJVgOdvjnKbNhg="
+ "rev": "b6a18318bd7bf0d3b28b50d2b554810ea11b30cb",
+ "sha256": "jZ6SfiHFJyaTFvINrEe61yhUtWYoqRzaAi0vLuDnMuo="
},
"tgbdual": {
"owner": "libretro",
"repo": "tgbdual-libretro",
- "rev": "1e0c4f931d8c5e859e6d3255d67247d7a2987434",
- "sha256": "0wHv9DpKuzJ/q5vERqCo4GBLre2ggClBIWSjGnMLQq8="
+ "rev": "a6f3018e6a23030afc1873845ee54d4b2d8ec9d3",
+ "sha256": "MBUgYXX/Pc+TkwoS7OwbXSPssKUf6lwWx/bKhvwDkHs="
},
"thepowdertoy": {
"owner": "libretro",
@@ -457,15 +463,15 @@
"tic80": {
"owner": "libretro",
"repo": "tic-80",
- "rev": "e9f62f85a154796c6baaee8a9f6fd0cfdd447019",
- "sha256": "JTAoIqxqpaLjsQiIpJ4wQsREI5/rTxVxDywoL3oLI4Q=",
+ "rev": "bd6ce86174fc7c9d7d3a86263acf3a7de1b62c11",
+ "sha256": "RFp8sTSRwD+cgW3EYk3nBeY+zVKgZVQI5mjtfe2a64Q=",
"fetchSubmodules": true
},
"vba-m": {
"owner": "libretro",
"repo": "vbam-libretro",
- "rev": "254f6effebe882b7d3d29d9e417c6aeeabc08026",
- "sha256": "vJWjdqJ913NLGL4G15sRPqO/wp9xPsuhUMLUuAbDRKk="
+ "rev": "7c25d64d6903c6d859cce781c52da0671c4f7d3e",
+ "sha256": "U+jBM34sZxny9lpuegQ8YDKBwYrWOAyLBMKumoQCok4="
},
"vba-next": {
"owner": "libretro",
@@ -476,8 +482,8 @@
"vecx": {
"owner": "libretro",
"repo": "libretro-vecx",
- "rev": "141af284202c86ed0d4ce9030c76954a144287cf",
- "sha256": "p5vMuG2vr3BTJOQWNcTPb89MlkVrRvJNTIJSU8r9zfU="
+ "rev": "b5c17bb7fd4a704f58160bc699322a16d0643396",
+ "sha256": "nICXrVyoMWs2yDcewHd7z6rBt+haY/Dqf5lvF6RLnyg="
},
"virtualjaguar": {
"owner": "libretro",
@@ -488,7 +494,7 @@
"yabause": {
"owner": "libretro",
"repo": "yabause",
- "rev": "17dfcd8de4700341d972993501d3a043925675ce",
- "sha256": "xwW7Oe3Cy3yC0xC5acLW6OGUIG+dKd1mwiXK5ZAumdo="
+ "rev": "c7e02721eddb3de0ec7ae0d61e9e3afa5f586a62",
+ "sha256": "Y2YsPpgBA021pRDOFqH29zsRSbFIpRo5fq+tkknJbSA="
}
}
diff --git a/pkgs/applications/emulators/retroarch/update_cores.py b/pkgs/applications/emulators/retroarch/update_cores.py
index bb6fd2884a50..eb8ae705af73 100755
--- a/pkgs/applications/emulators/retroarch/update_cores.py
+++ b/pkgs/applications/emulators/retroarch/update_cores.py
@@ -71,6 +71,7 @@ CORES = {
"ppsspp": {"repo": "ppsspp", "owner": "hrydgard", "fetch_submodules": True},
"prboom": {"repo": "libretro-prboom"},
"prosystem": {"repo": "prosystem-libretro"},
+ "puae": {"repo": "libretro-uae"},
"quicknes": {"repo": "QuickNES_Core"},
"sameboy": {"repo": "sameboy"},
"scummvm": {"repo": "scummvm"},
diff --git a/pkgs/applications/misc/prusa-slicer/default.nix b/pkgs/applications/misc/prusa-slicer/default.nix
index 286abfb3fdb1..1592ef546155 100644
--- a/pkgs/applications/misc/prusa-slicer/default.nix
+++ b/pkgs/applications/misc/prusa-slicer/default.nix
@@ -130,6 +130,15 @@ stdenv.mkDerivation rec {
# likely due to commit e682dd84cff5d2420fcc0a40508557477f6cc9d3
# See issue #185808 for details.
sed -i 's|test_voronoi.cpp||g' tests/libslic3r/CMakeLists.txt
+
+ # prusa-slicer expects the OCCTWrapper shared library in the same folder as
+ # the executable when loading STEP files. We force the loader to find it in
+ # the usual locations (i.e. LD_LIBRARY_PATH) instead. See the manpage
+ # dlopen(3) for context.
+ if [ -f "src/libslic3r/Format/STEP.cpp" ]; then
+ substituteInPlace src/libslic3r/Format/STEP.cpp \
+ --replace 'libpath /= "OCCTWrapper.so";' 'libpath = "OCCTWrapper.so";'
+ fi
'';
src = fetchFromGitHub {
@@ -147,11 +156,20 @@ stdenv.mkDerivation rec {
postInstall = ''
ln -s "$out/bin/prusa-slicer" "$out/bin/prusa-gcodeviewer"
+ mkdir -p "$out/lib"
+ mv -v $out/bin/*.so $out/lib/
+
mkdir -p "$out/share/pixmaps/"
ln -s "$out/share/PrusaSlicer/icons/PrusaSlicer.png" "$out/share/pixmaps/PrusaSlicer.png"
ln -s "$out/share/PrusaSlicer/icons/PrusaSlicer-gcodeviewer_192px.png" "$out/share/pixmaps/PrusaSlicer-gcodeviewer.png"
'';
+ preFixup = ''
+ gappsWrapperArgs+=(
+ --prefix LD_LIBRARY_PATH : "$out/lib"
+ )
+ '';
+
meta = with lib; {
description = "G-code generator for 3D printer";
homepage = "https://github.com/prusa3d/PrusaSlicer";
diff --git a/pkgs/applications/networking/browsers/chromium/update.py b/pkgs/applications/networking/browsers/chromium/update.py
index 8341f2c6ee22..32e2dd010bec 100755
--- a/pkgs/applications/networking/browsers/chromium/update.py
+++ b/pkgs/applications/networking/browsers/chromium/update.py
@@ -70,7 +70,9 @@ def get_matching_chromedriver(version):
'version': chromedriver_version,
'sha256_linux': nix_prefetch_url(get_chromedriver_url('linux64')),
'sha256_darwin': nix_prefetch_url(get_chromedriver_url('mac64')),
- 'sha256_darwin_aarch64': nix_prefetch_url(get_chromedriver_url('mac64_m1'))
+ # TODO: No such object: chromedriver/106.0.5249.61/chromedriver_mac64_m1.zip:
+ # 'sha256_darwin_aarch64': nix_prefetch_url(get_chromedriver_url('mac64_m1'))
+ 'sha256_darwin_aarch64': "0000000000000000000000000000000000000000000000000000000000000000"
}
diff --git a/pkgs/applications/networking/browsers/chromium/upstream-info.json b/pkgs/applications/networking/browsers/chromium/upstream-info.json
index 0d0c25dc3e52..6fa23f9a10ad 100644
--- a/pkgs/applications/networking/browsers/chromium/upstream-info.json
+++ b/pkgs/applications/networking/browsers/chromium/upstream-info.json
@@ -1,8 +1,8 @@
{
"stable": {
- "version": "106.0.5249.61",
- "sha256": "15qljfg8w124yp65srp1rz3ywrlqhzqzkhimn1h9xz0jkf9cnypj",
- "sha256bin64": "0l0vxlv8gmd655z2889549iafnyd4gyknqfal5iaqdhvig3sdp07",
+ "version": "106.0.5249.91",
+ "sha256": "16jlwzlfqdhhyajsxxrdfcqmh76ds8g1w4xd5mz3bdbd81mljh2p",
+ "sha256bin64": "1cfhsar79f319417cx4blcg5hk7b7ix45r7vhrbbwla18p0jij5y",
"deps": {
"gn": {
"version": "2022-08-11",
@@ -12,29 +12,16 @@
}
},
"chromedriver": {
- "version": "106.0.5249.21",
- "sha256_linux": "0z4m5145s00dycb7f7nscwghzwqym4if6k95w0q6d1hjyih8jh32",
- "sha256_darwin": "1jnwaim2p579p1xlh9y2w11rp5agmp2144ipjs1fg9p97hrdi3yf",
- "sha256_darwin_aarch64": "13wl55n54ld6nrmy1vallrqkzz031kzmw4sjwczra6k7ryd4z09w"
+ "version": "106.0.5249.61",
+ "sha256_linux": "0l2270d5az46pc6icpn3zx7yr8ilkszsrfy3qmwrx3cyc4xnmznj",
+ "sha256_darwin": "07k76i9m3j34h6ybn1wafy39d2ngf06bhp24qzwvv45rks714hqa",
+ "sha256_darwin_aarch64": "0000000000000000000000000000000000000000000000000000000000000000"
}
},
"beta": {
- "version": "106.0.5249.61",
- "sha256": "15qljfg8w124yp65srp1rz3ywrlqhzqzkhimn1h9xz0jkf9cnypj",
- "sha256bin64": "15149hwjlw6gyh4ismgv0b9k4xn3350s70pqij9n79jb53f4nj9s",
- "deps": {
- "gn": {
- "version": "2022-08-11",
- "url": "https://gn.googlesource.com/gn",
- "rev": "0bcd37bd2b83f1a9ee17088037ebdfe6eab6d31a",
- "sha256": "13zks2z65kg7fzzsysq4mswd4bhhy3h7ycdrpxfilcvixx2n2gac"
- }
- }
- },
- "dev": {
- "version": "107.0.5304.10",
- "sha256": "0i7awirsqbzbx3s6ff9b8g584w8s69islmahiwjkprm192k98k70",
- "sha256bin64": "1v524ygk59r68b8hc8qn9vx067613nbcrdrvwkx7vggd9yp9mcya",
+ "version": "107.0.5304.18",
+ "sha256": "0d3px8300zvimrp3k9vqaw1ivcizmlxs635gyb8sfrc4gvng29wm",
+ "sha256bin64": "1p06mmv7azivx8zhh4sgffblq9j3rgjvpjfsz5b6li9mlwqg72rq",
"deps": {
"gn": {
"version": "2022-09-14",
@@ -44,10 +31,23 @@
}
}
},
+ "dev": {
+ "version": "108.0.5327.0",
+ "sha256": "14g164khca0k5q0b5hgy790s5krfs5xxm08gqvs3jg5dn8w4pzvd",
+ "sha256bin64": "08nmikr06qlmfr0jx4jclid1wlb0iqy467c5jn67z033ym7ff1dy",
+ "deps": {
+ "gn": {
+ "version": "2022-09-16",
+ "url": "https://gn.googlesource.com/gn",
+ "rev": "cc28efe62ef0c2fb32455f414a29c4a55bb7fbc4",
+ "sha256": "0vibz1v6p88mr7is2nz6ir9x3zlx4vphciwv2awjrb5nhwabz9dg"
+ }
+ }
+ },
"ungoogled-chromium": {
- "version": "106.0.5249.62",
- "sha256": "1nm6hxr0gk5263v2ypmyc72dj1xb5r3r335vjvhvcqscgpikvnhq",
- "sha256bin64": null,
+ "version": "106.0.5249.91",
+ "sha256": "16jlwzlfqdhhyajsxxrdfcqmh76ds8g1w4xd5mz3bdbd81mljh2p",
+ "sha256bin64": "1cfhsar79f319417cx4blcg5hk7b7ix45r7vhrbbwla18p0jij5y",
"deps": {
"gn": {
"version": "2022-08-11",
@@ -56,8 +56,8 @@
"sha256": "13zks2z65kg7fzzsysq4mswd4bhhy3h7ycdrpxfilcvixx2n2gac"
},
"ungoogled-patches": {
- "rev": "106.0.5249.62-1",
- "sha256": "0lm7brj3sx8rkq2nzz9w0by5mk9qp0ax1wsp68b2wcwcx6nrzjw4"
+ "rev": "106.0.5249.91-1",
+ "sha256": "1cih72ay2gr9xjwwa8iw0wmpmfs4xm4200c4z04v7vi9sxadxnrd"
}
}
}
diff --git a/pkgs/applications/networking/browsers/firefox-bin/release_sources.nix b/pkgs/applications/networking/browsers/firefox-bin/release_sources.nix
index db8b01a52456..5035b19dd2f8 100644
--- a/pkgs/applications/networking/browsers/firefox-bin/release_sources.nix
+++ b/pkgs/applications/networking/browsers/firefox-bin/release_sources.nix
@@ -1,985 +1,985 @@
{
- version = "105.0.1";
+ version = "105.0.2";
sources = [
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-x86_64/ach/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-x86_64/ach/firefox-105.0.2.tar.bz2";
locale = "ach";
arch = "linux-x86_64";
- sha256 = "2a292e4d140ea74bf51fb150fcf07c053d3b670780bbf865597a90195e41c88d";
+ sha256 = "1e052c55c281f7551ed137640f583f061c46d48200ddc59ab0f43514fd6d2fa7";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-x86_64/af/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-x86_64/af/firefox-105.0.2.tar.bz2";
locale = "af";
arch = "linux-x86_64";
- sha256 = "001f428c1923dfdebf73bfcbe7e56b6387c98f2c7b55f2c068c314bb3d0e394c";
+ sha256 = "b6b0b9a0105052c3800a9ba77102833672643a3e940af73b347f1bf26a8a208f";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-x86_64/an/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-x86_64/an/firefox-105.0.2.tar.bz2";
locale = "an";
arch = "linux-x86_64";
- sha256 = "515c8ff97fff98703c1b7a225411ed8cfe256c2b389ce9777a52a711ada7d8de";
+ sha256 = "474e106faa25b5d86b312af6d6a34a76f03b1fab51d55baa7cd121976bc8bdc1";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-x86_64/ar/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-x86_64/ar/firefox-105.0.2.tar.bz2";
locale = "ar";
arch = "linux-x86_64";
- sha256 = "e1c07b1be533debf394c3d5120cc54a1403963dbae6044004db41ea00795f238";
+ sha256 = "64c0cd7b6ea001efe1513de1477821d51d031bc0be13ffbd9a9dea24717c705a";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-x86_64/ast/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-x86_64/ast/firefox-105.0.2.tar.bz2";
locale = "ast";
arch = "linux-x86_64";
- sha256 = "b3c36cb5c6d9365dd9b070ece37896cd83405dfd7d5bd34c4438e50454e1fc14";
+ sha256 = "710b04735233958cbbf3a6b6a66fc293374ee50325828bd0eb6c505d6f04a58e";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-x86_64/az/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-x86_64/az/firefox-105.0.2.tar.bz2";
locale = "az";
arch = "linux-x86_64";
- sha256 = "456b1e3609e8e4629b64795870c20fd231bdb53223b24046a19649e367f37ecc";
+ sha256 = "2bbed7cb48ba59d593a0be4eee6ccd5ab1f6b30b0fad46bd2903143f80cf3678";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-x86_64/be/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-x86_64/be/firefox-105.0.2.tar.bz2";
locale = "be";
arch = "linux-x86_64";
- sha256 = "75d5ac806ff70fce1671636794c9bc0451eb33fc7109a9e195cef8246d80919e";
+ sha256 = "6acdc06f4bd5a747b9c728c78055fd4b2fd5af5c7f77e10ad31a2faec70aa84c";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-x86_64/bg/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-x86_64/bg/firefox-105.0.2.tar.bz2";
locale = "bg";
arch = "linux-x86_64";
- sha256 = "436126b9edf631eea6e68b7068cc752a3e3e6d86e77722cb74fcb1c3dbef7bd5";
+ sha256 = "abecdf214c77c8e60f4abe336ba39a94d0beb92192b9cfe9689946aeb6cc8912";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-x86_64/bn/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-x86_64/bn/firefox-105.0.2.tar.bz2";
locale = "bn";
arch = "linux-x86_64";
- sha256 = "2f08c7ac904ea50df7cff5645ff4bc56e470b6a7215affeeee1497e63edaad06";
+ sha256 = "927d046f7ce267c6af555f14777eb76df5373b1e757a086e24e2c1bda44dd434";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-x86_64/br/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-x86_64/br/firefox-105.0.2.tar.bz2";
locale = "br";
arch = "linux-x86_64";
- sha256 = "aa77c3646cb0753d80bb52f3fd1e71a2d1e13b004d3924481dc175c453154269";
+ sha256 = "76ca8d580b7bf5797ac8cb716f8bf1b25827fde5bde27c7310ed003176509b48";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-x86_64/bs/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-x86_64/bs/firefox-105.0.2.tar.bz2";
locale = "bs";
arch = "linux-x86_64";
- sha256 = "ae2cf70e774eddb67c6c311f3d325b921b7db74a0f8b06146ef2431cf79df804";
+ sha256 = "94d6e053149150cc1cd0876326b9d1e5fa68661a1951ac6496751ba708c43d39";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-x86_64/ca-valencia/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-x86_64/ca-valencia/firefox-105.0.2.tar.bz2";
locale = "ca-valencia";
arch = "linux-x86_64";
- sha256 = "b85b6d597939f559270fda3993298db51717c2b86ce9ab8d50fe777b1101bc1e";
+ sha256 = "ded0f42158b3c681bc107c8a739fe5bacab923f4c29032f143eb26b8b95434bc";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-x86_64/ca/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-x86_64/ca/firefox-105.0.2.tar.bz2";
locale = "ca";
arch = "linux-x86_64";
- sha256 = "01764fb52c22caf81291e25efa606e28796fc3c9489fc95d9312bfb60a6590e7";
+ sha256 = "7f0420adb06f85f53c8573dfeab881ce682ab418b302f52e56b8f72a188fa112";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-x86_64/cak/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-x86_64/cak/firefox-105.0.2.tar.bz2";
locale = "cak";
arch = "linux-x86_64";
- sha256 = "56b87331ad9c5aefd3890fa760a64397d878b93b48bed93a5d743f72273df943";
+ sha256 = "76727daafe56744bf863cb1b04de4be9d8355c6e0326a75634717f8178f2fdc4";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-x86_64/cs/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-x86_64/cs/firefox-105.0.2.tar.bz2";
locale = "cs";
arch = "linux-x86_64";
- sha256 = "f4ab7f935c4d13510c82d0c05627f1173f2e6f0c314b5e4eb27210982d837238";
+ sha256 = "5903241ce6800f84c1441d0f1bdd649da36cfc35e2da1aa6c9e4b4f042d60a86";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-x86_64/cy/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-x86_64/cy/firefox-105.0.2.tar.bz2";
locale = "cy";
arch = "linux-x86_64";
- sha256 = "0d77c652ce5deef61ae2ad0bc78de9a5fd1578d4e6c7cd0152fb7d80df125ea8";
+ sha256 = "5391df990d3d43b1cd1de9071d0993ad7b14670020d39712963d58e97c82d654";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-x86_64/da/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-x86_64/da/firefox-105.0.2.tar.bz2";
locale = "da";
arch = "linux-x86_64";
- sha256 = "e0ed75c3d18380782d229940be3686599a29368a3525d28d5390cc8a4d76322d";
+ sha256 = "e949c10624d9603b7312373a9e34845f06eddd8e3463b0f6638feee46d705f13";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-x86_64/de/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-x86_64/de/firefox-105.0.2.tar.bz2";
locale = "de";
arch = "linux-x86_64";
- sha256 = "ffb8157e40d92992e6119094ceeb30621b111804956dfd0bcb09c75949fd5b7c";
+ sha256 = "ac94bc67e8bb2d7129082c30f71338a3106710b1aeacb5dc745ffaf90e1ae791";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-x86_64/dsb/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-x86_64/dsb/firefox-105.0.2.tar.bz2";
locale = "dsb";
arch = "linux-x86_64";
- sha256 = "32ef53801f3e3cebb410956d13c8280e5ee4ac90f5eefbb367a667a578f5c558";
+ sha256 = "aa66ab3c828a4ad387f9680e885d18101dbc1c573d2343d63fd403781750d058";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-x86_64/el/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-x86_64/el/firefox-105.0.2.tar.bz2";
locale = "el";
arch = "linux-x86_64";
- sha256 = "ece05bdbaf75cde0d42d528f5445ee8d36ad312df58d2aee6f35d70f635ca977";
+ sha256 = "5dcd789da69b75598da201ff9df25296de002bce10300168be751a4e6b5b1bb4";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-x86_64/en-CA/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-x86_64/en-CA/firefox-105.0.2.tar.bz2";
locale = "en-CA";
arch = "linux-x86_64";
- sha256 = "258eea4191b27d4d677769b0e9d24befc8bb186ab820265e6a89706469d4fdc5";
+ sha256 = "aef03d788df523f592c5984b700cff63c47c576411d25207ff4c6bd7071bbedc";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-x86_64/en-GB/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-x86_64/en-GB/firefox-105.0.2.tar.bz2";
locale = "en-GB";
arch = "linux-x86_64";
- sha256 = "72323eeef336612e706e200b0e4bff9e7dd6041a5f968810e274b697469cccf6";
+ sha256 = "99829d58706205a7333287b35c917d7e1fef7419af714dd3103f4cfdd0411089";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-x86_64/en-US/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-x86_64/en-US/firefox-105.0.2.tar.bz2";
locale = "en-US";
arch = "linux-x86_64";
- sha256 = "99d277ca46e0f6f79a8b7f7b77d05a0f4d2aa63b6c582ff6f248984d87fb2c4b";
+ sha256 = "df0f62a80635e7d50386cfab9a8c441d0a5e33268c7d3c3be547bf91ba5d802d";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-x86_64/eo/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-x86_64/eo/firefox-105.0.2.tar.bz2";
locale = "eo";
arch = "linux-x86_64";
- sha256 = "9c0fcbc3febed025550d4f1739a13a5765c09c3d79be15b2f58d935a09a14f78";
+ sha256 = "0cf6bdade0615ec5eaba7e39312af527c69f582bb3b303a5dfe6531b4106dbc0";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-x86_64/es-AR/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-x86_64/es-AR/firefox-105.0.2.tar.bz2";
locale = "es-AR";
arch = "linux-x86_64";
- sha256 = "3cb6116afdeeb4a39e5d40ca31fcd2123266956000ddfcb5886c2a31c2596a8c";
+ sha256 = "d4bd20351038fd27fe43664086ca88a7943485a98c6a7d02eae4679cce99f945";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-x86_64/es-CL/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-x86_64/es-CL/firefox-105.0.2.tar.bz2";
locale = "es-CL";
arch = "linux-x86_64";
- sha256 = "2dee3c9d15841b7fdeb446b06de5638d0938f47374b91aa76da3f0c6ead516d3";
+ sha256 = "98b72b4e894327f59827cf7db8fdea968eb9fc683a9b0becb99da71715115a69";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-x86_64/es-ES/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-x86_64/es-ES/firefox-105.0.2.tar.bz2";
locale = "es-ES";
arch = "linux-x86_64";
- sha256 = "0bec68bf87c51280895aad0f524780e62acbdd9227227634aff8431802f2536a";
+ sha256 = "b9140ed83e2ddbd15864e7db4d5922372403b837d6615b720d1f5b1b2f2441a7";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-x86_64/es-MX/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-x86_64/es-MX/firefox-105.0.2.tar.bz2";
locale = "es-MX";
arch = "linux-x86_64";
- sha256 = "dbbd6228aa426432bfd8772c3ef3ac54fd1f9c548d8b0472033f56b3f94864f3";
+ sha256 = "9c0fbef2316454027c634fe039c9ee819bcdebecee5b7e8d6d2b4f3f5a407d30";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-x86_64/et/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-x86_64/et/firefox-105.0.2.tar.bz2";
locale = "et";
arch = "linux-x86_64";
- sha256 = "bf88a2d9bd8e1650342a06807c261c4d46d7f58380151bb4beb17416315dc7a0";
+ sha256 = "29b80b42e45d39c17a24659c92e6f857979d21f53c6c422448ffee722d23cfb6";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-x86_64/eu/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-x86_64/eu/firefox-105.0.2.tar.bz2";
locale = "eu";
arch = "linux-x86_64";
- sha256 = "9635765d8b7ea51881a012298882e7f644ffcbe6b0d6b227db15cda6d568b92f";
+ sha256 = "980a148e8a1bce492e7a4f5a1690979309414edbddb9c49c72ee5bc381542888";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-x86_64/fa/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-x86_64/fa/firefox-105.0.2.tar.bz2";
locale = "fa";
arch = "linux-x86_64";
- sha256 = "d97dd45457d806e5d9adcfb05ec5000469ccdc7d97fcb866f7d27bd693000985";
+ sha256 = "e82f525cf3b533d41b9e8201f4ea72263d4ce18f06991b988ae30d9ae711e2a4";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-x86_64/ff/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-x86_64/ff/firefox-105.0.2.tar.bz2";
locale = "ff";
arch = "linux-x86_64";
- sha256 = "d812c9d77ed85b6876ac13f9930799b90b74dfd8d1a7c48593aece3529913243";
+ sha256 = "ddb9493b50638a872c2d7b65901ef189a967fe6d87ee498e7be4d928253cae87";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-x86_64/fi/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-x86_64/fi/firefox-105.0.2.tar.bz2";
locale = "fi";
arch = "linux-x86_64";
- sha256 = "e6a50f893698ebb52406d837fe8de3aea1588477c65af7b5580c04d69d1cd5ac";
+ sha256 = "e4376c7271bef45aac8f0a437a6ce385ff86b7ff74694dad506601ad4770f1ea";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-x86_64/fr/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-x86_64/fr/firefox-105.0.2.tar.bz2";
locale = "fr";
arch = "linux-x86_64";
- sha256 = "4567e8b6092b6a027ba50249244ac3b3c2ff5d3d2b00e9abeb0836cfbce2bd6e";
+ sha256 = "edb6e43cdf001d94577dfb3b4c19e9068f6fedb39ea49ccb32f3e4e4b6c611a0";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-x86_64/fy-NL/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-x86_64/fy-NL/firefox-105.0.2.tar.bz2";
locale = "fy-NL";
arch = "linux-x86_64";
- sha256 = "375ddfcb709e820a568f3a3aa5dfe62b6699636506aea3045ba0f499d8163937";
+ sha256 = "be4499d7c67ebad7517afd93b2ae5ed8d7d5925f15de92d0383a2950e16e8e2d";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-x86_64/ga-IE/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-x86_64/ga-IE/firefox-105.0.2.tar.bz2";
locale = "ga-IE";
arch = "linux-x86_64";
- sha256 = "0fc745fdaad6978e093b7b736b9676dc830c6e60a924e2a095278b6a14f76ae9";
+ sha256 = "79111a2d32318205162d0061fdb519d96fa8769b2b36cc55066e96a546053cf7";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-x86_64/gd/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-x86_64/gd/firefox-105.0.2.tar.bz2";
locale = "gd";
arch = "linux-x86_64";
- sha256 = "9a8aad8ca0baf54ef2eb0c77175c394c6f4aa676c51781fb78c6e5b00e407758";
+ sha256 = "b4e7a268bf2c4a51c4c259a5bd15ab3b9f87d2f88c9db9c5655d1f2c921f9d5e";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-x86_64/gl/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-x86_64/gl/firefox-105.0.2.tar.bz2";
locale = "gl";
arch = "linux-x86_64";
- sha256 = "8979485ed7c0a1bfa950749aa3d291bc25c7f5aaac6563996a5b991e05989cd1";
+ sha256 = "390c6011cb3d72781bf6e1eaa7686eb77552a7c1250cd8e59ad9cc6eb9bcf62d";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-x86_64/gn/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-x86_64/gn/firefox-105.0.2.tar.bz2";
locale = "gn";
arch = "linux-x86_64";
- sha256 = "1dce9550f3d2942a8688fc9263ffad3abbbd11545d9c29255924fe88e1cbf020";
+ sha256 = "56b127cbcf1d6030fe8c2a78e48a5cd6f2a5221625d10486a35a223f525cd8d9";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-x86_64/gu-IN/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-x86_64/gu-IN/firefox-105.0.2.tar.bz2";
locale = "gu-IN";
arch = "linux-x86_64";
- sha256 = "3429fe9b7be0daf7ae039e00b7d16ca16b2dcdd77434575091c2deaa33dabbff";
+ sha256 = "ee9bb7e33d8a405603eb9e563a8b76a4608da6b23eef8e6ceb33a21dd225ebb1";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-x86_64/he/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-x86_64/he/firefox-105.0.2.tar.bz2";
locale = "he";
arch = "linux-x86_64";
- sha256 = "c5b93b8b0aa69ef0a9c29dbc81bcc532652d08a2891874c12d7048a475240b2f";
+ sha256 = "550aea70a90034ecd915fa17b0b5b5851d66c4276eb4a5b189992c99f51a1981";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-x86_64/hi-IN/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-x86_64/hi-IN/firefox-105.0.2.tar.bz2";
locale = "hi-IN";
arch = "linux-x86_64";
- sha256 = "54d3ac7e94abab83b03b88de143523e56a6e0c85314c61b3c821b8145e49593d";
+ sha256 = "01d0c122d4db6fbcae21673ea775f0495302868fb799b83ffd2dd46d0e4c275a";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-x86_64/hr/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-x86_64/hr/firefox-105.0.2.tar.bz2";
locale = "hr";
arch = "linux-x86_64";
- sha256 = "1bb9a4b332aa13786fa21dd23ba51b5faa69669fc41ba996b84979ec1d0cd638";
+ sha256 = "e3390e5de5baf5e61217e7e361592f63929741746dc417baef82916dac8a676c";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-x86_64/hsb/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-x86_64/hsb/firefox-105.0.2.tar.bz2";
locale = "hsb";
arch = "linux-x86_64";
- sha256 = "d3edfbf7b52beee12fe098e20d4a76dc092f1bdb5717779f19a3ed58ace4c6ee";
+ sha256 = "f3464b9bb0f79f0926548e6cc61b24af50b8e3596645b84543960829f6bbf869";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-x86_64/hu/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-x86_64/hu/firefox-105.0.2.tar.bz2";
locale = "hu";
arch = "linux-x86_64";
- sha256 = "47823efccb14195f7deafbe49021d2e9224852f5d87771ce680e05ed33927209";
+ sha256 = "1fadc0c2034a0a137fe92e74d8782584f087dadac7cb7334740a3d6439c5ce00";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-x86_64/hy-AM/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-x86_64/hy-AM/firefox-105.0.2.tar.bz2";
locale = "hy-AM";
arch = "linux-x86_64";
- sha256 = "130856c658b356bfa8de750fd4e36f940a3367e4db368acdab0e071954abb1d5";
+ sha256 = "d2eb268181b8b39f03310ee7c0a2f87442215c7321d773b22bf7cd7c3760829e";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-x86_64/ia/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-x86_64/ia/firefox-105.0.2.tar.bz2";
locale = "ia";
arch = "linux-x86_64";
- sha256 = "f6f99a21f73c43049f0935eda76b866e47b6d6e1ab0cb82464550ce13b06f4fc";
+ sha256 = "bed36c39091bd8768235310e2ff457ea6fa6fd09416dcc8f6463d2ddd47acb4e";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-x86_64/id/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-x86_64/id/firefox-105.0.2.tar.bz2";
locale = "id";
arch = "linux-x86_64";
- sha256 = "11155d40d29b241e4d10d3d71d11a81353498f40a33d2ec3e8a16ecba1ebb9b0";
+ sha256 = "d6c2f6b835a3e501637352172b7f03ebab85e8d71802180114aeffebffde13f2";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-x86_64/is/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-x86_64/is/firefox-105.0.2.tar.bz2";
locale = "is";
arch = "linux-x86_64";
- sha256 = "ef750f5c5fcca99fddfc6a28c5531211873770efdff403b0c4f6ba4ea6492375";
+ sha256 = "9f0e1ea278f8ad82acd6a85d7567569b345081dc67d51f4eccf83deb38e71cf9";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-x86_64/it/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-x86_64/it/firefox-105.0.2.tar.bz2";
locale = "it";
arch = "linux-x86_64";
- sha256 = "f77fabfe81caf68142429d8840f9c3a0c3532e7bc02d4425e3394801840ce607";
+ sha256 = "d1803743827b1ba3550479a9c111383e0607ea20e02fbe4fe9a49f4c7fd08423";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-x86_64/ja/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-x86_64/ja/firefox-105.0.2.tar.bz2";
locale = "ja";
arch = "linux-x86_64";
- sha256 = "618404d115720cfcb75cb462179f648772c98cd78912ecd2a2062f7f977c606e";
+ sha256 = "f17af1cf9cf225500f671cc8e78ea9c9b09e7e2479f4299c7c444fd6203eabc4";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-x86_64/ka/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-x86_64/ka/firefox-105.0.2.tar.bz2";
locale = "ka";
arch = "linux-x86_64";
- sha256 = "99b41e63b573b62fde39daee0af1f7c0ec6b93b30cec594691634e27f70cbe49";
+ sha256 = "a1ff63de6e9f85c6f4eedc15285e9df5b097413d4791cfecd5da1b778a8a9d05";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-x86_64/kab/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-x86_64/kab/firefox-105.0.2.tar.bz2";
locale = "kab";
arch = "linux-x86_64";
- sha256 = "447df815475f83c3b9215758948292d9eb093cf417897f4904ff4253ac3cb818";
+ sha256 = "3b2f9d45c0c55bca0c73e881b6b5c3928246ca5c0e1111594b9d627cb1949a21";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-x86_64/kk/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-x86_64/kk/firefox-105.0.2.tar.bz2";
locale = "kk";
arch = "linux-x86_64";
- sha256 = "376a29caff8ab9382321487665b545ca97b9177551e368158176c9d50f5cf5e8";
+ sha256 = "4918a10694afba466cc552011f580e6d39463fe14d830c22776be2f0859bc0af";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-x86_64/km/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-x86_64/km/firefox-105.0.2.tar.bz2";
locale = "km";
arch = "linux-x86_64";
- sha256 = "86b08e8922c907bd0358d91ab19a5b5ef84ac505c33b9126eb4c4ce034107aba";
+ sha256 = "5e6430c5f08a68ba8ae8b17f0b7d0c892c34e09b04f87716bb1c97c751feaf63";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-x86_64/kn/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-x86_64/kn/firefox-105.0.2.tar.bz2";
locale = "kn";
arch = "linux-x86_64";
- sha256 = "d90f60352bf07cf3366f1a421c9dc7ae4c16b1ab7db3edc252eb884ee3f7035b";
+ sha256 = "0452b62d25f0a9fc15385c3b92bf87713452d794277c7017e2dbf43a51d10e5c";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-x86_64/ko/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-x86_64/ko/firefox-105.0.2.tar.bz2";
locale = "ko";
arch = "linux-x86_64";
- sha256 = "7e5144713519d0b29451047a0946215117791641142247c1f90d6e4c294ebef4";
+ sha256 = "450c9e78a89e941eab4bd6dc3ba33dd07a6df1e5fe9c9aef842a5ad0c2371801";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-x86_64/lij/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-x86_64/lij/firefox-105.0.2.tar.bz2";
locale = "lij";
arch = "linux-x86_64";
- sha256 = "75165203c5ba0c382818214dddfeb2ab94a6948f4c5c7d142d31c36ca9422e2d";
+ sha256 = "fd9b58baf0b98f17b76f6ebe66d6860776eb75391a56da4f680a4e2315ef70d1";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-x86_64/lt/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-x86_64/lt/firefox-105.0.2.tar.bz2";
locale = "lt";
arch = "linux-x86_64";
- sha256 = "6cb8920f924f8be2fdf6b8cef9113e4b539205beb24d5f5110712eef818ca279";
+ sha256 = "ea5681116f518fb9bfb7e87cde5bc51fe2554a9ff527e18c8a89c971fa33b1b2";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-x86_64/lv/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-x86_64/lv/firefox-105.0.2.tar.bz2";
locale = "lv";
arch = "linux-x86_64";
- sha256 = "1e4e7622a97910462ba924109e8e0e6d35efcfbdc849ac3621d61ccd119a60e5";
+ sha256 = "59e8f10e2eacaf00cc5a782c3e97a13d0abb5c5c1e235b423fb9ed9d6a9dc165";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-x86_64/mk/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-x86_64/mk/firefox-105.0.2.tar.bz2";
locale = "mk";
arch = "linux-x86_64";
- sha256 = "88ab94691358f26a294da16f2fd51755bd873dcfa07c6ab3e5dbfefe4684315c";
+ sha256 = "87564167999de35659a7cae363eea9638ea5d1a9112758ddf7848f2c1787663d";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-x86_64/mr/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-x86_64/mr/firefox-105.0.2.tar.bz2";
locale = "mr";
arch = "linux-x86_64";
- sha256 = "034d14b22d0258499863487b4cb693be23fab6d710f920640ede7430a75b0c11";
+ sha256 = "036e57078a553b40858bec49383b2f5602043e0e2e197c5540abb381cad8f00f";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-x86_64/ms/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-x86_64/ms/firefox-105.0.2.tar.bz2";
locale = "ms";
arch = "linux-x86_64";
- sha256 = "0b0162fcf05a7317f8f977b93b532f312460de0dab631376ee1b8f618c776ec1";
+ sha256 = "18b506bf93caae69f1d9bcbf3c0ac4eac02bb466e8397dc47d093451c027ad2b";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-x86_64/my/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-x86_64/my/firefox-105.0.2.tar.bz2";
locale = "my";
arch = "linux-x86_64";
- sha256 = "d01e4b321b2193675ab28c689164ce13f83ab9d6b808419a82536d294a230d53";
+ sha256 = "c32564f42451d6b88deecceb1d32f41f5d3cc0bc5d8e9c37a24939dce45b7f8f";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-x86_64/nb-NO/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-x86_64/nb-NO/firefox-105.0.2.tar.bz2";
locale = "nb-NO";
arch = "linux-x86_64";
- sha256 = "bdb9e0a86302a4af47c84342aec2c9987b2052e876f9b81a1df20165593ae30b";
+ sha256 = "2d0baeb7e550949b814cb2341c0144f2464cdcacf6ca2806bab06af0acabbf4d";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-x86_64/ne-NP/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-x86_64/ne-NP/firefox-105.0.2.tar.bz2";
locale = "ne-NP";
arch = "linux-x86_64";
- sha256 = "5c79c03bcfb2f81fe3ad3bb530fb7181c86e8615a096fe30b4bd207a6da3e395";
+ sha256 = "a856875ad250b03120722cd1655ac7ae36633483a96cb94ae0e3835964d99b9d";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-x86_64/nl/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-x86_64/nl/firefox-105.0.2.tar.bz2";
locale = "nl";
arch = "linux-x86_64";
- sha256 = "63733782d97d22d00abd3f8ddf82da5ff5d9313e2c5c56d7f767d153fb9ff3ec";
+ sha256 = "de661c7aea1cd9a1fda1b0e659f08e7ce4590d7c0526e728857b6b177ca6f1b9";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-x86_64/nn-NO/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-x86_64/nn-NO/firefox-105.0.2.tar.bz2";
locale = "nn-NO";
arch = "linux-x86_64";
- sha256 = "6e7c22e2b4bb9edfeb9936dad41c686bc27b3dec0dbcbf779388fb0bafd33e7f";
+ sha256 = "c65b76be4134bc754f8aea658fa0aedad6140ef39e37b85c43aa367d7274cb83";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-x86_64/oc/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-x86_64/oc/firefox-105.0.2.tar.bz2";
locale = "oc";
arch = "linux-x86_64";
- sha256 = "071afc449c6e9a2a2168c5ffb520a23970f95c8c1b9218ecbc36260d60d9690f";
+ sha256 = "3094d4abffc5a4be654e966a8592f9fc027fcd43770a6daafd6a4b17ddab9233";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-x86_64/pa-IN/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-x86_64/pa-IN/firefox-105.0.2.tar.bz2";
locale = "pa-IN";
arch = "linux-x86_64";
- sha256 = "accfda66ed9b56182a95459ee2e0dacfea2991d47899826eeb1df89c390ef837";
+ sha256 = "4a5979f128f1a21bd20c9a9602bbc2a3c423828832f53fb910b8210f2d93e86b";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-x86_64/pl/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-x86_64/pl/firefox-105.0.2.tar.bz2";
locale = "pl";
arch = "linux-x86_64";
- sha256 = "de2fc27c76605ed73b4685debcf0b6673bb0654282437b88df60a4594ff069bf";
+ sha256 = "ecead092acccceb1821be0c7ec58821a33b617e887713dc5e8f269a5712c15ac";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-x86_64/pt-BR/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-x86_64/pt-BR/firefox-105.0.2.tar.bz2";
locale = "pt-BR";
arch = "linux-x86_64";
- sha256 = "cba9679f14dfef7fd092b38d2477a4f48ce23947798227ecdb7fc8d2750e014d";
+ sha256 = "36473d85093161aa6c938bae3ee8053b4410d382c3b0f387efe1d2f17ebb532b";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-x86_64/pt-PT/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-x86_64/pt-PT/firefox-105.0.2.tar.bz2";
locale = "pt-PT";
arch = "linux-x86_64";
- sha256 = "b04db51038bcdfe8dd6cc7d237f12a933d671c4f591742f4825f03e6f5675222";
+ sha256 = "76556c74354b383c3a8bf5abc2a5499f0955448af7cf269b496d4f270de6d47c";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-x86_64/rm/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-x86_64/rm/firefox-105.0.2.tar.bz2";
locale = "rm";
arch = "linux-x86_64";
- sha256 = "967b15befae35083f0b1ded69fec4deb8250211a9b099df76a8e689df2ccb0b0";
+ sha256 = "f50971fab9383bf667d1cb3ac848945308b509413ab81b70076f9deee81ff86b";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-x86_64/ro/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-x86_64/ro/firefox-105.0.2.tar.bz2";
locale = "ro";
arch = "linux-x86_64";
- sha256 = "7aa8c11f8e0c2e54b7c25e3d71fbe3fa8f4e36714e42a3cc0cec8167cdfa3691";
+ sha256 = "b7a984227328b46d881e64afcd3580eec6fd9ab0a798146cd5bfbd9bb3231400";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-x86_64/ru/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-x86_64/ru/firefox-105.0.2.tar.bz2";
locale = "ru";
arch = "linux-x86_64";
- sha256 = "b934733462b2dad1ff962709b6597e7827cc2880041f20b9015f8f270ca8df42";
+ sha256 = "f02f5c725eff38907763cb80d716a9cb1d6b8086ee575829d5804bd286fa1a25";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-x86_64/sco/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-x86_64/sco/firefox-105.0.2.tar.bz2";
locale = "sco";
arch = "linux-x86_64";
- sha256 = "49a09268d03a2d92649dcddf34b3d0ceb94899529da1c15249883e3ef8c30ffc";
+ sha256 = "d4b9da61f6c8eb487becf0d96da2047aad1f052aaac1c72e994975c0155d4cf7";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-x86_64/si/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-x86_64/si/firefox-105.0.2.tar.bz2";
locale = "si";
arch = "linux-x86_64";
- sha256 = "fbfe9ed75eb62b5c3404c99228ddd9341fb9a0ca873d03592061952b0a6d3864";
+ sha256 = "8bcd20ce0c50cdeeb4bd7bac89dd21ab61a5432ab669e28f7488f801300f1894";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-x86_64/sk/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-x86_64/sk/firefox-105.0.2.tar.bz2";
locale = "sk";
arch = "linux-x86_64";
- sha256 = "372d7fb0cffa5f89e2a9e44651f7a07dbb29911a9d5806809bf5db7a21005b51";
+ sha256 = "cf3484d500e444a86beb8f1dc8f40bb17fdff482b6e1431bf4ec27d7315c91d0";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-x86_64/sl/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-x86_64/sl/firefox-105.0.2.tar.bz2";
locale = "sl";
arch = "linux-x86_64";
- sha256 = "f6859b6e603261a3db82b368400d46a76bb10b9c0b3ce5eb39d493e41b534e6d";
+ sha256 = "790acd15b74be3609691278111df4d93a2d7db7852e23b996a7ea659c97914e5";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-x86_64/son/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-x86_64/son/firefox-105.0.2.tar.bz2";
locale = "son";
arch = "linux-x86_64";
- sha256 = "0891be0acc6412889574416f09642ffd344579185a602384ae0bf1d82b43cd43";
+ sha256 = "cd50e0a33e963f355380774a48745d7924dba1b3d428af63773d05d7eaa15ff6";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-x86_64/sq/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-x86_64/sq/firefox-105.0.2.tar.bz2";
locale = "sq";
arch = "linux-x86_64";
- sha256 = "4f13416dc34f59a84043ab3dd018a4ce6d0f20a90458f637d836e4048dc9852a";
+ sha256 = "7e214ee2ccb1f2d6ac384dbc1411febddde56370649a5e0119f16342eb8dd0ae";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-x86_64/sr/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-x86_64/sr/firefox-105.0.2.tar.bz2";
locale = "sr";
arch = "linux-x86_64";
- sha256 = "47b49b18d3cf2f9cd1fe81b3e13386fcf188aff88eaea478e161f674e19d017e";
+ sha256 = "52de2b91f7f53cd7bb0d91e87d60a8f8633d0e2034378b2eb889c828dad3ad38";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-x86_64/sv-SE/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-x86_64/sv-SE/firefox-105.0.2.tar.bz2";
locale = "sv-SE";
arch = "linux-x86_64";
- sha256 = "af5052b8c4167b0f95dd0cd8b0265b67c4a3aba52c7b762424d6ee6462e783a1";
+ sha256 = "65ea1c96928ca309823af9aab1874a1c411516e1188d50246374dcedcabd1218";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-x86_64/szl/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-x86_64/szl/firefox-105.0.2.tar.bz2";
locale = "szl";
arch = "linux-x86_64";
- sha256 = "51dba44f903035373235f8b1a997387832e0a67fa74e1fe6d14ea44b9a363744";
+ sha256 = "d4c00428ed798e124f471fd229f7ba435bbe07ea1a9015444454f0b73065370f";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-x86_64/ta/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-x86_64/ta/firefox-105.0.2.tar.bz2";
locale = "ta";
arch = "linux-x86_64";
- sha256 = "0f6e7b5409bd90a7120577480188257d590996a75a6bf11dcffc1cef7c0df749";
+ sha256 = "a933c02a9705701088da8f4447ac59ca95e3099ebeb68263d86dfc580640ae42";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-x86_64/te/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-x86_64/te/firefox-105.0.2.tar.bz2";
locale = "te";
arch = "linux-x86_64";
- sha256 = "831e373a64e2bcc0f9b60f18ac8e3f5a747e1042579bfd03f5d76d3f04f890c2";
+ sha256 = "37d02f1d4a2e2be6fa94f27f6102526398bb757b10313d9fd6a1b0b5fcbee92a";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-x86_64/th/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-x86_64/th/firefox-105.0.2.tar.bz2";
locale = "th";
arch = "linux-x86_64";
- sha256 = "3e343b11ab2a93557c86daf5cf1a789154fb53fb7090e33225dd04ee30e9acd5";
+ sha256 = "e96ab708a1da8522ded75fa7380edf21972d0d10b4c336f2023c4fb66483bb0d";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-x86_64/tl/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-x86_64/tl/firefox-105.0.2.tar.bz2";
locale = "tl";
arch = "linux-x86_64";
- sha256 = "4005e0e9a6078bca9c134862335d0d677af0cbd834a8e04e4720f8c2b59a4dc1";
+ sha256 = "205bf099fb067cd05c12e9b23c102acd424e0e4b586e5c59b104d7d83757be7c";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-x86_64/tr/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-x86_64/tr/firefox-105.0.2.tar.bz2";
locale = "tr";
arch = "linux-x86_64";
- sha256 = "2ef97fceb2fe522ac83dd7b4db509e248eac83e6a5f7fab20064d3ceb4612d6e";
+ sha256 = "aca83f7df1c043ab0721acb545491b08df463004000837c8b485f53af42ab660";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-x86_64/trs/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-x86_64/trs/firefox-105.0.2.tar.bz2";
locale = "trs";
arch = "linux-x86_64";
- sha256 = "131ce0fabb180156f04854fd3a78cacd7a07b8c45b78d219261cf76ad51a2f42";
+ sha256 = "dbc09dc0effc11c40269c693a338a790bd56d94f7c31112aadb93a539b231584";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-x86_64/uk/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-x86_64/uk/firefox-105.0.2.tar.bz2";
locale = "uk";
arch = "linux-x86_64";
- sha256 = "a35637a2633969dea796cd374aa0cd684661ced36ce8cf118514072b08e4a325";
+ sha256 = "177e3542c68b048749b56a921cfdf3aeb0f0ea08e08aa0d3df09874e4497d376";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-x86_64/ur/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-x86_64/ur/firefox-105.0.2.tar.bz2";
locale = "ur";
arch = "linux-x86_64";
- sha256 = "24cb5ca13af2b770b0ce64cc2244b86a57aa70df6ce3d6234bd03527f72beb93";
+ sha256 = "031447fefdc1a3b84d53e078f90004f2dc1bddf9c462ac884b5b9b3c8c9f4284";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-x86_64/uz/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-x86_64/uz/firefox-105.0.2.tar.bz2";
locale = "uz";
arch = "linux-x86_64";
- sha256 = "73008ac9452f1dbfdafcfd233a4dbd3fc2212030bbea5f1bc1e3efe8c291a4a3";
+ sha256 = "c079455f8e0914ba8001916a08ec46f114eef8b7fe1aa49a719e7debe1d5ccac";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-x86_64/vi/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-x86_64/vi/firefox-105.0.2.tar.bz2";
locale = "vi";
arch = "linux-x86_64";
- sha256 = "990bd18ca8bd08d65df488e728d434edccce43a93cc1253baa3bd8d67e9ede40";
+ sha256 = "e787b5b98504fcdcd6ca6bcb3cfeca1ae4e533f9b6cf9662af5a3898ef0f1ddc";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-x86_64/xh/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-x86_64/xh/firefox-105.0.2.tar.bz2";
locale = "xh";
arch = "linux-x86_64";
- sha256 = "9efe95e531a2b42d4464d75bc2d54b1bed4830e548619aa23fe957bd372c663d";
+ sha256 = "b2b7b37f9768b18f86b142f0a704312ea9f9d50be8e38c1a0fbcf343ed8f2338";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-x86_64/zh-CN/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-x86_64/zh-CN/firefox-105.0.2.tar.bz2";
locale = "zh-CN";
arch = "linux-x86_64";
- sha256 = "03c12d452a4bc63f299f02868d79be87ee0b04ca76cad724964e11bf20bfed90";
+ sha256 = "c6066ec425f61dd0ec9812300341d7a927c619200b446c3cb9908ba74fcbc148";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-x86_64/zh-TW/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-x86_64/zh-TW/firefox-105.0.2.tar.bz2";
locale = "zh-TW";
arch = "linux-x86_64";
- sha256 = "32c5e7ef19452f315d25c853c9bd24c34e67bda934221e2fe5f958fa789fc0e4";
+ sha256 = "de9a3c6ee0edd6d633ed201797c5d6eafaaa69c1e8a0af120459734bb3b622e7";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-i686/ach/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-i686/ach/firefox-105.0.2.tar.bz2";
locale = "ach";
arch = "linux-i686";
- sha256 = "c17485b51c8829882e8fb50bd4a0ccd6419ef2b4dc15fa7a15551ff45def53b1";
+ sha256 = "c0369b785c79549f959050160138aa611e249b70a6823ebe93ac11858b1095a2";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-i686/af/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-i686/af/firefox-105.0.2.tar.bz2";
locale = "af";
arch = "linux-i686";
- sha256 = "d12603bb7925dad96760de5731c895d287af7b05b1762eaeabab69d5bad61837";
+ sha256 = "fe485cc76a85c3f98b8359e60a283fd87755955430ad7250651982df9da48988";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-i686/an/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-i686/an/firefox-105.0.2.tar.bz2";
locale = "an";
arch = "linux-i686";
- sha256 = "1140e17d0775c8e6ba1fa485aec35b9b7ac8434179a3faebfcd1e1cead070d03";
+ sha256 = "28df6d8be397363783439348711151f897411478ed9097d99d6891be1cd1395c";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-i686/ar/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-i686/ar/firefox-105.0.2.tar.bz2";
locale = "ar";
arch = "linux-i686";
- sha256 = "89d1cc5e45444f7aeb35e5fb094a6be4efb80d523cd0209188c61f10012102a5";
+ sha256 = "be0dc8c2e212e807576bac438c4d50288ef51f0fdb201a67c222248a466c456c";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-i686/ast/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-i686/ast/firefox-105.0.2.tar.bz2";
locale = "ast";
arch = "linux-i686";
- sha256 = "6bca591e2edf525e20d125e0f3ace831ddd217135537d958c070d2e00b852c26";
+ sha256 = "59522e2cfe412f28973c73c9d74360b7da4b20001b78c699cacfec9b5e878ce8";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-i686/az/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-i686/az/firefox-105.0.2.tar.bz2";
locale = "az";
arch = "linux-i686";
- sha256 = "f9eec0db663469d85e4f665969143a37860bc1043a3c5d83cf330dcafb1682c0";
+ sha256 = "e47dba8ac2927ca8108d29c6447e60688d01ef1fc510ea54d024471ae5101178";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-i686/be/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-i686/be/firefox-105.0.2.tar.bz2";
locale = "be";
arch = "linux-i686";
- sha256 = "5f792f86c5fbb601ccb769818ee3755c01fa443e87ed8a1d7df7388bbfb1fa56";
+ sha256 = "80689bc90acdee38b9b1c7ef7421f5f2e1b1f1adaaf8c8fe06f592d75f94e1e9";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-i686/bg/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-i686/bg/firefox-105.0.2.tar.bz2";
locale = "bg";
arch = "linux-i686";
- sha256 = "32305448e9d4740eb64e41f073e498da9013b90559eecfc619d1476d455c2c44";
+ sha256 = "9f06a00039a655124feb6be97ed8cf06c1904c1d5967b01a10cf997a974edb15";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-i686/bn/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-i686/bn/firefox-105.0.2.tar.bz2";
locale = "bn";
arch = "linux-i686";
- sha256 = "f3244f87fac769e054774e1ee6a5e72873fdfc08189f9e7d1fccba63cc75fa2e";
+ sha256 = "a1bd5f504235990d39f1dee61f598b835ff01507a226ae8a4884f64d432092a6";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-i686/br/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-i686/br/firefox-105.0.2.tar.bz2";
locale = "br";
arch = "linux-i686";
- sha256 = "2cd2a1b5b46b52470e14105960593da5da9ece3ef7cba2aa0157691968820016";
+ sha256 = "8b420daa9399425173bb08fd282b98015a15d663d5f3647a26baa4b9f035e49b";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-i686/bs/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-i686/bs/firefox-105.0.2.tar.bz2";
locale = "bs";
arch = "linux-i686";
- sha256 = "661d4dc2bc6e093e2c8221f626d7fce7a66bd1a427a3af6582959e0073db8dfe";
+ sha256 = "f2f966ec070f50b30fba132bc7f15e7acc789ccadb61dc6df0b37dc538334c07";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-i686/ca-valencia/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-i686/ca-valencia/firefox-105.0.2.tar.bz2";
locale = "ca-valencia";
arch = "linux-i686";
- sha256 = "09c9bc54fc0c5b3527d5e2325d6b9b34f6dfaffe1e795efebd4d353a512c4f84";
+ sha256 = "37aa41a44365846895a4b4bf75cb7d5231dfd9e6a8959602eba331b0efb39f2d";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-i686/ca/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-i686/ca/firefox-105.0.2.tar.bz2";
locale = "ca";
arch = "linux-i686";
- sha256 = "930d3dfa38d78297eff4b49359016f9c3db05d05046333b39a63d22b87f38383";
+ sha256 = "67d5afce7d9d67291397a719c885d8a4bdbbfb54e73fa9766dae0f5993a17051";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-i686/cak/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-i686/cak/firefox-105.0.2.tar.bz2";
locale = "cak";
arch = "linux-i686";
- sha256 = "c8b9108011123ffa9f67a10de3b70384b9f3d4a886e46f4779be8220acc33a68";
+ sha256 = "30382b6dea614c7d130fc143341462879395a8390b725a95d49c65ebe20f6172";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-i686/cs/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-i686/cs/firefox-105.0.2.tar.bz2";
locale = "cs";
arch = "linux-i686";
- sha256 = "5f1ff971482d5626a5e4f1e77140cffa508f033049eab5b5036590e6ae8a4f81";
+ sha256 = "a82e613fca50b86d9654212f296be240656c0fd4b68e3209bd88a3bc6e0ba7d9";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-i686/cy/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-i686/cy/firefox-105.0.2.tar.bz2";
locale = "cy";
arch = "linux-i686";
- sha256 = "af3352a2fcddda67ba32130f61209fca0b40ff04e1b68dc285dfc55be913c704";
+ sha256 = "36ae3294828733dd5b34dc505a5efdb7cc45318879d64767d5816062fe20c903";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-i686/da/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-i686/da/firefox-105.0.2.tar.bz2";
locale = "da";
arch = "linux-i686";
- sha256 = "498ff4a5713bc063d20b3cf8218e33c33599a7ea663f06d8404a6380cffefbae";
+ sha256 = "8ea38167c4cba77a746d5d59fd3ff299c4de15dfe2309366ee3b7bd73e709c0e";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-i686/de/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-i686/de/firefox-105.0.2.tar.bz2";
locale = "de";
arch = "linux-i686";
- sha256 = "e870df16f1af88255ff245a1becdf801fc79da9e0b862677aace5033aafbf250";
+ sha256 = "9ea4b3887a557380dd1ab31c9f77baebecc273d1f11e0c65dccb79c75060a055";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-i686/dsb/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-i686/dsb/firefox-105.0.2.tar.bz2";
locale = "dsb";
arch = "linux-i686";
- sha256 = "31a1d0c69e7be52417d5ba9d65cb1289a93b950966646b4bc53bd1676db0af49";
+ sha256 = "ab8ecc9a97728e8199bf505972b94cc19eb3c4fb2bcdbb3c4a3142da825d1f4e";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-i686/el/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-i686/el/firefox-105.0.2.tar.bz2";
locale = "el";
arch = "linux-i686";
- sha256 = "7e75ccf8b0259e99e450efd6e05fe03ffe4be200b2d67ed1c095f5bf2db01bc7";
+ sha256 = "53f320b2c293f02b87c64863b5c335269741ef19b195902979cf6ec81fcf1dfe";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-i686/en-CA/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-i686/en-CA/firefox-105.0.2.tar.bz2";
locale = "en-CA";
arch = "linux-i686";
- sha256 = "0536023b7b2b9d9bcae78edb72851043b0be972d06fb6fd3767e2b877f24fb91";
+ sha256 = "b31eb73193e9501d79475f8b9b7403b1fc70744321f02af828b724ce10254f64";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-i686/en-GB/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-i686/en-GB/firefox-105.0.2.tar.bz2";
locale = "en-GB";
arch = "linux-i686";
- sha256 = "85164c418b3e48b5c0f0d6203900c0ce8cc17a04eafeb862a24b0dc3a5bc587a";
+ sha256 = "a13ca3f7009af66630ae382ee93951ebb89a2e31ca26c5687e4a6367b2114441";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-i686/en-US/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-i686/en-US/firefox-105.0.2.tar.bz2";
locale = "en-US";
arch = "linux-i686";
- sha256 = "69d823ec54825b1965280c454dbc7a63757080a4e5de72c6e567e72531ed895b";
+ sha256 = "d5858cf3571537ef5310fc6b9772c5fef818703bd70020611f122ca622aaf386";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-i686/eo/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-i686/eo/firefox-105.0.2.tar.bz2";
locale = "eo";
arch = "linux-i686";
- sha256 = "abb83c2758cac013bf0cf6fbbf7acf05386567f55c571054e1b6dea8c0c0e43f";
+ sha256 = "feba3a9a48363c340eaf33df505c0eb01f217e1f02e7ee50d2ef8d7f093f124a";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-i686/es-AR/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-i686/es-AR/firefox-105.0.2.tar.bz2";
locale = "es-AR";
arch = "linux-i686";
- sha256 = "ea93982ba143edaba06936c16284b5eb001c1e5424462e060699a3295119b75f";
+ sha256 = "a55ceae088ddc4b650c753b6d1249a8fdfd4685628d1a122aff2d1d30735f05e";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-i686/es-CL/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-i686/es-CL/firefox-105.0.2.tar.bz2";
locale = "es-CL";
arch = "linux-i686";
- sha256 = "aa92a0970c62f9e7d1909d643453986e41ea81a321871f2c8128ef916a8e1fe8";
+ sha256 = "230c98f4b3bfe512d1bf687aaaec459ce0e057e15f40f659f4292ccdf85bc6eb";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-i686/es-ES/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-i686/es-ES/firefox-105.0.2.tar.bz2";
locale = "es-ES";
arch = "linux-i686";
- sha256 = "06bd1d53d60a276a22a840d7353bfa20c226ac58cd7c465fb06c9fe177eb420a";
+ sha256 = "ab2810878a748092574c36caf1af9ed7dcd8f44f0b44c8b2412567196dc8f220";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-i686/es-MX/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-i686/es-MX/firefox-105.0.2.tar.bz2";
locale = "es-MX";
arch = "linux-i686";
- sha256 = "7e5ec5011643f3cfe8085c193b840fd1de8e369eb1bd67eb007f4341acac9487";
+ sha256 = "f64da8cdf6d914fa7a52dc6ba014f90d6a66dcb83bac1e34450689a5ba05e6fa";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-i686/et/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-i686/et/firefox-105.0.2.tar.bz2";
locale = "et";
arch = "linux-i686";
- sha256 = "018f41bea6254ae1385897945bf751983e0dc817c9035f9079840f67f6af3ed4";
+ sha256 = "3b37792aa9f104cea482f48dd0cd53b463e1bdaa2def115e1be472879d5936fa";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-i686/eu/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-i686/eu/firefox-105.0.2.tar.bz2";
locale = "eu";
arch = "linux-i686";
- sha256 = "34c3f772a5fa16f80922728f11a11f96c6b0b2f7c7bb95a6dd2396c70fb39562";
+ sha256 = "90acbafa8aae9b71927444dc448a38c2dae0101c573378edb3c8636cad485790";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-i686/fa/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-i686/fa/firefox-105.0.2.tar.bz2";
locale = "fa";
arch = "linux-i686";
- sha256 = "2b4021fcdf417558767f703505b4b1ad7e70293db27198def80c45988b3429f3";
+ sha256 = "487af635ae8e218e5003a403b37250cff45cdcd639b686129331703462eac882";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-i686/ff/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-i686/ff/firefox-105.0.2.tar.bz2";
locale = "ff";
arch = "linux-i686";
- sha256 = "9b1b52de7649d6852379e96324fa7e21426c73c6e1b8eeeb6cf18bf639b41c7f";
+ sha256 = "b1c1b4c3aa240a72b5c19c0ce0ec8724dc26e73f4bd366c913eb61e29f5c24d4";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-i686/fi/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-i686/fi/firefox-105.0.2.tar.bz2";
locale = "fi";
arch = "linux-i686";
- sha256 = "b7a225e82b76f4f16332463937303b1a3a8c22007033393659ab1daa02d27722";
+ sha256 = "ffe45cf683c9058dbcbce4fd881a70b0d9ff865c4e1d56144dcf1c68ca63975e";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-i686/fr/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-i686/fr/firefox-105.0.2.tar.bz2";
locale = "fr";
arch = "linux-i686";
- sha256 = "7fefa49faba7d92119f76d662d041428f883399aafb00331ffb97f060da2e32d";
+ sha256 = "0367da7268274bee0ed537410beabd4d8de0f5fd5e6e5fa2e9b20363047e15a5";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-i686/fy-NL/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-i686/fy-NL/firefox-105.0.2.tar.bz2";
locale = "fy-NL";
arch = "linux-i686";
- sha256 = "9550b148d724d2629fe3907c7d3eeba143a2c50d23ab14494f55da33e31454e1";
+ sha256 = "66bcb556596d0cb803ff5674050a8a5238dda091c6f0508791378b7ba8a45e8b";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-i686/ga-IE/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-i686/ga-IE/firefox-105.0.2.tar.bz2";
locale = "ga-IE";
arch = "linux-i686";
- sha256 = "5ec814aaeb6a430b794df8113d9481d96d97912b542f51950dd1c3c24a5cf220";
+ sha256 = "7d593530981a955ea788c20c517513e5d329498741ec53504a84f9f4848dd433";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-i686/gd/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-i686/gd/firefox-105.0.2.tar.bz2";
locale = "gd";
arch = "linux-i686";
- sha256 = "227fddc59c3314ba62ac7d13e40f7c3112d99ae2a3d0676990329fc4d1874e1d";
+ sha256 = "c13f9a67b31139a3d7bf432e0b4ff6e2dc1345a6b4a6ac38bb9a4e6120bc052f";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-i686/gl/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-i686/gl/firefox-105.0.2.tar.bz2";
locale = "gl";
arch = "linux-i686";
- sha256 = "5f0f25b7ad58772e4948ad1a72e01bc1f2f33a1b0512954291c0c63c891b950e";
+ sha256 = "b333511f24af5d60ad28e3570be1706ee0b2ec7f1c0e0c409fbdcc79f2282df8";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-i686/gn/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-i686/gn/firefox-105.0.2.tar.bz2";
locale = "gn";
arch = "linux-i686";
- sha256 = "e5dd4e06fbd220f1a21c471ee38e6653d38a303b2f5564b1e00f8eb35a3cf303";
+ sha256 = "6017c769e74c2f919c05b52fe06b09bfe4ecc5cca98513e7dcbdd1b1f07e54ff";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-i686/gu-IN/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-i686/gu-IN/firefox-105.0.2.tar.bz2";
locale = "gu-IN";
arch = "linux-i686";
- sha256 = "181024bdfae07111738906baf996fe8faa4041b872804e725160d3b98b747fe9";
+ sha256 = "4d6a3e68202b594da0f4aea9fc63b4a4bd7b93013ef5a1bbca739c3b1eed61f9";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-i686/he/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-i686/he/firefox-105.0.2.tar.bz2";
locale = "he";
arch = "linux-i686";
- sha256 = "8968e235b288da41c7896a2d73574c7f8f018f0b0348c1e1c20626a3e29d73e8";
+ sha256 = "a3b710671714978b801b789985207c1ace5c4acaefac5952171b831b45222f71";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-i686/hi-IN/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-i686/hi-IN/firefox-105.0.2.tar.bz2";
locale = "hi-IN";
arch = "linux-i686";
- sha256 = "4d57c54d40f965169cee2023afefad8dded92e2695e920031b95b28e98d04336";
+ sha256 = "8fbbfd3493601c18a6063a79e470773fcbd410981baf19ffd74cc18dee6a0b5c";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-i686/hr/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-i686/hr/firefox-105.0.2.tar.bz2";
locale = "hr";
arch = "linux-i686";
- sha256 = "f7d5493712185009393d83470488bb3f8610132a6166d13ee1eb33d992cdbeab";
+ sha256 = "37d01ad6f391c3e2b5093a30e339aa2f2d0eeda7e527f0891c3de905c9110057";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-i686/hsb/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-i686/hsb/firefox-105.0.2.tar.bz2";
locale = "hsb";
arch = "linux-i686";
- sha256 = "39c333ede996d3d678a8673461072c5f25732fef4d39629df2a4b85912fd3b04";
+ sha256 = "99c71e791dcf34266224eaca6d3f1dbc8b617dddb43b4a6d18c6522e0f284da2";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-i686/hu/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-i686/hu/firefox-105.0.2.tar.bz2";
locale = "hu";
arch = "linux-i686";
- sha256 = "1f30c7756933e397f8817dafcb0c3265cde450720d3915e01374918774cc626c";
+ sha256 = "5318528737dc3d964f182010ed0e297c08e3b9b27dae356b51521872161b9d1d";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-i686/hy-AM/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-i686/hy-AM/firefox-105.0.2.tar.bz2";
locale = "hy-AM";
arch = "linux-i686";
- sha256 = "481d7b3a31e3a95e12f1fd73e32da4ef7be1b1de5c24cf13779cd5b8de600216";
+ sha256 = "62dcfa3741677f4da981a0f4606a72909b67104ffe854b4ff3b3f027da1d280e";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-i686/ia/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-i686/ia/firefox-105.0.2.tar.bz2";
locale = "ia";
arch = "linux-i686";
- sha256 = "9472b0cab6807dd844aca41bb5e4cc041fdbc414e902418192271efe6c6051ac";
+ sha256 = "8f940d1aae31e4aaed0c6a42a02a395d23350fc942710dca139242d4ccd4dc3d";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-i686/id/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-i686/id/firefox-105.0.2.tar.bz2";
locale = "id";
arch = "linux-i686";
- sha256 = "0d1573bad6adf59a8c738f5d841fa68800e24f41c1fdeffb2429e899df4e3ecb";
+ sha256 = "670b3a59d624f3ab729bb2267111adcf1ca2fd8b2509b6bcb585382660833a47";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-i686/is/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-i686/is/firefox-105.0.2.tar.bz2";
locale = "is";
arch = "linux-i686";
- sha256 = "b420be8c79d1ec72e72d127c439a8828f5999c7d38e3781f99c68b1a64b8035f";
+ sha256 = "ee8277594562641b52f8d15e2c7ec27addb900cf8645f77ddc1d1d9f3f5452fd";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-i686/it/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-i686/it/firefox-105.0.2.tar.bz2";
locale = "it";
arch = "linux-i686";
- sha256 = "2bf3cc8b4ea09af4acf9ddc8aa0028ac0166c94ac12d8202e2db17b512e4fffb";
+ sha256 = "9aaaf1dc0e3ec5a854e5f4a3e7088ec2e7d60fcbdef766d33177dd767b93b6e4";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-i686/ja/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-i686/ja/firefox-105.0.2.tar.bz2";
locale = "ja";
arch = "linux-i686";
- sha256 = "666b5370f9d37434fc43d02904a2f101571611f5a12ebe7ea90f689dcf8c8b81";
+ sha256 = "e7be6553cd9855e9576d7a8863565909042de17d4cc78534be18c527aacc7d4d";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-i686/ka/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-i686/ka/firefox-105.0.2.tar.bz2";
locale = "ka";
arch = "linux-i686";
- sha256 = "f2b12e230c3ee6b3320508b192b4e3f427d562fe505abb99bed913218588bd74";
+ sha256 = "e25b8766c525bcabfe9b9c41549c77b33a5b0891a6d9a6fc183bf55d6a3265e1";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-i686/kab/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-i686/kab/firefox-105.0.2.tar.bz2";
locale = "kab";
arch = "linux-i686";
- sha256 = "b0a6a1e4aff4f340c1fddf2bde03a0e56397bff5dabaeea862f57b007f14cdc0";
+ sha256 = "48acb54b1b9a922294eb6090fff51719c2fef34f0a93a2e9c003aca7b3cdfda2";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-i686/kk/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-i686/kk/firefox-105.0.2.tar.bz2";
locale = "kk";
arch = "linux-i686";
- sha256 = "783865df2e7095fafbcd6edde3e1dc3470bb301d625c0315ff83b293534eb263";
+ sha256 = "af96b81318c5fea6b2e626afc81ec1e478d1a8bd8bac9f5a90240c72028d95f0";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-i686/km/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-i686/km/firefox-105.0.2.tar.bz2";
locale = "km";
arch = "linux-i686";
- sha256 = "06c25152dd3cf32e89f5adf526d1f9ad8ce5e798ad6265b98b227d400190c617";
+ sha256 = "76cc9372c6f98aaf691d6a8e38b728d79f1047a1f54d4fce4506849b12f89780";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-i686/kn/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-i686/kn/firefox-105.0.2.tar.bz2";
locale = "kn";
arch = "linux-i686";
- sha256 = "7a5bf4c31b625c46ebd82a4db8347e68e031892d9c9126c711ca43df63fc2649";
+ sha256 = "a2a5e8aa80d17d7f89f8713598d861e97e2c086e7b150d10d018becc8a966a5e";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-i686/ko/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-i686/ko/firefox-105.0.2.tar.bz2";
locale = "ko";
arch = "linux-i686";
- sha256 = "a0780299835f875bedd0fc1908959817d27ae9e8df0854d762c09da0fbbb70e6";
+ sha256 = "20809174c1407a8e111f8cd3104d5eeca68eaad6d7b28736abbf4c4a98828198";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-i686/lij/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-i686/lij/firefox-105.0.2.tar.bz2";
locale = "lij";
arch = "linux-i686";
- sha256 = "636067354e25e0e88d2b5b679f4984a3cbee6a36ef360bcce77a4cea20993748";
+ sha256 = "dcee920f4032c22e2b739c2f4d5bff251de90b560803c7c36926752b1803e052";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-i686/lt/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-i686/lt/firefox-105.0.2.tar.bz2";
locale = "lt";
arch = "linux-i686";
- sha256 = "f8643f2956b44a9f4127867154ad4e6d1924269fdcfd21a8e74b329d96d4a706";
+ sha256 = "6aaf16c7abbfeccb8d8d597c8ab8bcc91b6b503b83d632e0c569e162d5dcb809";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-i686/lv/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-i686/lv/firefox-105.0.2.tar.bz2";
locale = "lv";
arch = "linux-i686";
- sha256 = "e8dfb8b33801ae7445aa43b767a9f51cc220d59b07f1c1367457653ac738d272";
+ sha256 = "238f1d7db34ae1c9ba7570bd579ebb54c3c2dc97cbf60e396c1dabf4fe763224";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-i686/mk/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-i686/mk/firefox-105.0.2.tar.bz2";
locale = "mk";
arch = "linux-i686";
- sha256 = "965030558d6bc43c8c07c32d7ac93d35d7d9962396c0e2b45d9a8499774a60a8";
+ sha256 = "5aece30286a3c2abe83d50d08af3cefe99a05d5a51bc5667f7e901e9b9e3454a";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-i686/mr/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-i686/mr/firefox-105.0.2.tar.bz2";
locale = "mr";
arch = "linux-i686";
- sha256 = "2763857de9bc8fc41e01fbfbb63a479672fa38cadee59ddad514661bf345ce72";
+ sha256 = "5fe8895be2a98a2a9c6356c5c8033d8d36e42932ab57fd1ce6d15cd84456f9f7";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-i686/ms/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-i686/ms/firefox-105.0.2.tar.bz2";
locale = "ms";
arch = "linux-i686";
- sha256 = "0cbc063cff1ad5718028a81937280486feee3a63aba4fb13224a2a10fcddd561";
+ sha256 = "341bd620c3e0197542329bddea49983f15be8d6aa8923f8bcbd74efb513862ad";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-i686/my/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-i686/my/firefox-105.0.2.tar.bz2";
locale = "my";
arch = "linux-i686";
- sha256 = "d2adf75fc742fa205f1493a6b65d0646e83e942c348ebfafe385e528e721d71b";
+ sha256 = "014bbbf26567f9196d8dd80e67a6a7dba1191594f1d14c99260475538a4c3117";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-i686/nb-NO/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-i686/nb-NO/firefox-105.0.2.tar.bz2";
locale = "nb-NO";
arch = "linux-i686";
- sha256 = "1464a6619f1cceb564c1e9f32ae8b5cc3e8a9ee62cbbffe181226698c5ded161";
+ sha256 = "610d93c100f311522092611f674893d947fd41120d358174d992616a5e29dd9e";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-i686/ne-NP/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-i686/ne-NP/firefox-105.0.2.tar.bz2";
locale = "ne-NP";
arch = "linux-i686";
- sha256 = "0ada42ddf96d8288bd325f99aaf91fac6779922dd2117fc74d9034112a1f985d";
+ sha256 = "02815030c8ca4e58a5b2a9328ab36ce49462cf6edc1f0474bc98f2333e4c465f";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-i686/nl/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-i686/nl/firefox-105.0.2.tar.bz2";
locale = "nl";
arch = "linux-i686";
- sha256 = "ebbfcdbab8ebc80dfb15eac0206efd68e559754fc1bafac3ab450c564ee1e8c6";
+ sha256 = "a1d5e70dfcefdfd3b04ca6f3e9b3b341b01d647250e7a7426786824c169d4ff6";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-i686/nn-NO/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-i686/nn-NO/firefox-105.0.2.tar.bz2";
locale = "nn-NO";
arch = "linux-i686";
- sha256 = "fdaad5508051c682a6949daa0e36ec84bfea17f016d24b2d2b93461b6a85ca87";
+ sha256 = "f70f53f0b95fe17f92b9c6d062380eb6bcbeb984b5ee9c8f093751a87d088b30";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-i686/oc/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-i686/oc/firefox-105.0.2.tar.bz2";
locale = "oc";
arch = "linux-i686";
- sha256 = "eff46408202a97bbfa1885aa6a76835dfaeb33d1892f1294940d696d432c20c5";
+ sha256 = "938a3dc59d695278602de2be77eaeb8e54cf4106477f6174f7acd339c217ebd4";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-i686/pa-IN/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-i686/pa-IN/firefox-105.0.2.tar.bz2";
locale = "pa-IN";
arch = "linux-i686";
- sha256 = "840fbea8544d6baf81241c1b7a7d23560973ec3677214836a20137338cd41c33";
+ sha256 = "5571e1d80b3f478101067d8d6a690b58e4e53b0084c6bd040d0b84353a57ee85";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-i686/pl/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-i686/pl/firefox-105.0.2.tar.bz2";
locale = "pl";
arch = "linux-i686";
- sha256 = "7238903aaed3625786dd315084238cfed31aace7a48dc19edfb40714b8ef8f0f";
+ sha256 = "37514902aee7cb38a91da7c260a17acf8f207dd71e0948bd3429fd77e38b3921";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-i686/pt-BR/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-i686/pt-BR/firefox-105.0.2.tar.bz2";
locale = "pt-BR";
arch = "linux-i686";
- sha256 = "75d5374dce1e4a6e25317ea050ea8819e8b855affbf306df2213822eba743c1b";
+ sha256 = "90aaf182998ae2d8f523e24e73d3193d96f94280fbd20d4eaece596c7fde0108";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-i686/pt-PT/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-i686/pt-PT/firefox-105.0.2.tar.bz2";
locale = "pt-PT";
arch = "linux-i686";
- sha256 = "1f1cdaf6f3909558a38a4716539166f7e237c54485f4e53b6adc2aa25fff7f5f";
+ sha256 = "222b06ff7e85bae6bc970006240cd5ce1c990fa24cc8f3f7e6779dbe90f64419";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-i686/rm/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-i686/rm/firefox-105.0.2.tar.bz2";
locale = "rm";
arch = "linux-i686";
- sha256 = "bf261fc9821f42901350982452e7ef69f0cf94fb4b4c3a8cc2e6a39611ccf4a7";
+ sha256 = "b3b468323457b669f8fc7f45523f6634c6772dfadc8dc240cca7afe5dc1f3fe1";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-i686/ro/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-i686/ro/firefox-105.0.2.tar.bz2";
locale = "ro";
arch = "linux-i686";
- sha256 = "9f6ea3fb9af5f0ae117129548a2c6f3bba28765c103558756f672ded6bac9e78";
+ sha256 = "8bea540d0cb5cbf94218e277d2fb8cae81453dc260ee980e5891e12c4cc7f14a";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-i686/ru/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-i686/ru/firefox-105.0.2.tar.bz2";
locale = "ru";
arch = "linux-i686";
- sha256 = "933893a72cc90061cb0bf0a4efce8a8e5694c648201728fe2749612fc1ec2a7f";
+ sha256 = "67f30ba7f3d8a7d4d82270271fe3cdde499e1ce7b94ee9098c0a5749ba3b3af1";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-i686/sco/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-i686/sco/firefox-105.0.2.tar.bz2";
locale = "sco";
arch = "linux-i686";
- sha256 = "b67dde50849a7beb29bfdd57aea15dc78a1e53ebf511a1f96a7fb35c0e6532db";
+ sha256 = "cc7f40b17318acb6e6a82474cf19148d349994e93c6ce4371a47d79593c0495e";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-i686/si/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-i686/si/firefox-105.0.2.tar.bz2";
locale = "si";
arch = "linux-i686";
- sha256 = "6063bd9e5aee98e3f709127ebc2dba8c06b6089461983c3da621bce197f11d11";
+ sha256 = "635b19031fcd9645b7765233128e34b939c3e3495a8339b88bb0af76fd66fab6";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-i686/sk/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-i686/sk/firefox-105.0.2.tar.bz2";
locale = "sk";
arch = "linux-i686";
- sha256 = "3fdf0d10003878d73a2f5d0e07f7dd63bd9e7e363c039e200c5b2628edbf5343";
+ sha256 = "e4761dc4df98d2233efc1d32eb6c430912b261239ceb25d7149028b06cb3995d";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-i686/sl/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-i686/sl/firefox-105.0.2.tar.bz2";
locale = "sl";
arch = "linux-i686";
- sha256 = "008c46056e4d03bd31216c818858dcde07adbf3a7b87c273196ff8ac22e5979b";
+ sha256 = "035305bc5dc8a2f441eb6f95fc95e47cb4d9153da09ca3a85adc1dee943a38a5";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-i686/son/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-i686/son/firefox-105.0.2.tar.bz2";
locale = "son";
arch = "linux-i686";
- sha256 = "3bfa44ec693f9bfb1813316bdd4f5e5be0c76dab938248fd4cdfb3259f22d98b";
+ sha256 = "80b9990f956895149377f2f888e9342d94de00b3800c199d027470b4b5cb9cec";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-i686/sq/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-i686/sq/firefox-105.0.2.tar.bz2";
locale = "sq";
arch = "linux-i686";
- sha256 = "070e7162c2ed8daab7adab7d08d93adda8d411a56bc8ca9d32daba7a333b4873";
+ sha256 = "ce62f619d06959835cfce2238d41026df3eab9446c9a46505bcdc0ef169f7cb9";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-i686/sr/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-i686/sr/firefox-105.0.2.tar.bz2";
locale = "sr";
arch = "linux-i686";
- sha256 = "df51f1310cf61c087c128999fe09c5cac56141a9ab7c0ed1faf9ca41992af756";
+ sha256 = "4b038f0d86956252e9346fab62a41e2878614b7a6f4e0af10d7bc351a60c060b";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-i686/sv-SE/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-i686/sv-SE/firefox-105.0.2.tar.bz2";
locale = "sv-SE";
arch = "linux-i686";
- sha256 = "df05aec1c9a34bc8392717522535f9b83a5adda4e57dcbfd9421b4f71caa2928";
+ sha256 = "5c5a5f2b6734197454da2d4946182f453fc0bc2193d70dbf44877879b7cb5342";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-i686/szl/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-i686/szl/firefox-105.0.2.tar.bz2";
locale = "szl";
arch = "linux-i686";
- sha256 = "c39fabf4ae4d38411a5054365a97440a2ce14dc0aabfd1dfeb4b32c70e5cc84d";
+ sha256 = "f7a810e9c67e0767a0a5b14482862d0e69624fc09d8e4641f3cbb6e4be5c287d";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-i686/ta/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-i686/ta/firefox-105.0.2.tar.bz2";
locale = "ta";
arch = "linux-i686";
- sha256 = "e3648edda3e89e46c69cbbfa64835d7d1eea0df3cb34c224d85b21b9bf2de0a9";
+ sha256 = "69c8683633d22fcd52d2e311ab236dd9330139d65ccd26e3c194f3c26f01d4a8";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-i686/te/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-i686/te/firefox-105.0.2.tar.bz2";
locale = "te";
arch = "linux-i686";
- sha256 = "60e808bd5cc3d7e95c5815bf0718c7dcfa469f114485636abcac8b9f6f4598bd";
+ sha256 = "bb7feeac9db945ee407481de6a41fe4898edff770d380ea8708597bbaa1e123a";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-i686/th/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-i686/th/firefox-105.0.2.tar.bz2";
locale = "th";
arch = "linux-i686";
- sha256 = "5327332fa0fa7bb2b15553274f4867158723f7f778fe1b76e47e03b8286fe8c4";
+ sha256 = "178c17a7bb3f6ca44ad9c40fa19c86ae8520b972cd0311e1d81be46e181671a3";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-i686/tl/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-i686/tl/firefox-105.0.2.tar.bz2";
locale = "tl";
arch = "linux-i686";
- sha256 = "417ed820ec567617b79029cc56572f82d68a54a194e281c0046329d247cc8321";
+ sha256 = "6cdc00a69808cf6f404d04507dbdf1288938e3fd4a9c5d13c8a935a9267b4870";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-i686/tr/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-i686/tr/firefox-105.0.2.tar.bz2";
locale = "tr";
arch = "linux-i686";
- sha256 = "efadb1233f78517063d5ea01992a2e0b87e6bf0b7e059ab93cea9ec56b92fd5f";
+ sha256 = "a646aa1593dec33ccb2f95dfe9d979c84348ee46e1d871742259ba675156f3a8";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-i686/trs/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-i686/trs/firefox-105.0.2.tar.bz2";
locale = "trs";
arch = "linux-i686";
- sha256 = "d50741ee4a03767bc93f8c6fe6c3d4ae28d4279e491dc7f63a6d4d9c0b903636";
+ sha256 = "89d78a3bce52585ff4825e6af803287473a68a4449e66eddb369bf2787f733af";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-i686/uk/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-i686/uk/firefox-105.0.2.tar.bz2";
locale = "uk";
arch = "linux-i686";
- sha256 = "b793a691f4ba360110d8588d135fc9b6148114367cb511fa4109af9591031468";
+ sha256 = "a6fe648a3a09f6c12745eb05c6ca90eee2148f42b51312711f81e12d068962cd";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-i686/ur/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-i686/ur/firefox-105.0.2.tar.bz2";
locale = "ur";
arch = "linux-i686";
- sha256 = "86779f16e1c6bd852a5bf2a6d3cf4d185318a0e8255f5e740320a0acdad7483b";
+ sha256 = "78e2b7d7c84bd0469ac6b08a9a1ea0167d31d2dd53fff313e06bbe52d001f72d";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-i686/uz/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-i686/uz/firefox-105.0.2.tar.bz2";
locale = "uz";
arch = "linux-i686";
- sha256 = "75923c30c7d2f4ae52cd85f08636d984c28413cd1e3c78d0c11dac5a217cb496";
+ sha256 = "d31de5c55380a21a0ebe15f3799b43763322b58d1cf266ed52f58c654959ff40";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-i686/vi/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-i686/vi/firefox-105.0.2.tar.bz2";
locale = "vi";
arch = "linux-i686";
- sha256 = "28f263131e02353e593906a289f9e6b929a6bd84be54647b486c9477c09596ce";
+ sha256 = "f00b65f6c81c39b72cfb39379dae31258499c6a4e520eb6f31172fa3c7c405a1";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-i686/xh/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-i686/xh/firefox-105.0.2.tar.bz2";
locale = "xh";
arch = "linux-i686";
- sha256 = "6c27086dc8136077ab1c18d134ba5d569675296e428f7eb06db12761a4a52d93";
+ sha256 = "a54f3fcf2b24214043e11d664777bbad0e201eb4f65c15d5b3410e81a1399991";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-i686/zh-CN/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-i686/zh-CN/firefox-105.0.2.tar.bz2";
locale = "zh-CN";
arch = "linux-i686";
- sha256 = "04e98684a9aaeb75e8e5e70ace60593fe200705ab055ffe1556f71e23ca77424";
+ sha256 = "7f9b4de1fab1573bc98fab77e87188b025c07a71c14a92e7734c1ab3d13a8e8b";
}
- { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.1/linux-i686/zh-TW/firefox-105.0.1.tar.bz2";
+ { url = "https://archive.mozilla.org/pub/firefox/releases/105.0.2/linux-i686/zh-TW/firefox-105.0.2.tar.bz2";
locale = "zh-TW";
arch = "linux-i686";
- sha256 = "55f58ba2ef1806f37493503aad5bffdaab69cfb31661933b01e8be5aeb963e64";
+ sha256 = "d7d8f40627752be6010dcc7b11d1f4b55b1606120bc15429c0ec18287d24acd6";
}
];
}
diff --git a/pkgs/applications/networking/browsers/firefox/packages.nix b/pkgs/applications/networking/browsers/firefox/packages.nix
index 682d4c37ee43..b368a5f179e7 100644
--- a/pkgs/applications/networking/browsers/firefox/packages.nix
+++ b/pkgs/applications/networking/browsers/firefox/packages.nix
@@ -3,10 +3,10 @@
rec {
firefox = buildMozillaMach rec {
pname = "firefox";
- version = "105.0.1";
+ version = "105.0.2";
src = fetchurl {
url = "mirror://mozilla/firefox/releases/${version}/source/firefox-${version}.source.tar.xz";
- sha512 = "66ef7cd5028953e7da9d55e127135739c9d85be68ec633b71c52d6c9427edb0bd8a38504148484cd322adcefb57bfefe6e57cb15855f195508fe438864f4322b";
+ sha512 = "49f4c0e7ecf2cef6fa7de8362185bd9ce6950304dadbbea0522a5782016587b9d58f32b45f0e0edf7a2cc31ea158ed10c886b287a18d1f2bff3daf50d9f0b926";
};
meta = {
diff --git a/pkgs/applications/networking/kubo/default.nix b/pkgs/applications/networking/kubo/default.nix
index dc6f1edd574d..01a8dd9fffac 100644
--- a/pkgs/applications/networking/kubo/default.nix
+++ b/pkgs/applications/networking/kubo/default.nix
@@ -2,7 +2,7 @@
buildGoModule rec {
pname = "kubo";
- version = "0.15.0"; # When updating, also check if the repo version changed and adjust repoVersion below
+ version = "0.16.0"; # When updating, also check if the repo version changed and adjust repoVersion below
rev = "v${version}";
passthru.repoVersion = "12"; # Also update kubo-migrator when changing the repo version
@@ -10,7 +10,7 @@ buildGoModule rec {
# Kubo makes changes to it's source tarball that don't match the git source.
src = fetchurl {
url = "https://github.com/ipfs/kubo/releases/download/${rev}/kubo-source.tar.gz";
- hash = "sha256-GkOY1G2CKXbMbHXkw5v27HmfkJIl2nZOmjjZbzuaRWs=";
+ hash = "sha256-FS7lwQS7ybyoIKPkcUtPIe3srO1O/cZN+x1nzWUlF20=";
};
# tarball contains multiple files/directories
diff --git a/pkgs/applications/science/chemistry/jmol/default.nix b/pkgs/applications/science/chemistry/jmol/default.nix
index ea0eba2249e9..c72a4ace2480 100644
--- a/pkgs/applications/science/chemistry/jmol/default.nix
+++ b/pkgs/applications/science/chemistry/jmol/default.nix
@@ -25,14 +25,14 @@ let
};
in
stdenv.mkDerivation rec {
- version = "14.32.75";
+ version = "14.32.76";
pname = "jmol";
src = let
baseVersion = "${lib.versions.major version}.${lib.versions.minor version}";
in fetchurl {
url = "mirror://sourceforge/jmol/Jmol/Version%20${baseVersion}/Jmol%20${version}/Jmol-${version}-binary.tar.gz";
- sha256 = "sha256-2D2WBrBmmA84RVLsICFMeQKLvv5nIekbS/EGlmlvtYQ=";
+ sha256 = "sha256-KdQZKiAJFKE2PW0/DdZGIOC8QQ1icQR+TY4hoXCQdxg=";
};
patchPhase = ''
diff --git a/pkgs/applications/version-management/redmine/Gemfile b/pkgs/applications/version-management/redmine/Gemfile
index 3b22a9d50743..7e5cf752bc88 100644
--- a/pkgs/applications/version-management/redmine/Gemfile
+++ b/pkgs/applications/version-management/redmine/Gemfile
@@ -3,7 +3,7 @@ source 'https://rubygems.org'
ruby '>= 2.4.0', '< 2.8.0'
gem 'bundler', '>= 1.12.0'
-gem 'rails', '5.2.8'
+gem 'rails', '5.2.8.1'
gem 'sprockets', '~> 3.7.2' if RUBY_VERSION < '2.5'
gem 'globalid', '~> 0.4.2' if Gem.ruby_version < Gem::Version.new('2.6.0')
gem 'rouge', '~> 3.26.0'
@@ -25,6 +25,7 @@ gem 'i18n', '~> 1.8.2'
gem "rbpdf", "~> 1.20.0"
gem 'addressable'
gem 'rubyzip', '~> 2.3.0'
+gem 'psych', '~> 3.1' if Gem.ruby_version < Gem::Version.new('2.6.0')
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: [:mingw, :x64_mingw, :mswin]
diff --git a/pkgs/applications/version-management/redmine/Gemfile.lock b/pkgs/applications/version-management/redmine/Gemfile.lock
index 5ad1b80d3c77..c57844b49a28 100644
--- a/pkgs/applications/version-management/redmine/Gemfile.lock
+++ b/pkgs/applications/version-management/redmine/Gemfile.lock
@@ -1,19 +1,19 @@
GEM
remote: https://rubygems.org/
specs:
- actioncable (5.2.8)
- actionpack (= 5.2.8)
+ actioncable (5.2.8.1)
+ actionpack (= 5.2.8.1)
nio4r (~> 2.0)
websocket-driver (>= 0.6.1)
- actionmailer (5.2.8)
- actionpack (= 5.2.8)
- actionview (= 5.2.8)
- activejob (= 5.2.8)
+ actionmailer (5.2.8.1)
+ actionpack (= 5.2.8.1)
+ actionview (= 5.2.8.1)
+ activejob (= 5.2.8.1)
mail (~> 2.5, >= 2.5.4)
rails-dom-testing (~> 2.0)
- actionpack (5.2.8)
- actionview (= 5.2.8)
- activesupport (= 5.2.8)
+ actionpack (5.2.8.1)
+ actionview (= 5.2.8.1)
+ activesupport (= 5.2.8.1)
rack (~> 2.0, >= 2.0.8)
rack-test (>= 0.6.3)
rails-dom-testing (~> 2.0)
@@ -21,26 +21,26 @@ GEM
actionpack-xml_parser (2.0.1)
actionpack (>= 5.0)
railties (>= 5.0)
- actionview (5.2.8)
- activesupport (= 5.2.8)
+ actionview (5.2.8.1)
+ activesupport (= 5.2.8.1)
builder (~> 3.1)
erubi (~> 1.4)
rails-dom-testing (~> 2.0)
rails-html-sanitizer (~> 1.0, >= 1.0.3)
- activejob (5.2.8)
- activesupport (= 5.2.8)
+ activejob (5.2.8.1)
+ activesupport (= 5.2.8.1)
globalid (>= 0.3.6)
- activemodel (5.2.8)
- activesupport (= 5.2.8)
- activerecord (5.2.8)
- activemodel (= 5.2.8)
- activesupport (= 5.2.8)
+ activemodel (5.2.8.1)
+ activesupport (= 5.2.8.1)
+ activerecord (5.2.8.1)
+ activemodel (= 5.2.8.1)
+ activesupport (= 5.2.8.1)
arel (>= 9.0)
- activestorage (5.2.8)
- actionpack (= 5.2.8)
- activerecord (= 5.2.8)
+ activestorage (5.2.8.1)
+ actionpack (= 5.2.8.1)
+ activerecord (= 5.2.8.1)
marcel (~> 1.0.0)
- activesupport (5.2.8)
+ activesupport (5.2.8.1)
concurrent-ruby (~> 1.0, >= 1.0.2)
i18n (>= 0.7, < 2)
minitest (~> 5.1)
@@ -62,7 +62,7 @@ GEM
chunky_png (1.4.0)
concurrent-ruby (1.1.10)
crass (1.0.6)
- css_parser (1.11.0)
+ css_parser (1.12.0)
addressable
csv (3.1.9)
docile (1.4.0)
@@ -72,7 +72,7 @@ GEM
htmlentities (4.3.4)
i18n (1.8.11)
concurrent-ruby (~> 1.0)
- loofah (2.18.0)
+ loofah (2.19.0)
crass (~> 1.0.2)
nokogiri (>= 1.5.9)
mail (2.7.1)
@@ -83,15 +83,13 @@ GEM
mini_mime (1.0.3)
mini_portile2 (2.8.0)
minitest (5.16.3)
- mocha (1.14.0)
+ mocha (1.15.0)
mysql2 (0.5.4)
net-ldap (0.17.1)
nio4r (2.5.8)
nokogiri (1.13.8)
mini_portile2 (~> 2.8.0)
racc (~> 1.4)
- nokogiri (1.13.8-x86_64-linux)
- racc (~> 1.4)
parallel (1.22.1)
parser (3.1.2.1)
ast (~> 2.4.1)
@@ -106,27 +104,27 @@ GEM
ruby-openid (>= 2.1.8)
rack-test (2.0.2)
rack (>= 1.3)
- rails (5.2.8)
- actioncable (= 5.2.8)
- actionmailer (= 5.2.8)
- actionpack (= 5.2.8)
- actionview (= 5.2.8)
- activejob (= 5.2.8)
- activemodel (= 5.2.8)
- activerecord (= 5.2.8)
- activestorage (= 5.2.8)
- activesupport (= 5.2.8)
+ rails (5.2.8.1)
+ actioncable (= 5.2.8.1)
+ actionmailer (= 5.2.8.1)
+ actionpack (= 5.2.8.1)
+ actionview (= 5.2.8.1)
+ activejob (= 5.2.8.1)
+ activemodel (= 5.2.8.1)
+ activerecord (= 5.2.8.1)
+ activestorage (= 5.2.8.1)
+ activesupport (= 5.2.8.1)
bundler (>= 1.3.0)
- railties (= 5.2.8)
+ railties (= 5.2.8.1)
sprockets-rails (>= 2.0.0)
rails-dom-testing (2.0.3)
activesupport (>= 4.2.0)
nokogiri (>= 1.6)
rails-html-sanitizer (1.4.3)
loofah (~> 2.3)
- railties (5.2.8)
- actionpack (= 5.2.8)
- activesupport (= 5.2.8)
+ railties (5.2.8.1)
+ actionpack (= 5.2.8.1)
+ activesupport (= 5.2.8.1)
method_source
rake (>= 0.8.7)
thor (>= 0.19.0, < 2.0)
@@ -174,7 +172,7 @@ GEM
ruby-openid (2.9.2)
ruby-progressbar (1.11.0)
rubyzip (2.3.2)
- selenium-webdriver (4.4.0)
+ selenium-webdriver (4.5.0)
childprocess (>= 0.5, < 5.0)
rexml (~> 3.2, >= 3.2.5)
rubyzip (>= 1.2.2, < 3.0)
@@ -194,7 +192,7 @@ GEM
thread_safe (0.3.6)
tzinfo (1.2.10)
thread_safe (~> 0.1)
- unicode-display_width (2.2.0)
+ unicode-display_width (2.3.0)
webdrivers (4.7.0)
nokogiri (~> 1.6)
rubyzip (>= 1.3.0)
@@ -231,7 +229,7 @@ DEPENDENCIES
pg (~> 1.2.2)
puma
rack-openid
- rails (= 5.2.8)
+ rails (= 5.2.8.1)
rails-dom-testing
rbpdf (~> 1.20.0)
redcarpet (~> 3.5.1)
@@ -255,4 +253,4 @@ RUBY VERSION
ruby 2.7.6p219
BUNDLED WITH
- 2.3.20
+ 2.3.9
diff --git a/pkgs/applications/version-management/redmine/default.nix b/pkgs/applications/version-management/redmine/default.nix
index a518a9cec2e8..9da39ba4b1c9 100644
--- a/pkgs/applications/version-management/redmine/default.nix
+++ b/pkgs/applications/version-management/redmine/default.nix
@@ -1,7 +1,7 @@
{ lib, stdenv, fetchurl, bundlerEnv, ruby, makeWrapper, nixosTests }:
let
- version = "4.2.7";
+ version = "4.2.8";
rubyEnv = bundlerEnv {
name = "redmine-env-${version}";
@@ -16,7 +16,7 @@ in
src = fetchurl {
url = "https://www.redmine.org/releases/${pname}-${version}.tar.gz";
- sha256 = "sha256-7UvgO1q2PCZBqH24l4c53Zl8D2Rr+hAQrJ5SEMNDck4=";
+ sha256 = "sha256-C0McBS2P02uTIB2vrzYVzbjQNGDvzyQA59MmYrKrYnI=";
};
nativeBuildInputs = [ makeWrapper ];
diff --git a/pkgs/applications/version-management/redmine/gemset.nix b/pkgs/applications/version-management/redmine/gemset.nix
index a478796ca226..5248ff369830 100644
--- a/pkgs/applications/version-management/redmine/gemset.nix
+++ b/pkgs/applications/version-management/redmine/gemset.nix
@@ -5,10 +5,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "123nrlrh5kikl314l4gjbc8ljw3h2ppzhpmm7cilisqvn71s5ysd";
+ sha256 = "1v5bihkn3cdf7s1cv04wqpk3l5snjgyav0jz9x5vhzzdqyknvndr";
type = "gem";
};
- version = "5.2.8";
+ version = "5.2.8.1";
};
actionmailer = {
dependencies = ["actionpack" "actionview" "activejob" "mail" "rails-dom-testing"];
@@ -16,10 +16,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "18vrdwdwfmrnpj8k30qhvdx23km233ffnhhzpbmx8m6spavwvli2";
+ sha256 = "1x0qjs8v5z5wzk7vlg7pdr71hsm154d8d0gwhya573xpxfjzmjpx";
type = "gem";
};
- version = "5.2.8";
+ version = "5.2.8.1";
};
actionpack = {
dependencies = ["actionview" "activesupport" "rack" "rack-test" "rails-dom-testing" "rails-html-sanitizer"];
@@ -27,10 +27,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1knnka6n292f4hhbjfchpa4sbjj79wys5y8bcggm8ah894051kzk";
+ sha256 = "0mqvz5dsg9zis34y8m4d2ackr3zs7h27mv6zx5yx00a58fifhyv3";
type = "gem";
};
- version = "5.2.8";
+ version = "5.2.8.1";
};
actionpack-xml_parser = {
dependencies = ["actionpack" "railties"];
@@ -49,10 +49,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "0zndg7ax4bckayjw558p9hz92ic6x3r5acfbd5vnad0xh7hfdrmx";
+ sha256 = "06bk0hyv2sq386qc7r96qbhskg91apdj3mrdpzhry6p6nby2afml";
type = "gem";
};
- version = "5.2.8";
+ version = "5.2.8.1";
};
activejob = {
dependencies = ["activesupport" "globalid"];
@@ -60,10 +60,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "0kzb5y4lflmvi3vxz2zrj55k6xyys2h5bdqp2ki69rcyd4ay5qrg";
+ sha256 = "12y07kvq9y30ycl4i45g9c2c9jv5a9vlxvrjaqfl79iim6gk1klz";
type = "gem";
};
- version = "5.2.8";
+ version = "5.2.8.1";
};
activemodel = {
dependencies = ["activesupport"];
@@ -71,10 +71,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1b6pskl8x4c1hcsf4xh4cl9qlh814s91bjv3yy94cdc4xpl76vr6";
+ sha256 = "0vsyxbjpl47grlkzgh2rm0i9yksfwk11lsdi11jmqszc6lkj1b9g";
type = "gem";
};
- version = "5.2.8";
+ version = "5.2.8.1";
};
activerecord = {
dependencies = ["activemodel" "activesupport" "arel"];
@@ -82,10 +82,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "078iiv5g02n1ivrgpkbw5bxkbihi85msvn88p5q37vbfr14ynk0a";
+ sha256 = "0jk8qwdvq465nklxr7z0qzpiacxcqd72y6frimlalchhigl8ya0a";
type = "gem";
};
- version = "5.2.8";
+ version = "5.2.8.1";
};
activestorage = {
dependencies = ["actionpack" "activerecord" "marcel"];
@@ -93,10 +93,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1xnxgg9j4nr6yw8g3l0jdr9m985k3wrvjql9j5qr5lfcsn9zwz4w";
+ sha256 = "0qklddvw3v13dh79c7vljad8m25frlhnwcnw9xk510d676j3lr8a";
type = "gem";
};
- version = "5.2.8";
+ version = "5.2.8.1";
};
activesupport = {
dependencies = ["concurrent-ruby" "i18n" "minitest" "tzinfo"];
@@ -104,10 +104,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "0anvhpxjgic1cv1h66lmz6x5nd7g0bbnwl0rgxnbdr3w76fa8w02";
+ sha256 = "0r15sbhl4nrkh2g5ccbhmn3c2ngri71j0yfnarxkq90vdrhqqjgh";
type = "gem";
};
- version = "5.2.8";
+ version = "5.2.8.1";
};
addressable = {
dependencies = ["public_suffix"];
@@ -207,10 +207,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1qbdgp36dhcyljhmfxrvbgp1ha9yqxhxgyg3sdm48y9m371jd2an";
+ sha256 = "1107j3frhmcd95wcsz0rypchynnzhnjiyyxxcl6dlmr2lfy08z4b";
type = "gem";
};
- version = "1.11.0";
+ version = "1.12.0";
};
csv = {
groups = ["default"];
@@ -280,10 +280,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "18ymp6l3bv7abz07k6qbbi9c9vsiahq30d2smh4qzsvag8j5m5v1";
+ sha256 = "1fpyk1965py77al7iadkn5dibwgvybknkr7r8bii2dj73wvr29rh";
type = "gem";
};
- version = "2.18.0";
+ version = "2.19.0";
};
mail = {
dependencies = ["mini_mime"];
@@ -361,10 +361,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "0ffd7zn24lwhp3xp747jfg4zxgqbm04ar7shhjy2iv5xg1pz01lr";
+ sha256 = "0z2nzk106b6af6n0d9xqf2sphaff4gpjgxvwqcmvy6k719hqhkh9";
type = "gem";
};
- version = "1.14.0";
+ version = "1.15.0";
};
mysql2 = {
groups = ["default"];
@@ -523,10 +523,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "0884z2ilm4by47qk7my856dr42vzy12ghj241rymp13flaf54449";
+ sha256 = "1jy4jfkq0xpqp0d3ii9xhj69kacx8l4q3pincncw2g30bqd7a66g";
type = "gem";
};
- version = "5.2.8";
+ version = "5.2.8.1";
};
rails-dom-testing = {
dependencies = ["activesupport" "nokogiri"];
@@ -556,10 +556,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "157mmm2jhvq2g08xhq0780i3r4i679h14m68jj7265ik26gbchhc";
+ sha256 = "0w9hm85jgbyar748z9nppsz8mgwywa2v9qqlbkzhpgirxhblifv2";
type = "gem";
};
- version = "5.2.8";
+ version = "5.2.8.1";
};
rainbow = {
groups = ["default" "test"];
@@ -786,10 +786,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1vy0baak61wr652a7qf249n85sqq5k5mi51ws5ccyyirlsymz2gv";
+ sha256 = "0fp7h5bnlqp649imgpnshgf3mxl8zwnpsl1ak1giii81r0cd6in3";
type = "gem";
};
- version = "4.4.0";
+ version = "4.5.0";
};
simplecov = {
dependencies = ["docile" "simplecov-html"];
@@ -870,10 +870,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1nlfck6z986fngp0r74maswmyb1rcksc8xc3mfpw9cj23c3s8zwn";
+ sha256 = "0ra70s8prfacpqwj5v2mqn1rbfz6xds3n9nsr9cwzs3z2c0wm5j7";
type = "gem";
};
- version = "2.2.0";
+ version = "2.3.0";
};
webdrivers = {
dependencies = ["nokogiri" "rubyzip" "selenium-webdriver"];
diff --git a/pkgs/applications/window-managers/weston/default.nix b/pkgs/applications/window-managers/weston/default.nix
index f383e3c85aeb..177e185d8273 100644
--- a/pkgs/applications/window-managers/weston/default.nix
+++ b/pkgs/applications/window-managers/weston/default.nix
@@ -1,7 +1,7 @@
{ lib, stdenv, fetchurl
, meson, ninja, pkg-config, python3, wayland-scanner
, cairo, colord, dbus, lcms2, libGL, libXcursor, libdrm, libevdev, libinput
-, libjpeg, libseat, libxcb, libxkbcommon, mesa, mtdev, pam, udev, wayland
+, libjpeg, seatd, libxcb, libxkbcommon, mesa, mtdev, pam, udev, wayland
, wayland-protocols, xlibsWrapper
, pipewire ? null, pango ? null, libunwind ? null, freerdp ? null, vaapi ? null
, libva ? null, libwebp ? null, xwayland ? null
@@ -20,7 +20,7 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ meson ninja pkg-config python3 wayland-scanner ];
buildInputs = [
cairo colord dbus freerdp lcms2 libGL libXcursor libdrm libevdev libinput
- libjpeg libseat libunwind libva libwebp libxcb libxkbcommon mesa mtdev pam
+ libjpeg seatd libunwind libva libwebp libxcb libxkbcommon mesa mtdev pam
pango pipewire udev vaapi wayland wayland-protocols xlibsWrapper
];
diff --git a/pkgs/build-support/emacs/generic.nix b/pkgs/build-support/emacs/generic.nix
index 1b81dbcf9ed7..e3d1505dde87 100644
--- a/pkgs/build-support/emacs/generic.nix
+++ b/pkgs/build-support/emacs/generic.nix
@@ -85,7 +85,7 @@ stdenv.mkDerivation ({
addEmacsVars "$out"
find $out/share/emacs -type f -name '*.el' -print0 \
- | xargs -0 -n 1 -I {} -P $NIX_BUILD_CORES sh -c \
+ | xargs -0 -I {} -n 1 -P $NIX_BUILD_CORES sh -c \
"emacs --batch --eval '(setq large-file-warning-threshold nil)' -f batch-native-compile {} || true"
'';
}
diff --git a/pkgs/data/fonts/libertine/default.nix b/pkgs/data/fonts/libertine/default.nix
index b3c8fd048b52..e24096e74f4e 100644
--- a/pkgs/data/fonts/libertine/default.nix
+++ b/pkgs/data/fonts/libertine/default.nix
@@ -1,18 +1,22 @@
{ lib, stdenv, fetchurl, fontforge }:
stdenv.mkDerivation {
- name = "linux-libertine-5.3.0";
+ pname = "linux-libertine";
+ version = "5.3.0";
src = fetchurl {
url = "mirror://sourceforge/linuxlibertine/5.3.0/LinLibertineSRC_5.3.0_2012_07_02.tgz";
- sha256 = "0x7cz6hvhpil1rh03rax9zsfzm54bh7r4bbrq8rz673gl9h47v0v";
+ hash = "sha256-G+xDYKJvHPMzwnktkg9cpNTv9E9d5QFgDjReuKH57HQ=";
};
sourceRoot = ".";
nativeBuildInputs = [ fontforge ];
+ dontConfigure = true;
+
buildPhase = ''
+ runHook preBuild
for i in *.sfd; do
fontforge -lang=ff -c \
'Open($1);
@@ -28,20 +32,23 @@ stdenv.mkDerivation {
Generate($1:r + ".enc");
' $i;
done
+ runHook postBuild
'';
installPhase = ''
+ runHook preInstall
install -m444 -Dt $out/share/fonts/opentype/public *.otf
install -m444 -Dt $out/share/fonts/truetype/public *.ttf
install -m444 -Dt $out/share/fonts/type1/public *.pfb
install -m444 -Dt $out/share/texmf/fonts/enc *.enc
install -m444 -Dt $out/share/texmf/fonts/map *.map
+ runHook postInstall
'';
meta = with lib; {
description = "Linux Libertine Fonts";
homepage = "http://linuxlibertine.sf.net";
- maintainers = [ ];
+ maintainers = with maintainers; [ erdnaxe ];
license = licenses.ofl;
};
}
diff --git a/pkgs/data/fonts/proggyfonts/default.nix b/pkgs/data/fonts/proggyfonts/default.nix
index 81ecb7354095..e8881fce3674 100644
--- a/pkgs/data/fonts/proggyfonts/default.nix
+++ b/pkgs/data/fonts/proggyfonts/default.nix
@@ -1,38 +1,41 @@
{ lib, stdenv, fetchurl, mkfontscale }:
-stdenv.mkDerivation {
- name = "proggyfonts-0.1";
+stdenv.mkDerivation rec {
+ pname = "proggyfonts";
+ version = "0.1";
src = fetchurl {
- url = "https://web.archive.org/web/20150801042353/http://kaictl.net/software/proggyfonts-0.1.tar.gz";
- sha256 = "1plcm1sjpa3hdqhhin48fq6zmz3ndm4md72916hd8ff0w6596q0n";
+ url = "https://web.archive.org/web/20150801042353/http://kaictl.net/software/proggyfonts-${version}.tar.gz";
+ hash = "sha256-SsLzZdR5icVJNbr5rcCPbagPPtWghbqs2Jxmrtufsa4=";
};
nativeBuildInputs = [ mkfontscale ];
- installPhase =
- ''
- # compress pcf fonts
- mkdir -p $out/share/fonts/misc
- rm Speedy.pcf # duplicated as Speedy11.pcf
- for f in *.pcf; do
- gzip -n -9 -c "$f" > $out/share/fonts/misc/"$f".gz
- done
+ dontConfigure = true;
+ dontBuild = true;
- install -D -m 644 *.bdf -t "$out/share/fonts/misc"
- install -D -m 644 *.ttf -t "$out/share/fonts/truetype"
- install -D -m 644 Licence.txt -t "$out/share/doc/$name"
+ installPhase = ''
+ runHook preInstall
- mkfontscale "$out/share/fonts/truetype"
- mkfontdir "$out/share/fonts/misc"
- '';
+ # compress pcf fonts
+ mkdir -p $out/share/fonts/misc
+ rm Speedy.pcf # duplicated as Speedy11.pcf
+ for f in *.pcf; do
+ gzip -n -9 -c "$f" > $out/share/fonts/misc/"$f".gz
+ done
- outputHashAlgo = "sha256";
- outputHashMode = "recursive";
- outputHash = "1x196rp3wqjd7m57bgp5kfy5jmj97qncxi1vwibs925ji7dqzfgf";
+ install -D -m 644 *.bdf -t "$out/share/fonts/misc"
+ install -D -m 644 *.ttf -t "$out/share/fonts/truetype"
+ install -D -m 644 Licence.txt -t "$out/share/doc/$name"
+
+ mkfontscale "$out/share/fonts/truetype"
+ mkfontdir "$out/share/fonts/misc"
+
+ runHook postInstall
+ '';
meta = with lib; {
- homepage = "http://upperbounds.net";
+ homepage = "http://www.upperbounds.net";
description = "A set of fixed-width screen fonts that are designed for code listings";
license = licenses.mit;
platforms = platforms.all;
diff --git a/pkgs/data/themes/adw-gtk3/default.nix b/pkgs/data/themes/adw-gtk3/default.nix
index f88c11388c79..a22a7beac51d 100644
--- a/pkgs/data/themes/adw-gtk3/default.nix
+++ b/pkgs/data/themes/adw-gtk3/default.nix
@@ -9,13 +9,13 @@
stdenvNoCC.mkDerivation rec {
pname = "adw-gtk3";
- version = "3.7";
+ version = "4.0";
src = fetchFromGitHub {
owner = "lassekongo83";
repo = pname;
rev = "v${version}";
- sha256 = "sha256-hHmNRPUJOXa//aKgAYhGBVX6usRsObWbzcfOa1uwbqM=";
+ sha256 = "sha256-PR0MmTOXGrMicRLXqIOUpCVSu68HeCaG2z/o+lbHnjk=";
};
nativeBuildInputs = [
diff --git a/pkgs/desktops/pantheon/apps/elementary-iconbrowser/default.nix b/pkgs/desktops/pantheon/apps/elementary-iconbrowser/default.nix
new file mode 100644
index 000000000000..64b9b67cb788
--- /dev/null
+++ b/pkgs/desktops/pantheon/apps/elementary-iconbrowser/default.nix
@@ -0,0 +1,75 @@
+{ lib
+, stdenv
+, fetchFromGitHub
+, nix-update-script
+, meson
+, ninja
+, pkg-config
+, python3
+, vala
+, wrapGAppsHook4
+, elementary-gtk-theme
+, elementary-icon-theme
+, glib
+, granite7
+, gtk4
+, gtksourceview5
+}:
+
+stdenv.mkDerivation rec {
+ pname = "elementary-iconbrowser";
+ version = "2.0.0";
+
+ src = fetchFromGitHub {
+ owner = "elementary";
+ repo = "iconbrowser";
+ rev = version;
+ sha256 = "sha256-aXFgL5l9jnOZJJgMOYwiE7W//1sq23CbLEDmhYFJT38=";
+ };
+
+ nativeBuildInputs = [
+ meson
+ ninja
+ pkg-config
+ python3
+ vala
+ wrapGAppsHook4
+ ];
+
+ buildInputs = [
+ elementary-icon-theme
+ glib
+ granite7
+ gtk4
+ gtksourceview5
+ ];
+
+ postPatch = ''
+ chmod +x meson/post_install.py
+ patchShebangs meson/post_install.py
+ '';
+
+ preFixup = ''
+ gappsWrapperArgs+=(
+ # The GTK theme is hardcoded.
+ --prefix XDG_DATA_DIRS : "${elementary-gtk-theme}/share"
+ # The icon theme is hardcoded.
+ --prefix XDG_DATA_DIRS : "$XDG_ICON_DIRS"
+ )
+ '';
+
+ passthru = {
+ updateScript = nix-update-script {
+ attrPath = "pantheon.${pname}";
+ };
+ };
+
+ meta = with lib; {
+ homepage = "https://github.com/elementary/iconbrowser";
+ description = "Browse and find system icons";
+ license = licenses.gpl3Plus;
+ platforms = platforms.linux;
+ maintainers = teams.pantheon.members;
+ mainProgram = "io.elementary.iconbrowser";
+ };
+}
diff --git a/pkgs/desktops/pantheon/default.nix b/pkgs/desktops/pantheon/default.nix
index 77f8d3568037..defa583e98a2 100644
--- a/pkgs/desktops/pantheon/default.nix
+++ b/pkgs/desktops/pantheon/default.nix
@@ -67,6 +67,8 @@ lib.makeScope pkgs.newScope (self: with self; {
elementary-feedback = callPackage ./apps/elementary-feedback { };
+ elementary-iconbrowser = callPackage ./apps/elementary-iconbrowser { };
+
elementary-mail = callPackage ./apps/elementary-mail { };
elementary-music = callPackage ./apps/elementary-music { };
diff --git a/pkgs/development/compilers/cudatoolkit/redist/extension.nix b/pkgs/development/compilers/cudatoolkit/redist/extension.nix
index 65057b90a03c..17327efb4013 100644
--- a/pkgs/development/compilers/cudatoolkit/redist/extension.nix
+++ b/pkgs/development/compilers/cudatoolkit/redist/extension.nix
@@ -11,6 +11,7 @@ final: prev: let
"11.4" = ./manifests/redistrib_11.4.4.json;
"11.5" = ./manifests/redistrib_11.5.2.json;
"11.6" = ./manifests/redistrib_11.6.2.json;
+ "11.7" = ./manifests/redistrib_11.7.0.json;
};
# Function to build a single cudatoolkit redist package
diff --git a/pkgs/development/compilers/cudatoolkit/redist/manifests/redistrib_11.7.0.json b/pkgs/development/compilers/cudatoolkit/redist/manifests/redistrib_11.7.0.json
new file mode 100644
index 000000000000..2fc999afd700
--- /dev/null
+++ b/pkgs/development/compilers/cudatoolkit/redist/manifests/redistrib_11.7.0.json
@@ -0,0 +1,879 @@
+{
+ "release_date": "2022-05-11",
+ "cuda_cccl": {
+ "name": "CXX Core Compute Libraries",
+ "license": "CUDA Toolkit",
+ "version": "11.7.58",
+ "linux-x86_64": {
+ "relative_path": "cuda_cccl/linux-x86_64/cuda_cccl-linux-x86_64-11.7.58-archive.tar.xz",
+ "sha256": "a66261d174a3f8fea87e0dc91e5cd084dda89be8bb0a1f5ca0ab5d05a93ade4a",
+ "md5": "674edc3ec85126c08f78e4e3280789fd",
+ "size": "1004048"
+ },
+ "linux-ppc64le": {
+ "relative_path": "cuda_cccl/linux-ppc64le/cuda_cccl-linux-ppc64le-11.7.58-archive.tar.xz",
+ "sha256": "5482355647143e61b15cb6193f33a317dce94bb2475123d4b08eebbd7a801802",
+ "md5": "64c9f42b84cb64a7f67645cb74d2153f",
+ "size": "1004332"
+ },
+ "linux-sbsa": {
+ "relative_path": "cuda_cccl/linux-sbsa/cuda_cccl-linux-sbsa-11.7.58-archive.tar.xz",
+ "sha256": "70a8a42135e4ab817cd3c3413dd993bfc7920a42f057838d2a4a2ff0966258bd",
+ "md5": "f6ac243b4b8d182941025040b0c375c3",
+ "size": "1003936"
+ },
+ "windows-x86_64": {
+ "relative_path": "cuda_cccl/windows-x86_64/cuda_cccl-windows-x86_64-11.7.58-archive.zip",
+ "sha256": "29958e300229c7af43df57bed0519f34f3aa64332c84fb80e481c131e4594938",
+ "md5": "3a40e674c975fc35376e66b08b93a42c",
+ "size": "2563581"
+ }
+ },
+ "cuda_cudart": {
+ "name": "CUDA Runtime (cudart)",
+ "license": "CUDA Toolkit",
+ "version": "11.7.60",
+ "linux-x86_64": {
+ "relative_path": "cuda_cudart/linux-x86_64/cuda_cudart-linux-x86_64-11.7.60-archive.tar.xz",
+ "sha256": "1c079add60a107f6dd9e72a0cc9cde03eb9d833506f355c22b9177c47a977552",
+ "md5": "1ef515eb31691f2c43fb0de1443893a3",
+ "size": "854744"
+ },
+ "linux-ppc64le": {
+ "relative_path": "cuda_cudart/linux-ppc64le/cuda_cudart-linux-ppc64le-11.7.60-archive.tar.xz",
+ "sha256": "95ea51eb4d60754a080920105aa578cc8da8772295912f198fcaa13fafce6d24",
+ "md5": "ce9c3ac2d0a25de182e5519354e0e01b",
+ "size": "795244"
+ },
+ "linux-sbsa": {
+ "relative_path": "cuda_cudart/linux-sbsa/cuda_cudart-linux-sbsa-11.7.60-archive.tar.xz",
+ "sha256": "bdfdb8467a0d1a5c6aeb696ec0c203d1da732093b5e5ee0a79b03ef53f5ab622",
+ "md5": "7d6290b6e7a0086c5dbf5706013dfdda",
+ "size": "798208"
+ },
+ "windows-x86_64": {
+ "relative_path": "cuda_cudart/windows-x86_64/cuda_cudart-windows-x86_64-11.7.60-archive.zip",
+ "sha256": "e1c72413c42e9bda52d1868bb67136d66d03b394b9accdfd9224080bb5a9663e",
+ "md5": "bbeee57a158e8ce3abce79b19eae7110",
+ "size": "2884824"
+ }
+ },
+ "cuda_cuobjdump": {
+ "name": "cuobjdump",
+ "license": "CUDA Toolkit",
+ "version": "11.7.50",
+ "linux-x86_64": {
+ "relative_path": "cuda_cuobjdump/linux-x86_64/cuda_cuobjdump-linux-x86_64-11.7.50-archive.tar.xz",
+ "sha256": "f901085d83f83ae549de45e4410c74c3adddd2d541ba2780c23105df39008820",
+ "md5": "76a614c84b7221cc9282a3bf009ca401",
+ "size": "127416"
+ },
+ "linux-ppc64le": {
+ "relative_path": "cuda_cuobjdump/linux-ppc64le/cuda_cuobjdump-linux-ppc64le-11.7.50-archive.tar.xz",
+ "sha256": "2fe257ab7027c7598d1351bb473d6a67a8da81fec17f60b389d16ef076c31da7",
+ "md5": "9ffb04f10fced993411d0601709c80fd",
+ "size": "140924"
+ },
+ "linux-sbsa": {
+ "relative_path": "cuda_cuobjdump/linux-sbsa/cuda_cuobjdump-linux-sbsa-11.7.50-archive.tar.xz",
+ "sha256": "d44352344de0408d175b045401865ab82db4a53f3894e50c01445f42bbebdf8f",
+ "md5": "0b3bb58d13089bea74b3351cd7ed03d2",
+ "size": "123968"
+ },
+ "windows-x86_64": {
+ "relative_path": "cuda_cuobjdump/windows-x86_64/cuda_cuobjdump-windows-x86_64-11.7.50-archive.zip",
+ "sha256": "3e7072d0a09c021252925ff9644d67294793afc5dc55ff2fac291528711ba0f9",
+ "md5": "070b5f13066888c471b90868485767ae",
+ "size": "2523866"
+ }
+ },
+ "cuda_cupti": {
+ "name": "CUPTI",
+ "license": "CUDA Toolkit",
+ "version": "11.7.50",
+ "linux-x86_64": {
+ "relative_path": "cuda_cupti/linux-x86_64/cuda_cupti-linux-x86_64-11.7.50-archive.tar.xz",
+ "sha256": "441f7da2608d1965f0e3e2e03aeea86b0a3454cbea8e7af8112529c9acef3853",
+ "md5": "6433be7629030ddbcf37f5286464bb0d",
+ "size": "16577596"
+ },
+ "linux-ppc64le": {
+ "relative_path": "cuda_cupti/linux-ppc64le/cuda_cupti-linux-ppc64le-11.7.50-archive.tar.xz",
+ "sha256": "df70ad634864572b4eff7ebe15b768d48d909aabddf3b54da05cf7e27442bd8f",
+ "md5": "011ea37fd2f4af0755414c5432ba2649",
+ "size": "8627816"
+ },
+ "linux-sbsa": {
+ "relative_path": "cuda_cupti/linux-sbsa/cuda_cupti-linux-sbsa-11.7.50-archive.tar.xz",
+ "sha256": "4615695d9240a423926238640c69d4b39044acc44d3d513bc08c51f16bea371e",
+ "md5": "53cefdd716d8c40ff7143822341c09b7",
+ "size": "8436580"
+ },
+ "windows-x86_64": {
+ "relative_path": "cuda_cupti/windows-x86_64/cuda_cupti-windows-x86_64-11.7.50-archive.zip",
+ "sha256": "42a04b9ef71e4d95bc235a68dd4a75d1501a44e9964371435994f7a7c59cd489",
+ "md5": "4c61155dc79555ef6b389284a4f7b65a",
+ "size": "11546349"
+ }
+ },
+ "cuda_cuxxfilt": {
+ "name": "CUDA cuxxfilt (demangler)",
+ "license": "CUDA Toolkit",
+ "version": "11.7.50",
+ "linux-x86_64": {
+ "relative_path": "cuda_cuxxfilt/linux-x86_64/cuda_cuxxfilt-linux-x86_64-11.7.50-archive.tar.xz",
+ "sha256": "8a9cb0af698fe39c1b92d179e9ac22e8acb752eb8c531dbfdd049ddcd3c2caa6",
+ "md5": "0f7eb48184c16e51ad76574cc112e01c",
+ "size": "186432"
+ },
+ "linux-ppc64le": {
+ "relative_path": "cuda_cuxxfilt/linux-ppc64le/cuda_cuxxfilt-linux-ppc64le-11.7.50-archive.tar.xz",
+ "sha256": "a2a9a5ace0908071f0bcf4fa1e537c8373d7ef6a18d086d85a2c72cb8dc245b7",
+ "md5": "6be41e32ff0274c1be4cb3b6a6429b21",
+ "size": "181612"
+ },
+ "linux-sbsa": {
+ "relative_path": "cuda_cuxxfilt/linux-sbsa/cuda_cuxxfilt-linux-sbsa-11.7.50-archive.tar.xz",
+ "sha256": "c7c014ec407c77eae16451559a7499c8ff371606abc8e1b40e47eedab8d5a5b8",
+ "md5": "2a7553a48f6c8048d1667c16fec03035",
+ "size": "172292"
+ },
+ "windows-x86_64": {
+ "relative_path": "cuda_cuxxfilt/windows-x86_64/cuda_cuxxfilt-windows-x86_64-11.7.50-archive.zip",
+ "sha256": "e93e1d37332ad5adf663a712250710d03a718f4d85702aec4e24b5bf98e2fe7a",
+ "md5": "f34c83f9a81d0fdae3950a9778442345",
+ "size": "168940"
+ }
+ },
+ "cuda_demo_suite": {
+ "name": "CUDA Demo Suite",
+ "license": "CUDA Toolkit",
+ "version": "11.7.50",
+ "linux-x86_64": {
+ "relative_path": "cuda_demo_suite/linux-x86_64/cuda_demo_suite-linux-x86_64-11.7.50-archive.tar.xz",
+ "sha256": "10dec9f42f7c60ba8d2e839bedf155addb6a02ebf9a3b2b1c7acbcc47e6e4721",
+ "md5": "4501fa48dcf450f1de5e7b0352859dfa",
+ "size": "3985972"
+ },
+ "windows-x86_64": {
+ "relative_path": "cuda_demo_suite/windows-x86_64/cuda_demo_suite-windows-x86_64-11.7.50-archive.zip",
+ "sha256": "803bab94b1b4f304ddba4c2adcc013a1aaf5251f962d154287f6d880cb3f16a1",
+ "md5": "a240da5cbf8ddcbf44ec969a7c57d68d",
+ "size": "5023822"
+ }
+ },
+ "cuda_documentation": {
+ "name": "CUDA Documentation",
+ "license": "CUDA Toolkit",
+ "version": "11.7.50",
+ "linux-x86_64": {
+ "relative_path": "cuda_documentation/linux-x86_64/cuda_documentation-linux-x86_64-11.7.50-archive.tar.xz",
+ "sha256": "90a169f4c1c782cdd1b1bf1e13f3e9f4ef57f731d87d8fefae115b166032a084",
+ "md5": "1d5f61928ed525f7324e1f600719a786",
+ "size": "67056"
+ },
+ "linux-ppc64le": {
+ "relative_path": "cuda_documentation/linux-ppc64le/cuda_documentation-linux-ppc64le-11.7.50-archive.tar.xz",
+ "sha256": "8c799c128afcf870ea63e73b8a33d924d60bc4281ef77c32c92d0081a7d523c8",
+ "md5": "e5f4d0b477f90698adb4919e1341c407",
+ "size": "67060"
+ },
+ "linux-sbsa": {
+ "relative_path": "cuda_documentation/linux-sbsa/cuda_documentation-linux-sbsa-11.7.50-archive.tar.xz",
+ "sha256": "a2f50b49fe31b0637602743a756df16e6ec3dfc95279d4bb25a9eb1f6de3a80b",
+ "md5": "9316169eca11c975157e77e3649f8a1f",
+ "size": "67060"
+ },
+ "windows-x86_64": {
+ "relative_path": "cuda_documentation/windows-x86_64/cuda_documentation-windows-x86_64-11.7.50-archive.zip",
+ "sha256": "2c497e6ca5ffb440d0504adef51d4e979273959d42a6a22b20cd702085b71f39",
+ "md5": "957cde6fd6211919ac4ca823d3cc90e9",
+ "size": "105283"
+ }
+ },
+ "cuda_gdb": {
+ "name": "CUDA GDB",
+ "license": "CUDA Toolkit",
+ "version": "11.7.50",
+ "linux-x86_64": {
+ "relative_path": "cuda_gdb/linux-x86_64/cuda_gdb-linux-x86_64-11.7.50-archive.tar.xz",
+ "sha256": "ff44bffb8034a694ba6a2c5e171fc766ddc6d9e328b29eab8dd02177d6914f6c",
+ "md5": "72b1fa5a914443acc3eeda12da0aa059",
+ "size": "64209508"
+ },
+ "linux-ppc64le": {
+ "relative_path": "cuda_gdb/linux-ppc64le/cuda_gdb-linux-ppc64le-11.7.50-archive.tar.xz",
+ "sha256": "e442ef2eaaa778ffadb6af3ed92316eddff0dff15b69e334338da5f450203f43",
+ "md5": "6a02488128531898f252163a41c84f93",
+ "size": "64109072"
+ },
+ "linux-sbsa": {
+ "relative_path": "cuda_gdb/linux-sbsa/cuda_gdb-linux-sbsa-11.7.50-archive.tar.xz",
+ "sha256": "f67bae946aaa60a57d7b781a2fe044bde267da58c418067d8be6cbb63959966b",
+ "md5": "3a654d775d9b1466ca00585adc179744",
+ "size": "64025944"
+ }
+ },
+ "cuda_memcheck": {
+ "name": "CUDA Memcheck",
+ "license": "CUDA Toolkit",
+ "version": "11.7.50",
+ "linux-x86_64": {
+ "relative_path": "cuda_memcheck/linux-x86_64/cuda_memcheck-linux-x86_64-11.7.50-archive.tar.xz",
+ "sha256": "12fa99422d9a7ce1714e100cc9faa4c9d37590d79d0af93abc8321217cbf5abd",
+ "md5": "5b29092a20eb8501651f64af028623aa",
+ "size": "139652"
+ },
+ "linux-ppc64le": {
+ "relative_path": "cuda_memcheck/linux-ppc64le/cuda_memcheck-linux-ppc64le-11.7.50-archive.tar.xz",
+ "sha256": "3bed410c4fcaf106f1411a9373bb0091ee46a29f2e980eba4ee274710d8e4f19",
+ "md5": "952e68b3e321df1bdc94327ea186603d",
+ "size": "148036"
+ },
+ "windows-x86_64": {
+ "relative_path": "cuda_memcheck/windows-x86_64/cuda_memcheck-windows-x86_64-11.7.50-archive.zip",
+ "sha256": "79294688bdbed786b68873bc02f8a279b6ce7a468486da365642e3c727cedd9e",
+ "md5": "a6512b0c6fe6aa4f81a6027a64110860",
+ "size": "172868"
+ }
+ },
+ "cuda_nsight": {
+ "name": "Nsight Eclipse Edition Plugin",
+ "license": "CUDA Toolkit",
+ "version": "11.7.50",
+ "linux-x86_64": {
+ "relative_path": "cuda_nsight/linux-x86_64/cuda_nsight-linux-x86_64-11.7.50-archive.tar.xz",
+ "sha256": "483a4970a38c9366c2d3bf7d2ea9d2e2486a13ecaa3bd6ed143a4b18a8fe84b9",
+ "md5": "50eaa0de2047b89aa358682c6937a83a",
+ "size": "118603148"
+ },
+ "linux-ppc64le": {
+ "relative_path": "cuda_nsight/linux-ppc64le/cuda_nsight-linux-ppc64le-11.7.50-archive.tar.xz",
+ "sha256": "93ece42ff578135e10cc7d8bfa4c42449f259d955cf1b71652b7436e2f6854f2",
+ "md5": "9e2cfb70f748efcc22c611938099ccbf",
+ "size": "118603136"
+ }
+ },
+ "cuda_nvcc": {
+ "name": "CUDA NVCC",
+ "license": "CUDA Toolkit",
+ "version": "11.7.64",
+ "linux-x86_64": {
+ "relative_path": "cuda_nvcc/linux-x86_64/cuda_nvcc-linux-x86_64-11.7.64-archive.tar.xz",
+ "sha256": "7721fcfa3eb183ecb1d7fe138ce52d8238f0a6ecf1e9964cf8cfe5d8b7ec3c92",
+ "md5": "640e1e412e0ff6d7eee95e513f67cadb",
+ "size": "37056600"
+ },
+ "linux-ppc64le": {
+ "relative_path": "cuda_nvcc/linux-ppc64le/cuda_nvcc-linux-ppc64le-11.7.64-archive.tar.xz",
+ "sha256": "59792975fe7ba2cb75977965a1eebfc684d4e301a34c43f5f4295124d21c097c",
+ "md5": "0f409845cbe3ed70a6abc971024b1d72",
+ "size": "34873208"
+ },
+ "linux-sbsa": {
+ "relative_path": "cuda_nvcc/linux-sbsa/cuda_nvcc-linux-sbsa-11.7.64-archive.tar.xz",
+ "sha256": "4ba91cfcc7b12b997ed2ceced176f6aa1f7c101a65c0ab6faae9a8fee6d107f1",
+ "md5": "a3ef626196d63f7db7c3c62d80564ab3",
+ "size": "32632012"
+ },
+ "windows-x86_64": {
+ "relative_path": "cuda_nvcc/windows-x86_64/cuda_nvcc-windows-x86_64-11.7.64-archive.zip",
+ "sha256": "dcb47e8c04560a369cc6154242afdb29223e8ceaaf6ea6097e2add09ed64d386",
+ "md5": "de3eb321caac960358731fb07c26e2a2",
+ "size": "47659565"
+ }
+ },
+ "cuda_nvdisasm": {
+ "name": "CUDA nvdisasm",
+ "license": "CUDA Toolkit",
+ "version": "11.7.50",
+ "linux-x86_64": {
+ "relative_path": "cuda_nvdisasm/linux-x86_64/cuda_nvdisasm-linux-x86_64-11.7.50-archive.tar.xz",
+ "sha256": "4e22b735b9553a286390dc76b02e5a7f21dc71234852d7f4f8cf2572fef1a479",
+ "md5": "471deeab3bc3ce504c75b77670ad5140",
+ "size": "32776640"
+ },
+ "linux-ppc64le": {
+ "relative_path": "cuda_nvdisasm/linux-ppc64le/cuda_nvdisasm-linux-ppc64le-11.7.50-archive.tar.xz",
+ "sha256": "1111d62bd0baefdf86de2dd148e44815d04c53d66dff2a1f5a700dd6ec32cce5",
+ "md5": "a1ec03d58d37927080425425a820dee8",
+ "size": "32780884"
+ },
+ "linux-sbsa": {
+ "relative_path": "cuda_nvdisasm/linux-sbsa/cuda_nvdisasm-linux-sbsa-11.7.50-archive.tar.xz",
+ "sha256": "3a9ece8dfb6e93c0e9b6da6753c77c9fb815b42ffc91ee710fbc02b421b0d864",
+ "md5": "3e2cb3ff5390077d97d0d847c423d499",
+ "size": "32730316"
+ },
+ "windows-x86_64": {
+ "relative_path": "cuda_nvdisasm/windows-x86_64/cuda_nvdisasm-windows-x86_64-11.7.50-archive.zip",
+ "sha256": "03403fc8ea81178855e5338623700421c91606e71ef8747568554a0ab5b18355",
+ "md5": "03ea5bb697502568d5b9fb9577974cf7",
+ "size": "33004702"
+ }
+ },
+ "cuda_nvml_dev": {
+ "name": "CUDA NVML Headers",
+ "license": "CUDA Toolkit",
+ "version": "11.7.50",
+ "linux-x86_64": {
+ "relative_path": "cuda_nvml_dev/linux-x86_64/cuda_nvml_dev-linux-x86_64-11.7.50-archive.tar.xz",
+ "sha256": "b6f101106e5ed980bf89b2868cf0b32dd36a28c47e879ee70fca1b85de047fba",
+ "md5": "f8c3a8033eda7215cf2a7b0b1325b5f1",
+ "size": "76548"
+ },
+ "linux-ppc64le": {
+ "relative_path": "cuda_nvml_dev/linux-ppc64le/cuda_nvml_dev-linux-ppc64le-11.7.50-archive.tar.xz",
+ "sha256": "a3f4dbeeec6d6eb6562fd4c432c70a5071aa3e0bbf008118a1676079b4bf646f",
+ "md5": "cd92d1a16f3e60e9620320d18c0e5a6a",
+ "size": "76088"
+ },
+ "linux-sbsa": {
+ "relative_path": "cuda_nvml_dev/linux-sbsa/cuda_nvml_dev-linux-sbsa-11.7.50-archive.tar.xz",
+ "sha256": "ddc4d1c7dafa9a05e387048a561ec01cad16e33276358201f8682780e451037d",
+ "md5": "156e76ed54c7547a11fc6a725d212762",
+ "size": "76728"
+ },
+ "windows-x86_64": {
+ "relative_path": "cuda_nvml_dev/windows-x86_64/cuda_nvml_dev-windows-x86_64-11.7.50-archive.zip",
+ "sha256": "f3cea20a5c75dbe341b11c3fabfbafcc2da6d0d60654cdd46960e941e33dca50",
+ "md5": "2d92f9c4ef5dac8253f5e73e6f428251",
+ "size": "106750"
+ }
+ },
+ "cuda_nvprof": {
+ "name": "CUDA nvprof",
+ "license": "CUDA Toolkit",
+ "version": "11.7.50",
+ "linux-x86_64": {
+ "relative_path": "cuda_nvprof/linux-x86_64/cuda_nvprof-linux-x86_64-11.7.50-archive.tar.xz",
+ "sha256": "8222eebaf3fe6ca1e4df6fda09cbd58f11de6d5b80b5596dcf5c5c45ae246028",
+ "md5": "1fa983b921821b0d38dfc7c5b8234d88",
+ "size": "1944796"
+ },
+ "linux-ppc64le": {
+ "relative_path": "cuda_nvprof/linux-ppc64le/cuda_nvprof-linux-ppc64le-11.7.50-archive.tar.xz",
+ "sha256": "dbf2f41b1c42fe05c9ce0865dfefe867c91a22394acfb03606a4de9cbf07f236",
+ "md5": "865a189bcdc7900e55f1a3e545c312da",
+ "size": "1600116"
+ },
+ "linux-sbsa": {
+ "relative_path": "cuda_nvprof/linux-sbsa/cuda_nvprof-linux-sbsa-11.7.50-archive.tar.xz",
+ "sha256": "5894195fdaf1e550601649fdf93aa93fa042bd3e298867cf95007080b10757ac",
+ "md5": "e3e336dd70f215866864131b889a8261",
+ "size": "16148"
+ },
+ "windows-x86_64": {
+ "relative_path": "cuda_nvprof/windows-x86_64/cuda_nvprof-windows-x86_64-11.7.50-archive.zip",
+ "sha256": "3a115b5bc3bf733cb6fe9d414ae5375928ea75fb1f84112b897015434bc4fc25",
+ "md5": "7fc781f7e740bb6a7a45b593fe8c70a0",
+ "size": "1603305"
+ }
+ },
+ "cuda_nvprune": {
+ "name": "CUDA nvprune",
+ "license": "CUDA Toolkit",
+ "version": "11.7.50",
+ "linux-x86_64": {
+ "relative_path": "cuda_nvprune/linux-x86_64/cuda_nvprune-linux-x86_64-11.7.50-archive.tar.xz",
+ "sha256": "b5c13830f910979be229943cefe70297382ba6c1bddba91174d4837a94c7922d",
+ "md5": "d57409d45bd27a917b90e05e78941326",
+ "size": "55220"
+ },
+ "linux-ppc64le": {
+ "relative_path": "cuda_nvprune/linux-ppc64le/cuda_nvprune-linux-ppc64le-11.7.50-archive.tar.xz",
+ "sha256": "ecace952b4b4631fa347f77371de485f7611525773bc90587f4c639cd51362e7",
+ "md5": "5359a59af33523f5d5d58d0bf6cb6b9a",
+ "size": "55928"
+ },
+ "linux-sbsa": {
+ "relative_path": "cuda_nvprune/linux-sbsa/cuda_nvprune-linux-sbsa-11.7.50-archive.tar.xz",
+ "sha256": "dfc069568ca54425a8bb8c674f2d70218546f64a6836fb918d233becff046624",
+ "md5": "6fdc59145fe540946f9e3ea793f09152",
+ "size": "47656"
+ },
+ "windows-x86_64": {
+ "relative_path": "cuda_nvprune/windows-x86_64/cuda_nvprune-windows-x86_64-11.7.50-archive.zip",
+ "sha256": "605aed14b9832712c81cf36acf389a22023a0737604ff3a1cbdd7338b0780ea4",
+ "md5": "3f105e39da981703ab5a95bfeaf112b9",
+ "size": "144827"
+ }
+ },
+ "cuda_nvrtc": {
+ "name": "CUDA NVRTC",
+ "license": "CUDA Toolkit",
+ "version": "11.7.50",
+ "linux-x86_64": {
+ "relative_path": "cuda_nvrtc/linux-x86_64/cuda_nvrtc-linux-x86_64-11.7.50-archive.tar.xz",
+ "sha256": "a0891b98d5d38f6ae64833c483ccf51417e25b54f0242a5872fabc7c96300f3a",
+ "md5": "e1e1bdd085b979196fc87d2d7d20d237",
+ "size": "28103056"
+ },
+ "linux-ppc64le": {
+ "relative_path": "cuda_nvrtc/linux-ppc64le/cuda_nvrtc-linux-ppc64le-11.7.50-archive.tar.xz",
+ "sha256": "b801983bd480b6a75eeb3b4db41a840de66d3f764ca89440e135d62ae249144e",
+ "md5": "f39ef8fbca0ed175a4815b2c4482b676",
+ "size": "26239068"
+ },
+ "linux-sbsa": {
+ "relative_path": "cuda_nvrtc/linux-sbsa/cuda_nvrtc-linux-sbsa-11.7.50-archive.tar.xz",
+ "sha256": "5d4788a5b3c06d88179824976c8e5e7c76683dfe3bd1e5634ac2037de62b385f",
+ "md5": "609d991b06e17e9f0a85c6e93bbf052b",
+ "size": "26084572"
+ },
+ "windows-x86_64": {
+ "relative_path": "cuda_nvrtc/windows-x86_64/cuda_nvrtc-windows-x86_64-11.7.50-archive.zip",
+ "sha256": "252ae0cd65b1b73208454966f91239d0e8f11232de966c41d8cf3009fe402415",
+ "md5": "6476681ad45cfd18e7cc3f5b16c9111b",
+ "size": "93548358"
+ }
+ },
+ "cuda_nvtx": {
+ "name": "CUDA NVTX",
+ "license": "CUDA Toolkit",
+ "version": "11.7.50",
+ "linux-x86_64": {
+ "relative_path": "cuda_nvtx/linux-x86_64/cuda_nvtx-linux-x86_64-11.7.50-archive.tar.xz",
+ "sha256": "b90454efe80e4fcd328e6250279e4392a01db9035c7317355760c66048899568",
+ "md5": "b14a508a57f1311321b6cb552fde7a9f",
+ "size": "48176"
+ },
+ "linux-ppc64le": {
+ "relative_path": "cuda_nvtx/linux-ppc64le/cuda_nvtx-linux-ppc64le-11.7.50-archive.tar.xz",
+ "sha256": "3dc37a91b9a7769d4ab329d99d8779b7f6feaae63e8fc69d7d5da284cb82efe9",
+ "md5": "eae8b204b8af373dc52ec1cad399dce5",
+ "size": "48156"
+ },
+ "linux-sbsa": {
+ "relative_path": "cuda_nvtx/linux-sbsa/cuda_nvtx-linux-sbsa-11.7.50-archive.tar.xz",
+ "sha256": "b803160fe20715c23a6266849d2a23d298fe7c7e427ec77aca9121d667526441",
+ "md5": "5262caba03904cf79884266f30962f8b",
+ "size": "48768"
+ },
+ "windows-x86_64": {
+ "relative_path": "cuda_nvtx/windows-x86_64/cuda_nvtx-windows-x86_64-11.7.50-archive.zip",
+ "sha256": "cec2aabca78c95a2d6c793372684b060fc695035f568225fd735880331d71e25",
+ "md5": "27b8357312c82ee327b3ec86cb2cecec",
+ "size": "65690"
+ }
+ },
+ "cuda_nvvp": {
+ "name": "CUDA NVVP",
+ "license": "CUDA Toolkit",
+ "version": "11.7.50",
+ "linux-x86_64": {
+ "relative_path": "cuda_nvvp/linux-x86_64/cuda_nvvp-linux-x86_64-11.7.50-archive.tar.xz",
+ "sha256": "6489169df1a4f37cba0c00c3c0e24ac6265bfe06fcca1d4bf3f5824bc937ef9f",
+ "md5": "94951715e2f099553ddd57f40ab4f06c",
+ "size": "117571592"
+ },
+ "linux-ppc64le": {
+ "relative_path": "cuda_nvvp/linux-ppc64le/cuda_nvvp-linux-ppc64le-11.7.50-archive.tar.xz",
+ "sha256": "b54fa7fc79788f991332139ecf722cc834b544d111f476531a3db82b8c15c2b0",
+ "md5": "ece4a0e7524037f64cd81a9a6c85db0c",
+ "size": "117008156"
+ },
+ "windows-x86_64": {
+ "relative_path": "cuda_nvvp/windows-x86_64/cuda_nvvp-windows-x86_64-11.7.50-archive.zip",
+ "sha256": "8b8ddaca9958a58a78f7f50f87ecee3ecb148fe99b0cce6ed37e3ba0ecb6d14f",
+ "md5": "6880ab3d2ae9526e6d5a376fb24dea8e",
+ "size": "120360546"
+ }
+ },
+ "cuda_sanitizer_api": {
+ "name": "CUDA Compute Sanitizer API",
+ "license": "CUDA Toolkit",
+ "version": "11.7.50",
+ "linux-x86_64": {
+ "relative_path": "cuda_sanitizer_api/linux-x86_64/cuda_sanitizer_api-linux-x86_64-11.7.50-archive.tar.xz",
+ "sha256": "9555ae397290608c7a64c929fc80186860008cc8c4afb0bd49deece3a5ca2fc4",
+ "md5": "6b5910c5096decaa4b5c30f3bff3df38",
+ "size": "8314100"
+ },
+ "linux-ppc64le": {
+ "relative_path": "cuda_sanitizer_api/linux-ppc64le/cuda_sanitizer_api-linux-ppc64le-11.7.50-archive.tar.xz",
+ "sha256": "f303a56fd501ce13aa7f12c03137fefd823899b19c26ab53cd314baf47b9b3c7",
+ "md5": "6dc14023de7354aa6f17b833d3adf89e",
+ "size": "7739868"
+ },
+ "linux-sbsa": {
+ "relative_path": "cuda_sanitizer_api/linux-sbsa/cuda_sanitizer_api-linux-sbsa-11.7.50-archive.tar.xz",
+ "sha256": "14c5ffde6606c97a92b7e72dd0987509c3fe876ad57bfe3a88d2b897125a442e",
+ "md5": "84fd52cea0512e63d95ebf62038137f0",
+ "size": "6453516"
+ },
+ "windows-x86_64": {
+ "relative_path": "cuda_sanitizer_api/windows-x86_64/cuda_sanitizer_api-windows-x86_64-11.7.50-archive.zip",
+ "sha256": "090f657396b35d749f0f755b684151d274ae3f392790055f3b659daeee068622",
+ "md5": "685f72ea969afbbebeaba721310618ed",
+ "size": "13477221"
+ }
+ },
+ "fabricmanager": {
+ "name": "NVIDIA Fabric Manager",
+ "license": "NVIDIA Driver",
+ "version": "515.43.04",
+ "linux-x86_64": {
+ "relative_path": "fabricmanager/linux-x86_64/fabricmanager-linux-x86_64-515.43.04-archive.tar.xz",
+ "sha256": "2f4bce4620ce69683428d1752464adcaef466fc471d82618e28d554c7591efe6",
+ "md5": "3dfc3ea1f13a346cfc155c09d80fb48c",
+ "size": "1470572"
+ },
+ "linux-sbsa": {
+ "relative_path": "fabricmanager/linux-sbsa/fabricmanager-linux-sbsa-515.43.04-archive.tar.xz",
+ "sha256": "eb5cda2505cb5fcc3508ab84e8703d9cf318e0df5c2e5b0a832b4fa243b88bea",
+ "md5": "6fd2d3c94b8ccb826d4986fa970261f1",
+ "size": "1358156"
+ }
+ },
+ "libcublas": {
+ "name": "CUDA cuBLAS",
+ "license": "CUDA Toolkit",
+ "version": "11.10.1.25",
+ "linux-x86_64": {
+ "relative_path": "libcublas/linux-x86_64/libcublas-linux-x86_64-11.10.1.25-archive.tar.xz",
+ "sha256": "27f5975b0b373f5fc96ac2f4ec9f28de3eb07f674acc0b0a5262dd2c76ddc5ff",
+ "md5": "f183769621c14cd447bb50fa51088c7b",
+ "size": "432986132"
+ },
+ "linux-ppc64le": {
+ "relative_path": "libcublas/linux-ppc64le/libcublas-linux-ppc64le-11.10.1.25-archive.tar.xz",
+ "sha256": "85aa62b4c23f42f28bc428e84604b4dcb04960db1926c8c2216d5747f0366ab1",
+ "md5": "ca6ce43480df02cd6e5b96e416a02e64",
+ "size": "422295044"
+ },
+ "linux-sbsa": {
+ "relative_path": "libcublas/linux-sbsa/libcublas-linux-sbsa-11.10.1.25-archive.tar.xz",
+ "sha256": "76c50490afd19dc5fdab31281380e0d1a7217dfebecb31477e78e452cac4e0a6",
+ "md5": "748bd159248469f80f67edd4028ac2dd",
+ "size": "422563144"
+ },
+ "windows-x86_64": {
+ "relative_path": "libcublas/windows-x86_64/libcublas-windows-x86_64-11.10.1.25-archive.zip",
+ "sha256": "d1b47527b0fc33f1b185af38590a1d5d7d04c0c71c74c19a488547f9c0a62e7c",
+ "md5": "989c46ebd961d177f8bc2ba0a03955b7",
+ "size": "311249638"
+ }
+ },
+ "libcufft": {
+ "name": "CUDA cuFFT",
+ "license": "CUDA Toolkit",
+ "version": "10.7.2.50",
+ "linux-x86_64": {
+ "relative_path": "libcufft/linux-x86_64/libcufft-linux-x86_64-10.7.2.50-archive.tar.xz",
+ "sha256": "70c4c2abb9d77210a5d2313abfdddf1857d654d1cf925946a645793bc14714c5",
+ "md5": "fe80583fbf4ce9195db760dc9465da2f",
+ "size": "213404700"
+ },
+ "linux-ppc64le": {
+ "relative_path": "libcufft/linux-ppc64le/libcufft-linux-ppc64le-10.7.2.50-archive.tar.xz",
+ "sha256": "f229818bfee4d90aa4a9022a00d26efa749fdb4f61af1ba47b65a9f8dffd1521",
+ "md5": "66768c4e73bd0402be32486ef9ff4952",
+ "size": "213735112"
+ },
+ "linux-sbsa": {
+ "relative_path": "libcufft/linux-sbsa/libcufft-linux-sbsa-10.7.2.50-archive.tar.xz",
+ "sha256": "9aaeae3c1a53ee4cc17c05557f2e30b65581d5d590130d5e205193beceed345d",
+ "md5": "967617dbb350fdd19771bea836e68744",
+ "size": "212335968"
+ },
+ "windows-x86_64": {
+ "relative_path": "libcufft/windows-x86_64/libcufft-windows-x86_64-10.7.2.50-archive.zip",
+ "sha256": "931f380e666dd8dc44b72fb79224c27c720d37310312e9e421e71f16a5e312e1",
+ "md5": "24eb68afe151ab2d7a2c787aeb382d9a",
+ "size": "287120306"
+ }
+ },
+ "libcufile": {
+ "name": "CUDA cuFile",
+ "license": "CUDA Toolkit",
+ "version": "1.3.0.44",
+ "linux-x86_64": {
+ "relative_path": "libcufile/linux-x86_64/libcufile-linux-x86_64-1.3.0.44-archive.tar.xz",
+ "sha256": "2a0a9102596c84afa9afed014fee73630a534ceaef2857c43646f6c9ffba2b95",
+ "md5": "1bacdbc9a48e4e188dfffe15ab062358",
+ "size": "46784140"
+ }
+ },
+ "libcurand": {
+ "name": "CUDA cuRAND",
+ "license": "CUDA Toolkit",
+ "version": "10.2.10.50",
+ "linux-x86_64": {
+ "relative_path": "libcurand/linux-x86_64/libcurand-linux-x86_64-10.2.10.50-archive.tar.xz",
+ "sha256": "a05411f1775d5783800b71f6b43fae660e3baf900ae07efb853e615116ee479b",
+ "md5": "a9f272f6683a79c7b8fa02ae1149f3ad",
+ "size": "82110640"
+ },
+ "linux-ppc64le": {
+ "relative_path": "libcurand/linux-ppc64le/libcurand-linux-ppc64le-10.2.10.50-archive.tar.xz",
+ "sha256": "4c9bc79ab38c3aca8081ea4fcd05876742657659f640c87f7af2a00f4f968787",
+ "md5": "6c714d6725554dd57265812c7a721454",
+ "size": "82156504"
+ },
+ "linux-sbsa": {
+ "relative_path": "libcurand/linux-sbsa/libcurand-linux-sbsa-10.2.10.50-archive.tar.xz",
+ "sha256": "78577951e086501bb9222a55a07bd271dceae5fecdce17625bc453db549e96eb",
+ "md5": "911370c7ba791366d281e4ff62daa2b4",
+ "size": "82100856"
+ },
+ "windows-x86_64": {
+ "relative_path": "libcurand/windows-x86_64/libcurand-windows-x86_64-10.2.10.50-archive.zip",
+ "sha256": "c96a539a76e6062222e66abde64ca19ff6d89729af81a0efc157ba50277edfa9",
+ "md5": "6afa80c834b57ab398708e735b564592",
+ "size": "53656547"
+ }
+ },
+ "libcusolver": {
+ "name": "CUDA cuSOLVER",
+ "license": "CUDA Toolkit",
+ "version": "11.3.5.50",
+ "linux-x86_64": {
+ "relative_path": "libcusolver/linux-x86_64/libcusolver-linux-x86_64-11.3.5.50-archive.tar.xz",
+ "sha256": "7ed168c7fda04a4a640f6225cb76d5251a39e3d35db7630d3646cec58de724f8",
+ "md5": "cc6b0e4d97d7d73f302095cda1499167",
+ "size": "80742472"
+ },
+ "linux-ppc64le": {
+ "relative_path": "libcusolver/linux-ppc64le/libcusolver-linux-ppc64le-11.3.5.50-archive.tar.xz",
+ "sha256": "341889b3c3107f7e3700693fcf815f816a8ffdfc6f2a1ca0f132ea651cb51739",
+ "md5": "0f038f45a4d5195d771d812ba47a34fa",
+ "size": "80769552"
+ },
+ "linux-sbsa": {
+ "relative_path": "libcusolver/linux-sbsa/libcusolver-linux-sbsa-11.3.5.50-archive.tar.xz",
+ "sha256": "4832fd6dca50b2b05d07f086eaa44f953e9b1cd0f00b083f780e0ee1c17461db",
+ "md5": "a7361cc09dc63a6dee54937a12a8004b",
+ "size": "79972404"
+ },
+ "windows-x86_64": {
+ "relative_path": "libcusolver/windows-x86_64/libcusolver-windows-x86_64-11.3.5.50-archive.zip",
+ "sha256": "918a8ed855ef683fa2b4f38e50e8275246b48c266e1066fdcf2bf6db16c9fc6a",
+ "md5": "68c75bd8d556a24d6d204e8007eb1f38",
+ "size": "111712983"
+ }
+ },
+ "libcusparse": {
+ "name": "CUDA cuSPARSE",
+ "license": "CUDA Toolkit",
+ "version": "11.7.3.50",
+ "linux-x86_64": {
+ "relative_path": "libcusparse/linux-x86_64/libcusparse-linux-x86_64-11.7.3.50-archive.tar.xz",
+ "sha256": "c56ddd2d4deebb02bf1e082905f13cac7c685bfa415f1c489dd5fe382cf1f5de",
+ "md5": "04a62c2f92bc0608989bd82b4034d91f",
+ "size": "199048536"
+ },
+ "linux-ppc64le": {
+ "relative_path": "libcusparse/linux-ppc64le/libcusparse-linux-ppc64le-11.7.3.50-archive.tar.xz",
+ "sha256": "d756707e6c84c9ae4b174467d8afba10883f8f286aba26a9230698b73fd187e3",
+ "md5": "bf56661d346440de2242530fed4027b9",
+ "size": "199115552"
+ },
+ "linux-sbsa": {
+ "relative_path": "libcusparse/linux-sbsa/libcusparse-linux-sbsa-11.7.3.50-archive.tar.xz",
+ "sha256": "e2f8a0339739c3d7aa163d98452dcf3e6b71b164d7ff5b999dd35af31d950bc4",
+ "md5": "21ae0da8af1b60bb0e9f658c16730300",
+ "size": "198793236"
+ },
+ "windows-x86_64": {
+ "relative_path": "libcusparse/windows-x86_64/libcusparse-windows-x86_64-11.7.3.50-archive.zip",
+ "sha256": "e7044f4cbce8712f407d041f2116cf61a8831e21d96f28c4c9ca8512847afc28",
+ "md5": "b20eef48a3a956b8643eb7cf457764b9",
+ "size": "167174067"
+ }
+ },
+ "libnpp": {
+ "name": "CUDA NPP",
+ "license": "CUDA Toolkit",
+ "version": "11.7.3.21",
+ "linux-x86_64": {
+ "relative_path": "libnpp/linux-x86_64/libnpp-linux-x86_64-11.7.3.21-archive.tar.xz",
+ "sha256": "4d5f12e756304828cdbbe67dfa94a75432ee07cfe11f034aa4325e59e3c708f7",
+ "md5": "9c7ba42831e40f15b5b94543c659a74b",
+ "size": "164601168"
+ },
+ "linux-ppc64le": {
+ "relative_path": "libnpp/linux-ppc64le/libnpp-linux-ppc64le-11.7.3.21-archive.tar.xz",
+ "sha256": "e3064176e6e0843e5f2d1bd247512be76ca3018364fd7bf77fec34b0bfae37a2",
+ "md5": "4106d95423169f59b5af3bbe3a9e38bf",
+ "size": "164864392"
+ },
+ "linux-sbsa": {
+ "relative_path": "libnpp/linux-sbsa/libnpp-linux-sbsa-11.7.3.21-archive.tar.xz",
+ "sha256": "9cb63cd9d79a490a2504dbf8186d35d391d3e69f74353784955d33d550c83010",
+ "md5": "d5780f7e9a1ba1c3441f810fad68fc32",
+ "size": "163688528"
+ },
+ "windows-x86_64": {
+ "relative_path": "libnpp/windows-x86_64/libnpp-windows-x86_64-11.7.3.21-archive.zip",
+ "sha256": "490a171c6db5e42f67502c0774678166f8018fe464f7e6c8a7b47e10c9fa3861",
+ "md5": "db863d019ff3029a9a14855ff85f6958",
+ "size": "125480452"
+ }
+ },
+ "libnvidia_nscq": {
+ "name": "NVIDIA NSCQ API",
+ "license": "NVIDIA Driver",
+ "version": "515.43.04",
+ "linux-x86_64": {
+ "relative_path": "libnvidia_nscq/linux-x86_64/libnvidia_nscq-linux-x86_64-515.43.04-archive.tar.xz",
+ "sha256": "b0690b271e65cc2096a0de15aa7003c64e336bc5f4c48a7fc87a9b355d240e2a",
+ "md5": "03edfd4d08b358ec3cc98cef63e5138c",
+ "size": "334904"
+ }
+ },
+ "libnvjpeg": {
+ "name": "CUDA nvJPEG",
+ "license": "CUDA Toolkit",
+ "version": "11.7.2.34",
+ "linux-x86_64": {
+ "relative_path": "libnvjpeg/linux-x86_64/libnvjpeg-linux-x86_64-11.7.2.34-archive.tar.xz",
+ "sha256": "0457a11af6903d63aec942e2884e02002c3d579071eacd89f08a25cab339f5eb",
+ "md5": "d6acf73e518edb33c4b7e7f3cb85aa46",
+ "size": "2042120"
+ },
+ "linux-ppc64le": {
+ "relative_path": "libnvjpeg/linux-ppc64le/libnvjpeg-linux-ppc64le-11.7.2.34-archive.tar.xz",
+ "sha256": "70afb2d27b430dd4c43f1dc342e8725d148701093cdebc68a75d6dbaf6615d3f",
+ "md5": "acdf6594c58b6178cf0d83948e8c69b5",
+ "size": "2060012"
+ },
+ "linux-sbsa": {
+ "relative_path": "libnvjpeg/linux-sbsa/libnvjpeg-linux-sbsa-11.7.2.34-archive.tar.xz",
+ "sha256": "8638f70021ad0e9006ec78c0b4f88f787e9d7862176447288f84a2b7d68769f2",
+ "md5": "e3d6b429ab22b4c16476df2f936e46ba",
+ "size": "1893316"
+ },
+ "windows-x86_64": {
+ "relative_path": "libnvjpeg/windows-x86_64/libnvjpeg-windows-x86_64-11.7.2.34-archive.zip",
+ "sha256": "a3594ff7a5431495bc70763c2578ade0a32c74745803b820e49ef52cca2a872b",
+ "md5": "c4c259d4b7833e6cbe1505bf6b62229d",
+ "size": "2055730"
+ }
+ },
+ "nsight_compute": {
+ "name": "Nsight Compute",
+ "license": "NVIDIA SLA",
+ "version": "2022.2.0.13",
+ "linux-x86_64": {
+ "relative_path": "nsight_compute/linux-x86_64/nsight_compute-linux-x86_64-2022.2.0.13-archive.tar.xz",
+ "sha256": "426949d42646164b884ee3025bd5e6b6fef8e904ed69705b7cf3cab9af1fc531",
+ "md5": "0f5700c465c92210a1eadea199b9e07a",
+ "size": "420951860"
+ },
+ "linux-ppc64le": {
+ "relative_path": "nsight_compute/linux-ppc64le/nsight_compute-linux-ppc64le-2022.2.0.13-archive.tar.xz",
+ "sha256": "42c090ffe500b3a6c54c60a17b4f4856d230c558642841edb2b7bb725438be8c",
+ "md5": "ee1f8f57b827862c36bc6807e9a38424",
+ "size": "126737380"
+ },
+ "linux-sbsa": {
+ "relative_path": "nsight_compute/linux-sbsa/nsight_compute-linux-sbsa-2022.2.0.13-archive.tar.xz",
+ "sha256": "4a442d5b6d0b599669ae30d342f46a0c8d047b3a7476b4419435dfe7187e23b8",
+ "md5": "11eec62f941d071b9f7c46855cc75a0b",
+ "size": "246004808"
+ },
+ "windows-x86_64": {
+ "relative_path": "nsight_compute/windows-x86_64/nsight_compute-windows-x86_64-2022.2.0.13-archive.zip",
+ "sha256": "1f06f2d769c9c61c691c59f8c33f214aae6514d41f3eac5073c9310b7b487764",
+ "md5": "c2eb253d66b9258babc1bf9471033691",
+ "size": "354364680"
+ }
+ },
+ "nsight_nvtx": {
+ "name": "Nsight NVTX",
+ "license": "CUDA Toolkit",
+ "version": "1.21018621",
+ "windows-x86_64": {
+ "relative_path": "nsight_nvtx/windows-x86_64/nsight_nvtx-windows-x86_64-1.21018621-archive.zip",
+ "sha256": "d99b015bfb1308206f9d7c16ea401bf426fed3a5a99953b855fe4e68be5ed2d1",
+ "md5": "34ee04d45cfca1c4e3cbfba0ec8f6f80",
+ "size": "315692"
+ }
+ },
+ "nsight_systems": {
+ "name": "Nsight Systems",
+ "license": "NVIDIA SLA",
+ "version": "2022.1.3.3",
+ "linux-x86_64": {
+ "relative_path": "nsight_systems/linux-x86_64/nsight_systems-linux-x86_64-2022.1.3.3-archive.tar.xz",
+ "sha256": "bd95553d573f117be2e3b2bda6e79d14dbb038b136c12c6e5467bbd9a891681d",
+ "md5": "40d12d33aa2d496817d959a9551418aa",
+ "size": "166785296"
+ },
+ "linux-ppc64le": {
+ "relative_path": "nsight_systems/linux-ppc64le/nsight_systems-linux-ppc64le-2022.1.3.3-archive.tar.xz",
+ "sha256": "4c228bfbd38b80612afeb65a406cba829d2b2e2352ea4a810cd6a386d6190151",
+ "md5": "0d5da67cb5393a0e961509cd7dab98f1",
+ "size": "49700384"
+ },
+ "linux-sbsa": {
+ "relative_path": "nsight_systems/linux-sbsa/nsight_systems-linux-sbsa-2022.1.3.3-archive.tar.xz",
+ "sha256": "9025f56b9fe70288ee3f2d30477c9cfbe8c17a304b31f7f22caf7f78153d8d23",
+ "md5": "3559eeb8416d9a984012d2b397560740",
+ "size": "50415564"
+ },
+ "windows-x86_64": {
+ "relative_path": "nsight_systems/windows-x86_64/nsight_systems-windows-x86_64-2022.1.3.3-archive.zip",
+ "sha256": "294738ba0aa0621395740a6d039a490aa0bf5fceec449b1fd4135a97b81eda0f",
+ "md5": "91e316744714c168c1a75804c9a198c9",
+ "size": "315748009"
+ }
+ },
+ "nsight_vse": {
+ "name": "Nsight Visual Studio Edition (VSE)",
+ "license": "NVIDIA SLA",
+ "version": "2022.2.0.22095",
+ "windows-x86_64": {
+ "relative_path": "nsight_vse/windows-x86_64/nsight_vse-windows-x86_64-2022.2.0.22095-archive.zip",
+ "sha256": "b346aadf59d633b114b5e5b3ed437f8eee2bb2b8d532da0ee374ef8af9149cb2",
+ "md5": "63d3a5f0c9abaa027efbe0f476dc7c21",
+ "size": "459001482"
+ }
+ },
+ "nvidia_driver": {
+ "name": "NVIDIA Linux Driver",
+ "license": "NVIDIA Driver",
+ "version": "515.43.04",
+ "linux-x86_64": {
+ "relative_path": "nvidia_driver/linux-x86_64/nvidia_driver-linux-x86_64-515.43.04-archive.tar.xz",
+ "sha256": "933ffd8f73e86e78299daf0b8612f8c24fe4b55cc15c2be353fbfbda3f1d62ea",
+ "md5": "19cf2b2e3d3f6f7786791db89e3a193a",
+ "size": "361628336"
+ },
+ "linux-ppc64le": {
+ "relative_path": "nvidia_driver/linux-ppc64le/nvidia_driver-linux-ppc64le-515.43.04-archive.tar.xz",
+ "sha256": "369998c33a867945193cc3c1c3c78defa7c0309767d926bc871cc02ad659ed61",
+ "md5": "486f222d765d7ce5163d257a4b0e5420",
+ "size": "75667264"
+ },
+ "linux-sbsa": {
+ "relative_path": "nvidia_driver/linux-sbsa/nvidia_driver-linux-sbsa-515.43.04-archive.tar.xz",
+ "sha256": "a534d8112bc15deb5f0e1c471382d776f4daebef25244869eaf5c935016b8fb7",
+ "md5": "5e699844a414a6f40e8c1399dd0f4c9d",
+ "size": "221246660"
+ }
+ },
+ "nvidia_fs": {
+ "name": "NVIDIA filesystem",
+ "license": "CUDA Toolkit",
+ "version": "2.12.4",
+ "linux-x86_64": {
+ "relative_path": "nvidia_fs/linux-x86_64/nvidia_fs-linux-x86_64-2.12.4-archive.tar.xz",
+ "sha256": "913010942a7b6781a9e8fb8082654fda7ad0cce703f726e05d571fe6551f450a",
+ "md5": "48d30f73ec1b6c8df7e70139aefeec4e",
+ "size": "67152"
+ }
+ },
+ "visual_studio_integration": {
+ "name": "CUDA Visual Studio Integration",
+ "license": "CUDA Toolkit",
+ "version": "11.7.50",
+ "windows-x86_64": {
+ "relative_path": "visual_studio_integration/windows-x86_64/visual_studio_integration-windows-x86_64-11.7.50-archive.zip",
+ "sha256": "4eb993cfb46ec925b6907f1433102ae00f0141e57bcfd40489eeaf72e67f0eeb",
+ "md5": "d770d51465dc15345a1ca1307e269832",
+ "size": "517028"
+ }
+ }
+}
diff --git a/pkgs/development/compilers/cudatoolkit/redist/overrides.nix b/pkgs/development/compilers/cudatoolkit/redist/overrides.nix
index 588f2f2a0867..bcf16db6e12e 100644
--- a/pkgs/development/compilers/cudatoolkit/redist/overrides.nix
+++ b/pkgs/development/compilers/cudatoolkit/redist/overrides.nix
@@ -37,8 +37,14 @@ in (lib.filterAttrs (attr: _: (prev ? "${attr}")) {
];
nsight_compute = prev.nsight_compute.overrideAttrs (oldAttrs: {
- nativeBuildInputs = oldAttrs.nativeBuildInputs ++ [ pkgs.qt5.wrapQtAppsHook ];
- buildInputs = oldAttrs.buildInputs ++ [ pkgs.libsForQt5.qt5.qtwebview ];
+ nativeBuildInputs = oldAttrs.nativeBuildInputs
+ ++ (if (lib.versionOlder prev.nsight_compute.version "2022.2.0")
+ then [ pkgs.qt5.wrapQtAppsHook ]
+ else [ pkgs.qt6.wrapQtAppsHook ]);
+ buildInputs = oldAttrs.buildInputs
+ ++ (if (lib.versionOlder prev.nsight_compute.version "2022.2.0")
+ then [ pkgs.qt5.qtwebview ]
+ else [ pkgs.qt6.qtwebview ]);
});
nsight_systems = prev.nsight_systems.overrideAttrs (oldAttrs: {
diff --git a/pkgs/development/compilers/cudatoolkit/versions.toml b/pkgs/development/compilers/cudatoolkit/versions.toml
index 46173cca12cd..51b79ca97be6 100644
--- a/pkgs/development/compilers/cudatoolkit/versions.toml
+++ b/pkgs/development/compilers/cudatoolkit/versions.toml
@@ -59,3 +59,9 @@ version = "11.6.1"
url = "https://developer.download.nvidia.com/compute/cuda/11.6.1/local_installers/cuda_11.6.1_510.47.03_linux.run"
sha256 = "sha256-qyGa/OALdCABEyaYZvv/derQN7z8I1UagzjCaEyYTX4="
gcc = "gcc11"
+
+["11.7"]
+version = "11.7.0"
+url = "https://developer.download.nvidia.com/compute/cuda/11.7.0/local_installers/cuda_11.7.0_515.43.04_linux.run"
+sha256 = "sha256-CH/fy7ofeVQ7H3jkOo39rF9tskLQQt3oIOFtwYWJLyY="
+gcc = "gcc11"
diff --git a/pkgs/development/compilers/dotnet/build-dotnet.nix b/pkgs/development/compilers/dotnet/build-dotnet.nix
index b61adce0ad1d..69f770900fdd 100644
--- a/pkgs/development/compilers/dotnet/build-dotnet.nix
+++ b/pkgs/development/compilers/dotnet/build-dotnet.nix
@@ -72,9 +72,16 @@ stdenv.mkDerivation (finalAttrs: rec {
installPhase = ''
runHook preInstall
+
mkdir -p $out/bin
cp -r ./ $out
+
+ mkdir -p $out/share/doc/$pname/$version
+ mv $out/LICENSE.txt $out/share/doc/$pname/$version/
+ mv $out/ThirdPartyNotices.txt $out/share/doc/$pname/$version/
+
ln -s $out/dotnet $out/bin/dotnet
+
runHook postInstall
'';
diff --git a/pkgs/development/compilers/go/1.19.nix b/pkgs/development/compilers/go/1.19.nix
index 34d4c0d9d2c2..0017bd8c482c 100644
--- a/pkgs/development/compilers/go/1.19.nix
+++ b/pkgs/development/compilers/go/1.19.nix
@@ -45,11 +45,11 @@ let
in
stdenv.mkDerivation rec {
pname = "go";
- version = "1.19.1";
+ version = "1.19.2";
src = fetchurl {
url = "https://go.dev/dl/go${version}.src.tar.gz";
- sha256 = "sha256-J4cbqkkPNAFBSteT+6SQhvbIVbHFhDhe13ceEgTH4Xk=";
+ sha256 = "sha256-LOkw1wqTHeZg/a8nHXAZJ5OxskAnJkW/AnV3n2cE32s=";
};
strictDeps = true;
diff --git a/pkgs/development/compilers/llvm/14/lldb/default.nix b/pkgs/development/compilers/llvm/14/lldb/default.nix
index fdfb550c2802..dade90cc4668 100644
--- a/pkgs/development/compilers/llvm/14/lldb/default.nix
+++ b/pkgs/development/compilers/llvm/14/lldb/default.nix
@@ -21,6 +21,7 @@
, lit
, makeWrapper
, enableManpages ? false
+, lua5_3
}:
stdenv.mkDerivation (rec {
@@ -48,7 +49,7 @@ stdenv.mkDerivation (rec {
outputs = [ "out" "lib" "dev" ];
nativeBuildInputs = [
- cmake python3 which swig lit makeWrapper
+ cmake python3 which swig lit makeWrapper lua5_3
] ++ lib.optionals enableManpages [
python3.pkgs.sphinx python3.pkgs.recommonmark
];
diff --git a/pkgs/development/compilers/llvm/git/lldb/default.nix b/pkgs/development/compilers/llvm/git/lldb/default.nix
index a2c68b224775..6e6fe5cf0671 100644
--- a/pkgs/development/compilers/llvm/git/lldb/default.nix
+++ b/pkgs/development/compilers/llvm/git/lldb/default.nix
@@ -21,6 +21,7 @@
, lit
, makeWrapper
, enableManpages ? false
+, lua5_3
}:
stdenv.mkDerivation (rec {
@@ -48,7 +49,7 @@ stdenv.mkDerivation (rec {
outputs = [ "out" "lib" "dev" ];
nativeBuildInputs = [
- cmake python3 which swig lit makeWrapper
+ cmake python3 which swig lit makeWrapper lua5_3
] ++ lib.optionals enableManpages [
python3.pkgs.sphinx python3.pkgs.recommonmark
];
diff --git a/pkgs/development/coq-modules/category-theory/default.nix b/pkgs/development/coq-modules/category-theory/default.nix
index 7cff9ddef4b9..97feac90c3bd 100644
--- a/pkgs/development/coq-modules/category-theory/default.nix
+++ b/pkgs/development/coq-modules/category-theory/default.nix
@@ -5,6 +5,7 @@ with lib; mkCoqDerivation {
pname = "category-theory";
owner = "jwiegley";
+ release."1.0.0".sha256 = "sha256-qPgho4/VcL3vyMPJAMXXdqhYPEbNeXSZsoWbA/lGek4=";
release."20211213".rev = "449e30e929d56f6f90c22af2c91ffcc4d79837be";
release."20211213".sha256 = "sha256:0vgfmph5l1zn6j4b851rcm43s8y9r83swsz07rpzhmfg34pk0nl0";
release."20210730".rev = "d87937faaf7460bcd6985931ac36f551d67e11af";
@@ -16,6 +17,7 @@ with lib; mkCoqDerivation {
inherit version;
defaultVersion = with versions; switch coq.coq-version [
+ { case = range "8.14" "8.16"; out = "1.0.0"; }
{ case = range "8.10" "8.15"; out = "20211213"; }
{ case = range "8.8" "8.9"; out = "20190414"; }
{ case = range "8.6" "8.7"; out = "20180709"; }
diff --git a/pkgs/development/coq-modules/mathcomp-word/default.nix b/pkgs/development/coq-modules/mathcomp-word/default.nix
index 69735c801edd..5f34434b50f9 100644
--- a/pkgs/development/coq-modules/mathcomp-word/default.nix
+++ b/pkgs/development/coq-modules/mathcomp-word/default.nix
@@ -10,12 +10,13 @@ mkCoqDerivation {
releaseRev = v: "v${v}";
+ release."2.0".sha256 = "sha256-x9AEFadlYiIIOxAhjv4Vc/dxdRZC7AdWQ6AByvLOFDk=";
release."1.1".sha256 = "sha256:0jb28vgkr4xpg9d6k85rq7abpx5ch612iw9ps5w8q80q1jpjlc4z";
release."1.0".sha256 = "sha256:0703m97rnivcbc7vvbd9rl2dxs6l8n52cbykynw61c6w9rhxspcg";
inherit version;
defaultVersion = with versions; switch [ coq.version mathcomp.version ] [
- { cases = [ (range "8.12" "8.16") (isGe "1.12") ]; out = "1.1"; }
+ { cases = [ (range "8.12" "8.16") (isGe "1.12") ]; out = "2.0"; }
] null;
propagatedBuildInputs = [ mathcomp.algebra mathcomp.ssreflect mathcomp.fingroup ];
diff --git a/pkgs/development/libraries/libvirt/default.nix b/pkgs/development/libraries/libvirt/default.nix
index 363b955dea87..71e89e07d8f7 100644
--- a/pkgs/development/libraries/libvirt/default.nix
+++ b/pkgs/development/libraries/libvirt/default.nix
@@ -113,13 +113,13 @@ stdenv.mkDerivation rec {
# NOTE: You must also bump:
#
# SysVirt in
- version = "8.7.0";
+ version = "8.8.0";
src = fetchFromGitLab {
owner = pname;
repo = pname;
rev = "v${version}";
- sha256 = "sha256-5F6Ibp3k7I1mwv8DNZ7rsW0wOw5q3vHtCUc7jJUNzrs=";
+ sha256 = "sha256-p7z+paiSeIm2cWnc6n9Hrd++BDmccGj+EOhqHNsJiXw=";
fetchSubmodules = true;
};
diff --git a/pkgs/development/libraries/science/math/cudnn/extension.nix b/pkgs/development/libraries/science/math/cudnn/extension.nix
index fae958c31d17..bd7935783b73 100644
--- a/pkgs/development/libraries/science/math/cudnn/extension.nix
+++ b/pkgs/development/libraries/science/math/cudnn/extension.nix
@@ -94,7 +94,23 @@ final: prev: let
fullVersion = "8.3.2.44";
hash = "sha256-VQCVPAjF5dHd3P2iNPnvvdzb5DpTsm3AqCxyP6FwxFc=";
url = "${urlPrefix}/v${majorMinorPatch fullVersion}/local_installers/${fileVersion}/cudnn-linux-x86_64-${fullVersion}_cuda${fileVersion}-archive.tar.xz";
- supportedCudaVersions = [ "11.0" "11.1" "11.2" "11.3" "11.4" "11.4" "11.5" "11.6" ];
+ supportedCudaVersions = [ "11.0" "11.1" "11.2" "11.3" "11.4" "11.5" "11.6" "11.7" ];
+ }
+ ];
+ "8.4.0" = [
+ rec {
+ fileVersion = "10.2";
+ fullVersion = "8.4.0.27";
+ hash = "sha256-FMXjykJYJxmW0f2VnELRfFgs5Nmv9FH4RSRGnnhP0VQ=";
+ url = "${urlPrefix}/v${majorMinorPatch fullVersion}/local_installers/${fileVersion}/cudnn-linux-x86_64-${fullVersion}_cuda${fileVersion}-archive.tar.xz";
+ supportedCudaVersions = [ "10.2" ];
+ }
+ rec {
+ fileVersion = "11.6";
+ fullVersion = "8.4.0.27";
+ hash = "sha256-0Zva/ZgAx50p5vb/+p+eLBDREy1sL/ELFZPgV+dN0FA=";
+ url = "${urlPrefix}/v${majorMinorPatch fullVersion}/local_installers/${fileVersion}/cudnn-linux-x86_64-${fullVersion}_cuda${fileVersion}-archive.tar.xz";
+ supportedCudaVersions = [ "11.0" "11.1" "11.2" "11.3" "11.4" "11.5" "11.6" "11.7" ];
}
];
};
@@ -111,6 +127,7 @@ final: prev: let
"11.4" = "8.3.2";
"11.5" = "8.3.2";
"11.6" = "8.3.2";
+ "11.7" = "8.4.0";
}.${cudaVersion} or "8.3.2";
in cuDnnPackages
diff --git a/pkgs/development/libraries/science/math/tensorrt/extension.nix b/pkgs/development/libraries/science/math/tensorrt/extension.nix
index b76d35a0d84f..2c4503272785 100644
--- a/pkgs/development/libraries/science/math/tensorrt/extension.nix
+++ b/pkgs/development/libraries/science/math/tensorrt/extension.nix
@@ -35,7 +35,7 @@ final: prev: let
fullVersion = "8.4.0.6";
sha256 = "sha256-DNgHHXF/G4cK2nnOWImrPXAkOcNW6Wy+8j0LRpAH/LQ=";
tarball = "TensorRT-${fullVersion}.Linux.x86_64-gnu.cuda-${fileVersionCuda}.cudnn${fileVersionCudnn}.tar.gz";
- supportedCudaVersions = [ "11.0" "11.1" "11.2" "11.3" "11.4" "11.5" "11.6" ];
+ supportedCudaVersions = [ "11.0" "11.1" "11.2" "11.3" "11.4" "11.5" "11.6" "11.7" ];
}
rec {
fileVersionCuda = "10.2";
@@ -58,6 +58,7 @@ final: prev: let
"11.4" = "8.4.0";
"11.5" = "8.4.0";
"11.6" = "8.4.0";
+ "11.7" = "8.4.0";
}.${cudaVersion} or "8.4.0";
in tensorRTPackages
diff --git a/pkgs/development/libraries/spglib/default.nix b/pkgs/development/libraries/spglib/default.nix
index e1472b594a40..c10b5a705425 100644
--- a/pkgs/development/libraries/spglib/default.nix
+++ b/pkgs/development/libraries/spglib/default.nix
@@ -2,22 +2,19 @@
stdenv.mkDerivation rec {
pname = "spglib";
- version = "1.16.5"; # N.B: if you change this, please update: pythonPackages.spglib
+ version = "2.0.1"; # N.B: if you change this, please update: pythonPackages.spglib
src = fetchFromGitHub {
owner = "spglib";
repo = "spglib";
rev = "v${version}";
- sha256 = "sha256-BbqyL7WJ/jpOls1MmY7VNCN+OlF6u4uz/pZjMAqk87w=";
+ sha256 = "sha256-0M3GSnNvBNmE4ShW8NNkVrOBGEF9A0C5wd++xnyrcdI=";
};
nativeBuildInputs = [ cmake ];
buildInputs = lib.optionals stdenv.isDarwin [ openmp ];
- checkTarget = "check";
- doCheck = true;
-
meta = with lib; {
description = "C library for finding and handling crystal symmetries";
homepage = "https://spglib.github.io/spglib/";
diff --git a/pkgs/development/python-modules/aiounifi/default.nix b/pkgs/development/python-modules/aiounifi/default.nix
index c90e2b74cb29..2ae3ef374eb5 100644
--- a/pkgs/development/python-modules/aiounifi/default.nix
+++ b/pkgs/development/python-modules/aiounifi/default.nix
@@ -12,7 +12,7 @@
buildPythonPackage rec {
pname = "aiounifi";
- version = "36";
+ version = "37";
disabled = pythonOlder "3.9";
@@ -20,7 +20,7 @@ buildPythonPackage rec {
owner = "Kane610";
repo = pname;
rev = "refs/tags/v${version}";
- hash = "sha256-ko3lfFitY6fFomh4dLSHdY6moeG2k11fmdcViT3IKGU=";
+ hash = "sha256-VKR01lbXznkO/OQvvxvMJOjPIPSynLWT6G/YV4Essy0=";
};
propagatedBuildInputs = [
diff --git a/pkgs/development/python-modules/awscrt/default.nix b/pkgs/development/python-modules/awscrt/default.nix
index 7390d861dd3e..fe99e9711818 100644
--- a/pkgs/development/python-modules/awscrt/default.nix
+++ b/pkgs/development/python-modules/awscrt/default.nix
@@ -12,14 +12,14 @@
buildPythonPackage rec {
pname = "awscrt";
- version = "0.14.6";
+ version = "0.14.7";
format = "setuptools";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
- hash = "sha256-sLh9kM4HcsLrvljvdyLBa0FkkJyTT9zbwumKGTHN1UE=";
+ hash = "sha256-59bwgjT3zFYx4q8G5Bi5RMUSQCVIlupu7rtycgXNXtg=";
};
buildInputs = lib.optionals stdenv.isDarwin [
diff --git a/pkgs/development/python-modules/batchspawner/default.nix b/pkgs/development/python-modules/batchspawner/default.nix
index 2b7cd1b21ecc..09023536a94b 100644
--- a/pkgs/development/python-modules/batchspawner/default.nix
+++ b/pkgs/development/python-modules/batchspawner/default.nix
@@ -2,29 +2,33 @@
, buildPythonPackage
, fetchFromGitHub
, jupyterhub
-, isPy27
+, pythonOlder
}:
buildPythonPackage rec {
pname = "batchspawner";
- version = "1.1.0";
- disabled = isPy27;
+ version = "1.2.0";
+ format = "setuptools";
+
+ disabled = pythonOlder "3.5";
src = fetchFromGitHub {
owner = "jupyterhub";
repo = "batchspawner";
- rev = "v${version}";
- sha256 = "0zv485b7fk5zlwgp5fyibanqzbpisdl2a0gz70fwdj4kl462axnw";
+ rev = "refs/tags/v${version}";
+ hash = "sha256-oyS47q+gsO7JmRsbVJXglZsSRfits5rS/nrHW5E7EV0=";
};
propagatedBuildInputs = [
jupyterhub
];
- # tests require a job scheduler e.g. slurm, pbs, etc.
+ # Tests require a job scheduler e.g. slurm, pbs, etc.
doCheck = false;
- pythonImportsCheck = [ "batchspawner" ];
+ pythonImportsCheck = [
+ "batchspawner"
+ ];
meta = with lib; {
description = "A spawner for Jupyterhub to spawn notebooks using batch resource managers";
diff --git a/pkgs/development/python-modules/bellows/default.nix b/pkgs/development/python-modules/bellows/default.nix
index 4dcd49595173..8197b415c3bd 100644
--- a/pkgs/development/python-modules/bellows/default.nix
+++ b/pkgs/development/python-modules/bellows/default.nix
@@ -17,14 +17,14 @@
buildPythonPackage rec {
pname = "bellows";
- version = "0.33.1";
+ version = "0.34.1";
format = "setuptools";
src = fetchFromGitHub {
owner = "zigpy";
repo = "bellows";
rev = "refs/tags/${version}";
- sha256 = "sha256-cpWQdsuW3CA/8HowhMoVV++rrDnjFQcgp+A5CCElj6o=";
+ sha256 = "sha256-a2skDJVqbct1+Ky2D8LXv8VMqFwqznUzXh+o+M6GtvQ=";
};
propagatedBuildInputs = [
diff --git a/pkgs/development/python-modules/bluetooth-adapters/default.nix b/pkgs/development/python-modules/bluetooth-adapters/default.nix
index b40b0d3c1265..3d541bfa7bc0 100644
--- a/pkgs/development/python-modules/bluetooth-adapters/default.nix
+++ b/pkgs/development/python-modules/bluetooth-adapters/default.nix
@@ -14,7 +14,7 @@
buildPythonPackage rec {
pname = "bluetooth-adapters";
- version = "0.5.2";
+ version = "0.6.0";
format = "pyproject";
disabled = pythonOlder "3.9";
@@ -23,7 +23,7 @@ buildPythonPackage rec {
owner = "Bluetooth-Devices";
repo = pname;
rev = "refs/tags/v${version}";
- hash = "sha256-SyEe/auJaagRl3wg7JjBkLAgHyAeCeesEXvWXE733M4=";
+ hash = "sha256-26w7513h5WWGqKz4OqHob42O0bk1yW8ePPKB2V9+AHs=";
};
postPatch = ''
diff --git a/pkgs/development/python-modules/brother/default.nix b/pkgs/development/python-modules/brother/default.nix
index 7dbab50b63bf..297f1161fe2a 100644
--- a/pkgs/development/python-modules/brother/default.nix
+++ b/pkgs/development/python-modules/brother/default.nix
@@ -1,6 +1,7 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
+, dacite
, pysnmplib
, pytest-asyncio
, pytest-error-for-skips
@@ -10,7 +11,7 @@
buildPythonPackage rec {
pname = "brother";
- version = "1.2.3";
+ version = "2.0.0";
format = "setuptools";
disabled = pythonOlder "3.8";
@@ -19,10 +20,11 @@ buildPythonPackage rec {
owner = "bieniu";
repo = pname;
rev = "refs/tags/${version}";
- hash = "sha256-+o6hv63u6FBEu57mD02lss0LQPwgBnXsP8CKQ+/74/Q=";
+ hash = "sha256-pk9VBFha2NfQWI+fbWwGKcGFa93eKr5Cqh85r1CAXpI=";
};
propagatedBuildInputs = [
+ dacite
pysnmplib
];
diff --git a/pkgs/development/python-modules/browser-cookie3/default.nix b/pkgs/development/python-modules/browser-cookie3/default.nix
index cfb9364c30d8..b072c5576d1f 100644
--- a/pkgs/development/python-modules/browser-cookie3/default.nix
+++ b/pkgs/development/python-modules/browser-cookie3/default.nix
@@ -12,14 +12,14 @@
buildPythonPackage rec {
pname = "browser-cookie3";
- version = "0.16.1";
+ version = "0.16.2";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
- hash = "sha256-Gamys354RIvUQOelN8YDY6GfpJanC7CjWXC1plmh/jU=";
+ hash = "sha256-IB0Ms+mCHh7lfG3XYfvE2h/2lec5Tq9AAjqANz7x0hE=";
};
propagatedBuildInputs = [
diff --git a/pkgs/development/python-modules/bthome-ble/default.nix b/pkgs/development/python-modules/bthome-ble/default.nix
index 4f216bd2eee1..5f82f2a1852f 100644
--- a/pkgs/development/python-modules/bthome-ble/default.nix
+++ b/pkgs/development/python-modules/bthome-ble/default.nix
@@ -12,7 +12,7 @@
buildPythonPackage rec {
pname = "bthome-ble";
- version = "1.0.0";
+ version = "1.2.2";
format = "pyproject";
disabled = pythonOlder "3.9";
@@ -21,7 +21,7 @@ buildPythonPackage rec {
owner = "Bluetooth-Devices";
repo = pname;
rev = "v${version}";
- hash = "sha256-yTbJ69FPMIsc/w7UXfvXPLXGRs9s0F4YiccljRyI5Ek=";
+ hash = "sha256-2/2ODlHqQOl4LHUb2fyQpmsBYnoz0Rvc9lLEfZTKijA=";
};
nativeBuildInputs = [
diff --git a/pkgs/development/python-modules/dataclasses-json/default.nix b/pkgs/development/python-modules/dataclasses-json/default.nix
index 2a4fd2cef42b..9f32be70a5b1 100644
--- a/pkgs/development/python-modules/dataclasses-json/default.nix
+++ b/pkgs/development/python-modules/dataclasses-json/default.nix
@@ -30,6 +30,12 @@ buildPythonPackage rec {
pytestCheckHook
];
+ disabledTests = [
+ # mypy_main(None, text_io, text_io, [__file__], clean_exit=True)
+ # TypeError: main() takes at most 4 arguments (5 given)
+ "test_type_hints"
+ ];
+
pythonImportsCheck = [ "dataclasses_json" ];
meta = with lib; {
diff --git a/pkgs/development/python-modules/dbus-fast/default.nix b/pkgs/development/python-modules/dbus-fast/default.nix
index 24723fdafada..dc19116fc5ef 100644
--- a/pkgs/development/python-modules/dbus-fast/default.nix
+++ b/pkgs/development/python-modules/dbus-fast/default.nix
@@ -6,11 +6,12 @@
, pytest-asyncio
, pytestCheckHook
, pythonOlder
+, setuptools
}:
buildPythonPackage rec {
pname = "dbus-fast";
- version = "1.17.0";
+ version = "1.24.0";
format = "pyproject";
disabled = pythonOlder "3.7";
@@ -19,11 +20,12 @@ buildPythonPackage rec {
owner = "Bluetooth-Devices";
repo = pname;
rev = "v${version}";
- hash = "sha256-HbjeO+imWocc5bL62gdWHf8kBR6HNWwEu+KqO4ldHe4=";
+ hash = "sha256-2bQwq5qjvtM+HTIJpEzH+Xaq42LTixqnX/zRRZV9lgA=";
};
nativeBuildInputs = [
poetry-core
+ setuptools
];
propagatedBuildInputs = [
@@ -37,8 +39,7 @@ buildPythonPackage rec {
postPatch = ''
substituteInPlace pyproject.toml \
- --replace " --cov=dbus_fast --cov-report=term-missing:skip-covered" "" \
- --replace "[tool.poetry.group.dev.dependencies]" ""
+ --replace " --cov=dbus_fast --cov-report=term-missing:skip-covered" ""
'';
pythonImportsCheck = [
diff --git a/pkgs/development/python-modules/django/4.nix b/pkgs/development/python-modules/django/4.nix
index 96ee036d1259..fce3751dc20c 100644
--- a/pkgs/development/python-modules/django/4.nix
+++ b/pkgs/development/python-modules/django/4.nix
@@ -43,14 +43,14 @@
buildPythonPackage rec {
pname = "Django";
- version = "4.1.1";
+ version = "4.1.2";
format = "pyproject";
disabled = pythonOlder "3.8";
src = fetchPypi {
inherit pname version;
- hash = "sha256-oVP/1RQ78mqHe/ri9Oxzbr2JJKRmAMoImtlrVKHU4o4=";
+ hash = "sha256-uNhDcUgQq4jVk0RQfURHvoss8SpJAxNjtu7Z8bmyKA8=";
};
patches = [
diff --git a/pkgs/development/python-modules/fritzconnection/default.nix b/pkgs/development/python-modules/fritzconnection/default.nix
index 092b00f6b02e..ae2f69a8a7e6 100644
--- a/pkgs/development/python-modules/fritzconnection/default.nix
+++ b/pkgs/development/python-modules/fritzconnection/default.nix
@@ -8,7 +8,7 @@
buildPythonPackage rec {
pname = "fritzconnection";
- version = "1.9.1";
+ version = "1.10.3";
format = "setuptools";
disabled = pythonOlder "3.6";
@@ -17,7 +17,7 @@ buildPythonPackage rec {
owner = "kbr";
repo = pname;
rev = version;
- sha256 = "sha256-wapZ4lCG0tfE+LbFVeIxVlbMJN/sSwIeYK5GLCqoWLs=";
+ sha256 = "sha256-eRvo40VXgo+SQGeh88vRfHPnbrsVDyz03ToIgwRc43Q=";
};
propagatedBuildInputs = [
diff --git a/pkgs/development/python-modules/libvirt/default.nix b/pkgs/development/python-modules/libvirt/default.nix
index 5d2b49e548a5..37114eb70c6f 100644
--- a/pkgs/development/python-modules/libvirt/default.nix
+++ b/pkgs/development/python-modules/libvirt/default.nix
@@ -2,13 +2,13 @@
buildPythonPackage rec {
pname = "libvirt";
- version = "8.7.0";
+ version = "8.8.0";
src = fetchFromGitLab {
owner = "libvirt";
repo = "libvirt-python";
rev = "v${version}";
- sha256 = "sha256-B7pJDFjamFtNAhnPWMzNUWFEBhM48y0QG4MUtX7GP4o=";
+ sha256 = "sha256-UguqUsIfrql1UZeBoHLKXvLYuWicbJWamglkvqS++FI=";
};
nativeBuildInputs = [ pkg-config ];
diff --git a/pkgs/development/python-modules/minikerberos/default.nix b/pkgs/development/python-modules/minikerberos/default.nix
index 5670663960c8..ed59c2f3425e 100644
--- a/pkgs/development/python-modules/minikerberos/default.nix
+++ b/pkgs/development/python-modules/minikerberos/default.nix
@@ -10,14 +10,14 @@
buildPythonPackage rec {
pname = "minikerberos";
- version = "0.3.2";
+ version = "0.3.3";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
- hash = "sha256-6nsc/LVyzjXCtX7GhWbOVc98hPbJZOWAOuys3WPTfYw=";
+ hash = "sha256-xO7d5GCihEzIH/DZziRR1SRpzAywPe99WJXeRyuh7S8=";
};
propagatedBuildInputs = [
diff --git a/pkgs/development/python-modules/plugwise/default.nix b/pkgs/development/python-modules/plugwise/default.nix
index a011ae0faa77..b9a522a9cb62 100644
--- a/pkgs/development/python-modules/plugwise/default.nix
+++ b/pkgs/development/python-modules/plugwise/default.nix
@@ -21,7 +21,7 @@
buildPythonPackage rec {
pname = "plugwise";
- version = "0.23.0";
+ version = "0.24.0";
format = "setuptools";
disabled = pythonOlder "3.7";
@@ -30,7 +30,7 @@ buildPythonPackage rec {
owner = pname;
repo = "python-plugwise";
rev = "refs/tags/v${version}";
- sha256 = "sha256-nLJLp5LnsluZe/pzLvycvjPmPYXGGobZaS5kI70CVa8=";
+ sha256 = "sha256-WoXBUUe/2XX+CgoZB1o2sj2FIoWS6ECikJWrUSreJUY=";
};
propagatedBuildInputs = [
diff --git a/pkgs/development/python-modules/safety/default.nix b/pkgs/development/python-modules/safety/default.nix
index 1f777501bee1..20f0beecb70f 100644
--- a/pkgs/development/python-modules/safety/default.nix
+++ b/pkgs/development/python-modules/safety/default.nix
@@ -13,7 +13,7 @@
buildPythonPackage rec {
pname = "safety";
- version = "2.2.0";
+ version = "2.2.1";
disabled = pythonOlder "3.6";
@@ -21,7 +21,7 @@ buildPythonPackage rec {
src = fetchPypi {
inherit pname version;
- hash = "sha256-Z0XeEqy9YKWAAf5my1QDVRh9e5kbMBBNnvFP9OSCYHM=";
+ hash = "sha256-2LSMRqxmKLuDRBt93cR1bP4lgqvhOhEu5uTvGjSq0DI=";
};
postPatch = ''
diff --git a/pkgs/development/python-modules/slack-sdk/default.nix b/pkgs/development/python-modules/slack-sdk/default.nix
index ac57a730af88..f6699f24258e 100644
--- a/pkgs/development/python-modules/slack-sdk/default.nix
+++ b/pkgs/development/python-modules/slack-sdk/default.nix
@@ -21,7 +21,7 @@
buildPythonPackage rec {
pname = "slack-sdk";
- version = "3.18.4";
+ version = "3.18.5";
format = "setuptools";
disabled = pythonOlder "3.6";
@@ -30,7 +30,7 @@ buildPythonPackage rec {
owner = "slackapi";
repo = "python-slack-sdk";
rev = "refs/tags/v${version}";
- sha256 = "sha256-iQxtIpswXQWlknUoq9a7nsTCnVDP2aNUEuWco5xKnVc=";
+ sha256 = "sha256-b778qmf0LkSAo8/eho1zoC0kc4byexqCG3R/fRBlr6M=";
};
propagatedBuildInputs = [
diff --git a/pkgs/development/python-modules/sphinx-jupyterbook-latex/default.nix b/pkgs/development/python-modules/sphinx-jupyterbook-latex/default.nix
index 6c80d6715dcc..5aa69c47beb2 100644
--- a/pkgs/development/python-modules/sphinx-jupyterbook-latex/default.nix
+++ b/pkgs/development/python-modules/sphinx-jupyterbook-latex/default.nix
@@ -8,7 +8,7 @@
buildPythonPackage rec {
pname = "sphinx-jupyterbook-latex";
- version = "0.5.0";
+ version = "0.5.1";
format = "pyproject";
disabled = pythonOlder "3.6";
@@ -16,7 +16,7 @@ buildPythonPackage rec {
src = fetchPypi {
inherit version;
pname = "sphinx_jupyterbook_latex";
- sha256 = "sha256-XEYsrMcg85loIYvD3ikfgGXGeox0q03H/0wRgTaz+SI=";
+ sha256 = "sha256-QErSEpolSEkJaQLzfcF0oDlugEhN5Y9/KwVwC2IknLY=";
};
postPatch = ''
diff --git a/pkgs/development/python-modules/traitsui/default.nix b/pkgs/development/python-modules/traitsui/default.nix
index 9fcfafd99e0a..cf5e8bf8302a 100644
--- a/pkgs/development/python-modules/traitsui/default.nix
+++ b/pkgs/development/python-modules/traitsui/default.nix
@@ -8,14 +8,14 @@
buildPythonPackage rec {
pname = "traitsui";
- version = "7.4.0";
+ version = "7.4.1";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
- hash = "sha256-JTNa/+4jQtR+NcJd9ed4XSKlM1hP4b4JQ8y6Rdwa5Yk=";
+ hash = "sha256-TFs9Oq6qvR7IGgqMQPnM0o+oy51k7RORfJkNF0ZU+h0=";
};
propagatedBuildInputs = [
diff --git a/pkgs/development/python-modules/trimesh/default.nix b/pkgs/development/python-modules/trimesh/default.nix
index f25ab691965d..5bd24653f30d 100644
--- a/pkgs/development/python-modules/trimesh/default.nix
+++ b/pkgs/development/python-modules/trimesh/default.nix
@@ -6,11 +6,11 @@
buildPythonPackage rec {
pname = "trimesh";
- version = "3.15.2";
+ version = "3.15.3";
src = fetchPypi {
inherit pname version;
- sha256 = "sha256-RnqHmqF29r1VU8s920mxQE80f2kJKHJtMmRi1R2caAM=";
+ sha256 = "sha256-wvoxZXSlPWEifwP4Gdgg4wsVjDGm5NzhaZjAUZ886ZI=";
};
propagatedBuildInputs = [ numpy ];
diff --git a/pkgs/development/python-modules/types-redis/default.nix b/pkgs/development/python-modules/types-redis/default.nix
index 789cf6b87949..b0cd9fdd1991 100644
--- a/pkgs/development/python-modules/types-redis/default.nix
+++ b/pkgs/development/python-modules/types-redis/default.nix
@@ -5,12 +5,12 @@
buildPythonPackage rec {
pname = "types-redis";
- version = "4.3.21";
+ version = "4.3.21.1";
format = "setuptools";
src = fetchPypi {
inherit pname version;
- sha256 = "sha256-/QF6ZzOvGT0U8bsptP95wKvJBuhlQVjRerpFemOBr+I=";
+ sha256 = "sha256-STgUgpZD/AShRZXtpszWm9wGBkd1QczaVCOM4/YLyZM=";
};
# Module doesn't have tests
diff --git a/pkgs/development/python-modules/types-requests/default.nix b/pkgs/development/python-modules/types-requests/default.nix
index 51210e5abb2e..76923f829a3f 100644
--- a/pkgs/development/python-modules/types-requests/default.nix
+++ b/pkgs/development/python-modules/types-requests/default.nix
@@ -6,12 +6,12 @@
buildPythonPackage rec {
pname = "types-requests";
- version = "2.28.11";
+ version = "2.28.11.1";
format = "setuptools";
src = fetchPypi {
inherit pname version;
- sha256 = "sha256-fugn64zmEbArURfP7F2mRVNltqV19eP/GfZVumA+a04=";
+ sha256 = "sha256-ArGAbFuZBO3Nh/opI2FkrqDmzcTZPqAgzWFe9ly0PWU=";
};
propagatedBuildInputs = [
diff --git a/pkgs/development/python-modules/wandb/default.nix b/pkgs/development/python-modules/wandb/default.nix
index a466c9919f43..b1ad380f04b9 100644
--- a/pkgs/development/python-modules/wandb/default.nix
+++ b/pkgs/development/python-modules/wandb/default.nix
@@ -25,6 +25,7 @@
, pytestCheckHook
, python-dateutil
, pythonOlder
+, pythonRelaxDepsHook
, torch
, pyyaml
, requests
@@ -52,12 +53,17 @@ buildPythonPackage rec {
};
patches = [
+ # Replace git paths
(substituteAll {
src = ./hardcode-git-path.patch;
git = "${lib.getBin git}/bin/git";
})
];
+ nativeBuildInputs = [
+ pythonRelaxDepsHook
+ ];
+
# setuptools is necessary since pkg_resources is required at runtime.
propagatedBuildInputs = [
click
@@ -76,10 +82,6 @@ buildPythonPackage rec {
shortuuid
];
- preCheck = ''
- export HOME=$(mktemp -d)
- '';
-
checkInputs = [
azure-core
bokeh
@@ -99,6 +101,12 @@ buildPythonPackage rec {
tqdm
];
+ preCheck = ''
+ export HOME=$(mktemp -d)
+ '';
+
+ pythonRelaxDeps = [ "protobuf" ];
+
disabledTestPaths = [
# Tests that try to get chatty over sockets or spin up servers, not possible in the nix build environment.
"tests/unit_tests/integrations/test_keras.py"
diff --git a/pkgs/development/python-modules/weconnect/default.nix b/pkgs/development/python-modules/weconnect/default.nix
index c9a2f87f91a7..3508b26a9525 100644
--- a/pkgs/development/python-modules/weconnect/default.nix
+++ b/pkgs/development/python-modules/weconnect/default.nix
@@ -12,7 +12,7 @@
buildPythonPackage rec {
pname = "weconnect";
- version = "0.48.1";
+ version = "0.48.2";
format = "setuptools";
disabled = pythonOlder "3.7";
@@ -21,7 +21,7 @@ buildPythonPackage rec {
owner = "tillsteinbach";
repo = "WeConnect-python";
rev = "refs/tags/v${version}";
- hash = "sha256-SLVOvGGhyn/kMYgZUmcy5cw7tDHS7wIcVdP5ZnRgmVc=";
+ hash = "sha256-4QltLEapYOzCwejeBWAhTdI8UVdlSAqcqFanvsTKBLw=";
};
propagatedBuildInputs = [
diff --git a/pkgs/development/python-modules/zha-quirks/default.nix b/pkgs/development/python-modules/zha-quirks/default.nix
index 2b85a66853f1..0f5601bd4851 100644
--- a/pkgs/development/python-modules/zha-quirks/default.nix
+++ b/pkgs/development/python-modules/zha-quirks/default.nix
@@ -10,7 +10,7 @@
buildPythonPackage rec {
pname = "zha-quirks";
- version = "0.0.80";
+ version = "0.0.82";
format = "setuptools";
disabled = pythonOlder "3.7";
@@ -19,7 +19,7 @@ buildPythonPackage rec {
owner = "zigpy";
repo = "zha-device-handlers";
rev = "refs/tags/${version}";
- hash = "sha256-tmXOkOUW2d3Kntx1wgzN3J4l5jrSfz2q9YT1gfHjtro=";
+ hash = "sha256-2pm0fLPw/ROjYwvaL1wyZ39ZAbAjwc1TPsbYsO0+vcI=";
};
propagatedBuildInputs = [
diff --git a/pkgs/development/python-modules/zigpy-deconz/default.nix b/pkgs/development/python-modules/zigpy-deconz/default.nix
index 30a08a37a628..de08bb59320c 100644
--- a/pkgs/development/python-modules/zigpy-deconz/default.nix
+++ b/pkgs/development/python-modules/zigpy-deconz/default.nix
@@ -12,7 +12,7 @@
buildPythonPackage rec {
pname = "zigpy-deconz";
- version = "0.18.1";
+ version = "0.19.0";
format = "setuptools";
disabled = pythonOlder "3.7";
@@ -21,7 +21,7 @@ buildPythonPackage rec {
owner = "zigpy";
repo = pname;
rev = "refs/tags/${version}";
- hash = "sha256-in40vbSupz0DhYZQYkGo5nUBt8sEwJ15wZCMVq4YRbA=";
+ hash = "sha256-HYLL+1o133Is40wVCPJoUGZO1B/43p+V8K2rJ/mdMFQ=";
};
propagatedBuildInputs = [
diff --git a/pkgs/development/python-modules/zigpy-xbee/default.nix b/pkgs/development/python-modules/zigpy-xbee/default.nix
index 43cab32768c0..1077703d1607 100644
--- a/pkgs/development/python-modules/zigpy-xbee/default.nix
+++ b/pkgs/development/python-modules/zigpy-xbee/default.nix
@@ -13,7 +13,7 @@
buildPythonPackage rec {
pname = "zigpy-xbee";
- version = "0.15.0";
+ version = "0.16.0";
# https://github.com/Martiusweb/asynctest/issues/152
# broken by upstream python bug with asynctest and
# is used exclusively by home-assistant with python 3.8
@@ -23,7 +23,7 @@ buildPythonPackage rec {
owner = "zigpy";
repo = "zigpy-xbee";
rev = version;
- sha256 = "sha256-NT7d5JWaVZOrk32uYh0z0sI9RA4eJYYIa2D/Ei81KjY=";
+ sha256 = "sha256-0Eg+XaMDEB3Zh0Ksn8Nsaf7AYdhRqzpscuZIz19DxCI=";
};
buildInputs = [
diff --git a/pkgs/development/python-modules/zigpy-zigate/default.nix b/pkgs/development/python-modules/zigpy-zigate/default.nix
index d81e7c16e6fd..74ec6a282477 100644
--- a/pkgs/development/python-modules/zigpy-zigate/default.nix
+++ b/pkgs/development/python-modules/zigpy-zigate/default.nix
@@ -14,7 +14,7 @@
buildPythonPackage rec {
pname = "zigpy-zigate";
- version = "0.9.2";
+ version = "0.10.0";
format = "setuptools";
disabled = pythonOlder "3.8";
@@ -22,8 +22,8 @@ buildPythonPackage rec {
src = fetchFromGitHub {
owner = "zigpy";
repo = "zigpy-zigate";
- rev = "refs/tags/${version}";
- hash = "sha256-89e9QkFxBdw5YujL73zR7jys0sCJz5r/jNaVmLxv37g=";
+ rev = "refs/tags/v${version}";
+ hash = "sha256-JcKmLD3ET17PaNm1DoAV8TDMw88Qd5okDPOStLUqASM=";
};
propagatedBuildInputs = [
diff --git a/pkgs/development/python-modules/zigpy-znp/default.nix b/pkgs/development/python-modules/zigpy-znp/default.nix
index 229dcc41d82f..19b6d566a827 100644
--- a/pkgs/development/python-modules/zigpy-znp/default.nix
+++ b/pkgs/development/python-modules/zigpy-znp/default.nix
@@ -18,7 +18,7 @@
buildPythonPackage rec {
pname = "zigpy-znp";
- version = "0.8.2";
+ version = "0.9.0";
format = "setuptools";
disabled = pythonOlder "3.7";
@@ -27,7 +27,7 @@ buildPythonPackage rec {
owner = "zigpy";
repo = pname;
rev = "refs/tags/v${version}";
- sha256 = "sha256-90D8MP8p0zFvmxtWXxfPzLuRACeVk4vGdUYxh6cZb08=";
+ sha256 = "sha256-GvGWda+vsDwJrRIjc3hkl9zMrJ/cj2HGvHSeCROE69g=";
};
propagatedBuildInputs = [
diff --git a/pkgs/development/python-modules/zigpy/default.nix b/pkgs/development/python-modules/zigpy/default.nix
index 6f147990174e..e8d846273c35 100644
--- a/pkgs/development/python-modules/zigpy/default.nix
+++ b/pkgs/development/python-modules/zigpy/default.nix
@@ -8,7 +8,8 @@
, freezegun
, fetchFromGitHub
, pycryptodome
-, pytest-aiohttp
+, pyserial-asyncio
+, pytest-asyncio
, pytest-timeout
, pytestCheckHook
, pythonOlder
@@ -17,7 +18,7 @@
buildPythonPackage rec {
pname = "zigpy";
- version = "0.50.3";
+ version = "0.51.2";
format = "setuptools";
disabled = pythonOlder "3.7";
@@ -26,7 +27,7 @@ buildPythonPackage rec {
owner = "zigpy";
repo = "zigpy";
rev = "refs/tags/${version}";
- hash = "sha256-Od5BEi5Cu1Gzd4ZkPc2lfmsEZoqsxqiUKqZ2vkW/8sE=";
+ hash = "sha256-6JHj75ntbW3Pu4P6/nw0/xhZ+fZCfpNCzB1ZB7WJ0jY=";
};
propagatedBuildInputs = [
@@ -34,17 +35,17 @@ buildPythonPackage rec {
aiosqlite
crccheck
cryptography
+ pyserial-asyncio
pycryptodome
voluptuous
];
checkInputs = [
+ asynctest
freezegun
- pytest-aiohttp
+ pytest-asyncio
pytest-timeout
pytestCheckHook
- ] ++ lib.optionals (pythonOlder "3.8") [
- asynctest
];
pythonImportsCheck = [
diff --git a/pkgs/development/python-modules/zwave-js-server-python/default.nix b/pkgs/development/python-modules/zwave-js-server-python/default.nix
index 1800e5a6d6bb..dcbeca33f827 100644
--- a/pkgs/development/python-modules/zwave-js-server-python/default.nix
+++ b/pkgs/development/python-modules/zwave-js-server-python/default.nix
@@ -10,16 +10,16 @@
buildPythonPackage rec {
pname = "zwave-js-server-python";
- version = "0.41.1";
+ version = "0.43.0";
format = "setuptools";
- disabled = pythonOlder "3.8";
+ disabled = pythonOlder "3.9";
src = fetchFromGitHub {
owner = "home-assistant-libs";
repo = pname;
rev = "refs/tags/${version}";
- hash = "sha256-V4QEsHkakqYsZ09Q8BJG9fhREdGboirF5sNxm8t+dAQ=";
+ hash = "sha256-qzAM3vcVySJB6OfOHKXYYXDR+xOSbGpyH7b9TaYkOLM=";
};
propagatedBuildInputs = [
diff --git a/pkgs/development/tools/build-managers/sbt-extras/default.nix b/pkgs/development/tools/build-managers/sbt-extras/default.nix
index 8bd5a2c1e1c0..e6665e38321d 100644
--- a/pkgs/development/tools/build-managers/sbt-extras/default.nix
+++ b/pkgs/development/tools/build-managers/sbt-extras/default.nix
@@ -3,14 +3,14 @@
stdenv.mkDerivation rec {
pname = "sbt-extras";
- rev = "ddc1c0a9e9df598ad60edbd004e5abb51b32e42c";
- version = "2022-09-23";
+ rev = "52fa7de64091bc687fe11e3a8c660bbbfb42742f";
+ version = "2022-10-03";
src = fetchFromGitHub {
owner = "paulp";
repo = "sbt-extras";
inherit rev;
- sha256 = "SsqxDipM6B2w1kT1yuNc+PXYDE8qpUSwaXqItYuCgRU=";
+ sha256 = "TMp5qxUf7U3re8HKXvtArEJMtn4iZy4zs4SqFTxX5X4=";
};
dontBuild = true;
diff --git a/pkgs/development/tools/build-managers/sbt/default.nix b/pkgs/development/tools/build-managers/sbt/default.nix
index 782b2007d138..99fad259e3a6 100644
--- a/pkgs/development/tools/build-managers/sbt/default.nix
+++ b/pkgs/development/tools/build-managers/sbt/default.nix
@@ -8,11 +8,11 @@
stdenv.mkDerivation rec {
pname = "sbt";
- version = "1.7.1";
+ version = "1.7.2";
src = fetchurl {
url = "https://github.com/sbt/sbt/releases/download/v${version}/sbt-${version}.tgz";
- sha256 = "sha256-ihg6/bNRkpDd4vjIHJsrrRnd14c17zEftfub3PaNP+Q=";
+ sha256 = "sha256-vWSDnIzWPy3sMdbqJODeFsYTyEqSeh9FiuQBmyujENc=";
};
postPatch = ''
diff --git a/pkgs/development/tools/oh-my-posh/default.nix b/pkgs/development/tools/oh-my-posh/default.nix
index 7ae79d1c1495..495bd2f11e13 100644
--- a/pkgs/development/tools/oh-my-posh/default.nix
+++ b/pkgs/development/tools/oh-my-posh/default.nix
@@ -2,13 +2,13 @@
buildGoModule rec {
pname = "oh-my-posh";
- version = "11.3.0";
+ version = "11.4.0";
src = fetchFromGitHub {
owner = "jandedobbeleer";
repo = pname;
rev = "v${version}";
- sha256 = "sha256-u10hxJEt08NtwXyLc7CrQj+70NczgOIeyFvudxxb1Qw=";
+ sha256 = "sha256-KOHiB5T+iFgt5My4VnnmholpDD+9wHQq/D7WQTQppA4=";
};
vendorSha256 = "sha256-A4+sshIzPla7udHfnMmbFqn+fW3SOCrI6g7tArzmh1E=";
diff --git a/pkgs/development/tools/opcr-policy/default.nix b/pkgs/development/tools/opcr-policy/default.nix
new file mode 100644
index 000000000000..c14cabbfa32b
--- /dev/null
+++ b/pkgs/development/tools/opcr-policy/default.nix
@@ -0,0 +1,44 @@
+{ lib
+, buildGoModule
+, fetchFromGitHub
+}:
+
+buildGoModule rec {
+ pname = "opcr-policy";
+ version = "0.1.42";
+
+ src = fetchFromGitHub {
+ owner = "opcr-io";
+ repo = "policy";
+ rev = "v${version}";
+ sha256 = "sha256-taC/VZBalJMFi8kVw7R03ibmHTwbKTxj3mcYbXms26M=";
+ };
+ vendorSha256 = "sha256-r2eKRJC8/fDY38u924ViLCf7kT54Tc+zIBD2YV9Qn6c=";
+
+ ldflags = [ "-s" "-w" "-X github.com/opcr-io/policy/pkg/version.ver=${version}" ];
+
+ doCheck = false;
+
+ doInstallCheck = true;
+ installCheckPhase = ''
+ runHook preInstallCheck
+
+ $out/bin/policy --help
+ $out/bin/policy version | grep "version: ${version}"
+
+ runHook postInstallCheck
+ '';
+
+ meta = with lib; {
+ mainProgram = "policy";
+ homepage = "https://www.openpolicyregistry.io/";
+ changelog = "https://github.com/opcr-io/policy/releases/tag/v${version}";
+ description = "CLI for managing authorization policies";
+ longDescription = ''
+ The policy CLI is a tool for building, versioning and publishing your authorization policies.
+ It uses OCI standards to manage artifacts, and the Open Policy Agent (OPA) to compile and run.
+ '';
+ license = licenses.asl20;
+ maintainers = with maintainers; [ naphta jk ];
+ };
+}
diff --git a/pkgs/development/tools/ruff/default.nix b/pkgs/development/tools/ruff/default.nix
index 795ddd49b2fb..95a440153672 100644
--- a/pkgs/development/tools/ruff/default.nix
+++ b/pkgs/development/tools/ruff/default.nix
@@ -8,16 +8,16 @@
rustPlatform.buildRustPackage rec {
pname = "ruff";
- version = "0.0.52";
+ version = "0.0.56";
src = fetchFromGitHub {
owner = "charliermarsh";
repo = pname;
rev = "v${version}";
- sha256 = "sha256-x4aP2CZQLd5K2VVk32Cuopd7/CJbNQvqXMHontrNtSE=";
+ sha256 = "sha256-nQmBHBWaViArY61Goo8opxbvJkrGftQ9UHRkO4V8u8c=";
};
- cargoSha256 = "sha256-7q+mVu/y/A1+XNTKlxfbAn1s9xWIbdHJxQ2civxjW8o=";
+ cargoSha256 = "sha256-f1ByWxR6iWbEjxDPaKJnzE1jlMQX1kILySbV6A3wuXY=";
buildInputs = lib.optionals stdenv.isDarwin [
CoreServices
diff --git a/pkgs/development/tools/selenium/chromedriver/default.nix b/pkgs/development/tools/selenium/chromedriver/default.nix
index 2ce075272ebb..5e7ca890155d 100644
--- a/pkgs/development/tools/selenium/chromedriver/default.nix
+++ b/pkgs/development/tools/selenium/chromedriver/default.nix
@@ -18,10 +18,10 @@ let
sha256 = upstream-info.sha256_darwin;
};
- aarch64-darwin = {
- system = "mac64_m1";
- sha256 = upstream-info.sha256_darwin_aarch64;
- };
+ # aarch64-darwin = {
+ # system = "mac64_m1";
+ # sha256 = upstream-info.sha256_darwin_aarch64;
+ # };
};
spec = allSpecs.${stdenv.hostPlatform.system}
diff --git a/pkgs/os-specific/linux/kernel/linux-5.19.nix b/pkgs/os-specific/linux/kernel/linux-5.19.nix
index 897758c93ef5..06041ed9450f 100644
--- a/pkgs/os-specific/linux/kernel/linux-5.19.nix
+++ b/pkgs/os-specific/linux/kernel/linux-5.19.nix
@@ -3,7 +3,7 @@
with lib;
buildLinux (args // rec {
- version = "5.19.12";
+ version = "5.19.14";
# modDirVersion needs to be x.y.z, will automatically add .0 if needed
modDirVersion = if (modDirVersionArg == null) then concatStringsSep "." (take 3 (splitVersion "${version}.0")) else modDirVersionArg;
@@ -13,6 +13,6 @@ buildLinux (args // rec {
src = fetchurl {
url = "mirror://kernel/linux/kernel/v5.x/linux-${version}.tar.xz";
- sha256 = "1fmhwbgqpr6q3z3ygys153szivlmv3mcnwilbbyfcb1iqx4aadn4";
+ sha256 = "1h8srn3fw4vw61qi0xxlk9fq0fqq4wl7fbrzz7sivdd8qkhjgv8x";
};
} // (args.argsOverride or { }))
diff --git a/pkgs/os-specific/linux/libbpf/0.x.nix b/pkgs/os-specific/linux/libbpf/0.x.nix
new file mode 100644
index 000000000000..2c15e3d49ee1
--- /dev/null
+++ b/pkgs/os-specific/linux/libbpf/0.x.nix
@@ -0,0 +1,49 @@
+{ fetchFromGitHub
+, elfutils
+, pkg-config
+, stdenv
+, zlib
+, lib
+, nixosTests
+}:
+
+stdenv.mkDerivation rec {
+ pname = "libbpf";
+ version = "0.8.1";
+
+ src = fetchFromGitHub {
+ owner = "libbpf";
+ repo = "libbpf";
+ rev = "v${version}";
+ sha256 = "sha256-daVS+TErmDU8ksThOvcepg1A61iD8N8GIkC40cmc9/8=";
+ };
+
+ nativeBuildInputs = [ pkg-config ];
+ buildInputs = [ elfutils zlib ];
+
+ enableParallelBuilding = true;
+ makeFlags = [ "PREFIX=$(out)" "-C src" ];
+
+ passthru.tests = {
+ bpf = nixosTests.bpf;
+ };
+
+ postInstall = ''
+ # install linux's libbpf-compatible linux/btf.h
+ install -Dm444 include/uapi/linux/*.h -t $out/include/linux
+ '';
+
+ # FIXME: Multi-output requires some fixes to the way the pkg-config file is
+ # constructed (it gets put in $out instead of $dev for some reason, with
+ # improper paths embedded). Don't enable it for now.
+
+ # outputs = [ "out" "dev" ];
+
+ meta = with lib; {
+ description = "Upstream mirror of libbpf";
+ homepage = "https://github.com/libbpf/libbpf";
+ license = with licenses; [ lgpl21 /* or */ bsd2 ];
+ maintainers = with maintainers; [ thoughtpolice vcunat saschagrunert martinetd ];
+ platforms = platforms.linux;
+ };
+}
diff --git a/pkgs/os-specific/linux/libbpf/default.nix b/pkgs/os-specific/linux/libbpf/default.nix
index 2c15e3d49ee1..04322a35b4fe 100644
--- a/pkgs/os-specific/linux/libbpf/default.nix
+++ b/pkgs/os-specific/linux/libbpf/default.nix
@@ -9,13 +9,13 @@
stdenv.mkDerivation rec {
pname = "libbpf";
- version = "0.8.1";
+ version = "1.0.1";
src = fetchFromGitHub {
owner = "libbpf";
repo = "libbpf";
rev = "v${version}";
- sha256 = "sha256-daVS+TErmDU8ksThOvcepg1A61iD8N8GIkC40cmc9/8=";
+ sha256 = "sha256-2rzVah+CxCztKnlEWMIQrUS2JJTLiWscfIA1aOBtIzs=";
};
nativeBuildInputs = [ pkg-config ];
diff --git a/pkgs/servers/home-assistant/component-packages.nix b/pkgs/servers/home-assistant/component-packages.nix
index 71a928b9d856..4137c42e9926 100644
--- a/pkgs/servers/home-assistant/component-packages.nix
+++ b/pkgs/servers/home-assistant/component-packages.nix
@@ -2,7 +2,7 @@
# Do not edit!
{
- version = "2022.9.7";
+ version = "2022.10.0";
components = {
"abode" = ps: with ps; [
abodepy
@@ -84,9 +84,6 @@
"amazon_polly" = ps: with ps; [
boto3
];
- "ambee" = ps: with ps; [
- ambee
- ];
"amberelectric" = ps: with ps; [
amberelectric
];
@@ -197,8 +194,12 @@
bluetooth-adapters
bluetooth-auto-recovery
dbus-fast
+ fnvhash
+ home-assistant-frontend
+ pillow
pyserial
pyudev
+ sqlalchemy
yalexs-ble
yalexs
];
@@ -292,8 +293,12 @@
bluetooth-adapters
bluetooth-auto-recovery
dbus-fast
+ fnvhash
+ home-assistant-frontend
+ pillow
pyserial
pyudev
+ sqlalchemy
];
"blueprint" = ps: with ps; [
];
@@ -307,8 +312,12 @@
bluetooth-adapters
bluetooth-auto-recovery
dbus-fast
+ fnvhash
+ home-assistant-frontend
+ pillow
pyserial
pyudev
+ sqlalchemy
];
"bluetooth_le_tracker" = ps: with ps; [
aiohttp-cors
@@ -317,8 +326,12 @@
bluetooth-adapters
bluetooth-auto-recovery
dbus-fast
+ fnvhash
+ home-assistant-frontend
+ pillow
pyserial
pyudev
+ sqlalchemy
];
"bluetooth_tracker" = ps: with ps; [
bt-proximity
@@ -368,8 +381,12 @@
bluetooth-auto-recovery
bthome-ble
dbus-fast
+ fnvhash
+ home-assistant-frontend
+ pillow
pyserial
pyudev
+ sqlalchemy
];
"buienradar" = ps: with ps; [
buienradar
@@ -429,10 +446,6 @@
];
"clicksend_tts" = ps: with ps; [
];
- "climacell" = ps: with ps; [
- pyclimacell
- pytomorrowio
- ];
"climate" = ps: with ps; [
];
"cloud" = ps: with ps; [
@@ -801,8 +814,12 @@
bluetooth-auto-recovery
construct
dbus-fast
+ fnvhash
+ home-assistant-frontend
+ pillow
pyserial
pyudev
+ sqlalchemy
]; # missing inputs: python-eq3bt
"escea" = ps: with ps; [
pescea
@@ -815,9 +832,13 @@
bluetooth-adapters
bluetooth-auto-recovery
dbus-fast
+ fnvhash
+ home-assistant-frontend
ifaddr
+ pillow
pyserial
pyudev
+ sqlalchemy
zeroconf
];
"etherscan" = ps: with ps; [
@@ -910,8 +931,12 @@
bluetooth-auto-recovery
dbus-fast
fjaraskupan
+ fnvhash
+ home-assistant-frontend
+ pillow
pyserial
pyudev
+ sqlalchemy
];
"fleetgo" = ps: with ps; [
ritassist
@@ -936,9 +961,6 @@
"flume" = ps: with ps; [
pyflume
];
- "flunearyou" = ps: with ps; [
- pyflunearyou
- ];
"flux" = ps: with ps; [
];
"flux_led" = ps: with ps; [
@@ -958,6 +980,8 @@
forecast-solar
];
"forked_daapd" = ps: with ps; [
+ aiohttp-cors
+ spotipy
]; # missing inputs: pyforked-daapd pylibrespot-java
"fortios" = ps: with ps; [
fortiosapi
@@ -1097,6 +1121,10 @@
"google_pubsub" = ps: with ps; [
google-cloud-pubsub
];
+ "google_sheets" = ps: with ps; [
+ aiohttp-cors
+ gspread
+ ];
"google_translate" = ps: with ps; [
gtts
];
@@ -1112,9 +1140,13 @@
bluetooth-adapters
bluetooth-auto-recovery
dbus-fast
+ fnvhash
govee-ble
+ home-assistant-frontend
+ pillow
pyserial
pyudev
+ sqlalchemy
];
"gpsd" = ps: with ps; [
gps3
@@ -1262,9 +1294,13 @@
bluetooth-adapters
bluetooth-auto-recovery
dbus-fast
+ fnvhash
+ home-assistant-frontend
ifaddr
+ pillow
pyserial
pyudev
+ sqlalchemy
zeroconf
];
"homematic" = ps: with ps; [
@@ -1303,8 +1339,7 @@
aiohue
];
"huisbaasje" = ps: with ps; [
- huisbaasje-client
- ];
+ ]; # missing inputs: energyflip-client
"humidifier" = ps: with ps; [
];
"hunterdouglas_powerview" = ps: with ps; [
@@ -1327,6 +1362,21 @@
"iaqualink" = ps: with ps; [
iaqualink
];
+ "ibeacon" = ps: with ps; [
+ aiohttp-cors
+ bleak-retry-connector
+ bleak
+ bluetooth-adapters
+ bluetooth-auto-recovery
+ dbus-fast
+ fnvhash
+ home-assistant-frontend
+ ibeacon-ble
+ pillow
+ pyserial
+ pyudev
+ sqlalchemy
+ ];
"icloud" = ps: with ps; [
pyicloud
];
@@ -1371,9 +1421,13 @@
bluetooth-adapters
bluetooth-auto-recovery
dbus-fast
+ fnvhash
+ home-assistant-frontend
inkbird-ble
+ pillow
pyserial
pyudev
+ sqlalchemy
];
"input_boolean" = ps: with ps; [
];
@@ -1477,12 +1531,42 @@
aiokef
getmac
];
+ "kegtron" = ps: with ps; [
+ aiohttp-cors
+ bleak-retry-connector
+ bleak
+ bluetooth-adapters
+ bluetooth-auto-recovery
+ dbus-fast
+ fnvhash
+ home-assistant-frontend
+ kegtron-ble
+ pillow
+ pyserial
+ pyudev
+ sqlalchemy
+ ];
"keyboard" = ps: with ps; [
]; # missing inputs: pyuserinput
"keyboard_remote" = ps: with ps; [
aionotify
evdev
];
+ "keymitt_ble" = ps: with ps; [
+ pymicrobot
+ aiohttp-cors
+ bleak-retry-connector
+ bleak
+ bluetooth-adapters
+ bluetooth-auto-recovery
+ dbus-fast
+ fnvhash
+ home-assistant-frontend
+ pillow
+ pyserial
+ pyudev
+ sqlalchemy
+ ];
"kira" = ps: with ps; [
pykira
];
@@ -1546,9 +1630,13 @@
bluetooth-adapters
bluetooth-auto-recovery
dbus-fast
+ fnvhash
+ home-assistant-frontend
led-ble
+ pillow
pyserial
pyudev
+ sqlalchemy
];
"lg_netcast" = ps: with ps; [
pylgnetcast
@@ -1556,6 +1644,9 @@
"lg_soundbar" = ps: with ps; [
temescal
];
+ "lidarr" = ps: with ps; [
+ aiopyarr
+ ];
"life360" = ps: with ps; [
life360
];
@@ -1713,8 +1804,12 @@
bluetooth-adapters
bluetooth-auto-recovery
dbus-fast
+ fnvhash
+ home-assistant-frontend
+ pillow
pyserial
pyudev
+ sqlalchemy
]; # missing inputs: melnor-bluetooth
"meraki" = ps: with ps; [
aiohttp-cors
@@ -1786,9 +1881,13 @@
bluetooth-adapters
bluetooth-auto-recovery
dbus-fast
+ fnvhash
+ home-assistant-frontend
moat-ble
+ pillow
pyserial
pyudev
+ sqlalchemy
];
"mobile_app" = ps: with ps; [
pynacl
@@ -1953,6 +2052,9 @@
];
"nfandroidtv" = ps: with ps; [
]; # missing inputs: notifications-android-tv
+ "nibe_heatpump" = ps: with ps; [
+ tenacity
+ ]; # missing inputs: nibe
"nightscout" = ps: with ps; [
py-nightscout
];
@@ -1980,6 +2082,9 @@
];
"noaa_tides" = ps: with ps; [
]; # missing inputs: noaa-coops
+ "nobo_hub" = ps: with ps; [
+ pynobo
+ ];
"norway_air" = ps: with ps; [
pymetno
];
@@ -2291,9 +2396,13 @@
bluetooth-adapters
bluetooth-auto-recovery
dbus-fast
+ fnvhash
+ home-assistant-frontend
+ pillow
pyserial
pyudev
qingping-ble
+ sqlalchemy
];
"qld_bushfire" = ps: with ps; [
georss-qld-bushfire-alert-client
@@ -2323,6 +2432,7 @@
rachiopy
];
"radarr" = ps: with ps; [
+ aiopyarr
];
"radio_browser" = ps: with ps; [
radios
@@ -2541,9 +2651,13 @@
bluetooth-adapters
bluetooth-auto-recovery
dbus-fast
+ fnvhash
+ home-assistant-frontend
+ pillow
pyserial
pyudev
sensorpro-ble
+ sqlalchemy
];
"sensorpush" = ps: with ps; [
aiohttp-cors
@@ -2552,9 +2666,13 @@
bluetooth-adapters
bluetooth-auto-recovery
dbus-fast
+ fnvhash
+ home-assistant-frontend
+ pillow
pyserial
pyudev
sensorpush-ble
+ sqlalchemy
];
"sentry" = ps: with ps; [
sentry-sdk
@@ -2823,6 +2941,8 @@
];
"switch_as_x" = ps: with ps; [
];
+ "switchbee" = ps: with ps; [
+ ]; # missing inputs: pyswitchbee
"switchbot" = ps: with ps; [
pyswitchbot
aiohttp-cors
@@ -2831,8 +2951,12 @@
bluetooth-adapters
bluetooth-auto-recovery
dbus-fast
+ fnvhash
+ home-assistant-frontend
+ pillow
pyserial
pyudev
+ sqlalchemy
];
"switcher_kis" = ps: with ps; [
aioswitcher
@@ -2937,8 +3061,12 @@
bluetooth-adapters
bluetooth-auto-recovery
dbus-fast
+ fnvhash
+ home-assistant-frontend
+ pillow
pyserial
pyudev
+ sqlalchemy
thermobeacon-ble
];
"thermopro" = ps: with ps; [
@@ -2948,8 +3076,12 @@
bluetooth-adapters
bluetooth-auto-recovery
dbus-fast
+ fnvhash
+ home-assistant-frontend
+ pillow
pyserial
pyudev
+ sqlalchemy
thermopro-ble
];
"thermoworks_smoke" = ps: with ps; [
@@ -2975,6 +3107,21 @@
"tile" = ps: with ps; [
pytile
];
+ "tilt_ble" = ps: with ps; [
+ aiohttp-cors
+ bleak-retry-connector
+ bleak
+ bluetooth-adapters
+ bluetooth-auto-recovery
+ dbus-fast
+ fnvhash
+ home-assistant-frontend
+ pillow
+ pyserial
+ pyudev
+ sqlalchemy
+ tilt-ble
+ ];
"time_date" = ps: with ps; [
];
"timer" = ps: with ps; [
@@ -3136,8 +3283,6 @@
pyserial
pyudev
];
- "uscis" = ps: with ps; [
- ]; # missing inputs: uscisstatus
"usgs_earthquakes_feed" = ps: with ps; [
aio-geojson-usgs-earthquakes
];
@@ -3329,8 +3474,12 @@
bluetooth-adapters
bluetooth-auto-recovery
dbus-fast
+ fnvhash
+ home-assistant-frontend
+ pillow
pyserial
pyudev
+ sqlalchemy
xiaomi-ble
];
"xiaomi_miio" = ps: with ps; [
@@ -3356,8 +3505,12 @@
bluetooth-adapters
bluetooth-auto-recovery
dbus-fast
+ fnvhash
+ home-assistant-frontend
+ pillow
pyserial
pyudev
+ sqlalchemy
yalexs-ble
];
"yamaha" = ps: with ps; [
@@ -3481,7 +3634,6 @@
"alert"
"alexa"
"almond"
- "ambee"
"amberelectric"
"ambiclimate"
"ambient_station"
@@ -3489,6 +3641,7 @@
"android_ip_webcam"
"androidtv"
"apache_kafka"
+ "apcupsd"
"api"
"apple_tv"
"application_credentials"
@@ -3537,7 +3690,6 @@
"canary"
"cast"
"cert_expiry"
- "climacell"
"climate"
"cloud"
"cloudflare"
@@ -3583,6 +3735,7 @@
"dnsip"
"doorbird"
"dsmr"
+ "dsmr_reader"
"dte_energy_bridge"
"duckdns"
"dunehd"
@@ -3632,7 +3785,6 @@
"flipr"
"flo"
"flume"
- "flunearyou"
"flux"
"flux_led"
"folder"
@@ -3670,6 +3822,7 @@
"google_assistant"
"google_domains"
"google_pubsub"
+ "google_sheets"
"google_translate"
"google_travel_time"
"google_wifi"
@@ -3712,13 +3865,13 @@
"http"
"huawei_lte"
"hue"
- "huisbaasje"
"humidifier"
"hunterdouglas_powerview"
"hvv_departures"
"hyperion"
"ialarm"
"iaqualink"
+ "ibeacon"
"icloud"
"ifttt"
"ign_sismologia"
@@ -3751,6 +3904,8 @@
"juicenet"
"justnimbus"
"keenetic_ndms2"
+ "kegtron"
+ "keymitt_ble"
"kira"
"kmtronic"
"knx"
@@ -3765,6 +3920,7 @@
"lcn"
"led_ble"
"lg_soundbar"
+ "lidarr"
"life360"
"lifx"
"light"
@@ -3843,6 +3999,7 @@
"nightscout"
"nina"
"no_ip"
+ "nobo_hub"
"notify"
"notify_events"
"notion"
@@ -4036,6 +4193,7 @@
"threshold"
"tibber"
"tile"
+ "tilt_ble"
"time_date"
"timer"
"tod"
diff --git a/pkgs/servers/home-assistant/default.nix b/pkgs/servers/home-assistant/default.nix
index 357e381ac741..58a03f3da7f4 100644
--- a/pkgs/servers/home-assistant/default.nix
+++ b/pkgs/servers/home-assistant/default.nix
@@ -56,28 +56,6 @@ let
});
})
- (self: super: {
- bleak = super.bleak.overridePythonAttrs (oldAttrs: rec {
- version = "0.17.0";
- src = fetchFromGitHub {
- owner = "hbldh";
- repo = "bleak";
- rev = "refs/tags/v${version}";
- hash = "sha256-AnH23AWrLw2jq6gSbx9VoGD8QXeCH5dN7FSVVdj4b3w=";
- };
- });
-
- bleak-retry-connector = super.bleak-retry-connector.overridePythonAttrs (oldAttrs: rec {
- version = "1.17.1";
- src = fetchFromGitHub {
- owner = "Bluetooth-Devices";
- repo = "bleak-retry-connector";
- rev = "refs/tags/v${version}";
- hash = "sha256-FoQ1cDORQaJcr6y9JaO4MigqV6jiBbwKNIIdYDgFNxQ=";
- };
- });
- })
-
(self: super: {
blebox-uniapi = super.blebox-uniapi.overridePythonAttrs (oldAttrs: rec {
version = "2.0.2";
@@ -90,19 +68,6 @@ let
});
})
- (self: super: {
- bluetooth-adapters = super.bluetooth-adapters.overridePythonAttrs (oldAttrs: rec {
- version = "0.4.1";
- propagatedBuildInputs = oldAttrs.propagatedBuildInputs ++ [ super.dbus-fast ];
- src = fetchFromGitHub {
- owner = "Bluetooth-Devices";
- repo = "bluetooth-adapters";
- rev = "refs/tags/v${version}";
- hash = "sha256-LAT4r6RHJWTkrZvuL1aSQDiztvXiOJwGmNQKGFnvFB8=";
- };
- });
- })
-
(self: super: {
gridnet = super.gridnet.overridePythonAttrs (oldAttrs: rec {
version = "4.0.0";
@@ -163,18 +128,6 @@ let
});
})
- (self: super: {
- plugwise = super.plugwise.overridePythonAttrs (oldAttrs: rec {
- version = "0.20.1";
- src = fetchFromGitHub {
- owner = "plugwise";
- repo = "python-plugwise";
- rev = "refs/tags/v${version}";
- hash = "sha256-Sk7L0JPwn7IXVl5GeERxrG/vrHXeNwUjW1mgm4g40Ng=";
- };
- });
- })
-
# Pinned due to API changes in 0.1.0
(self: super: {
poolsense = super.poolsense.overridePythonAttrs (oldAttrs: rec {
@@ -200,26 +153,12 @@ let
});
})
- (self: super: {
- pyatmo = super.pyatmo.overridePythonAttrs (oldAttrs: rec {
- version = "6.2.4";
- src = fetchFromGitHub {
- owner = "jabesq";
- repo = "pyatmo";
- rev = "refs/tags/v${version}";
- hash = "sha256-VXkQByaNA02fwBO2yuf7w1ZF/oJwd/h21de1EQlCu2U=";
- };
- checkInputs = [ super.freezegun ];
- });
- })
-
(self: super: {
pydeconz = super.pydeconz.overridePythonAttrs (oldAttrs: rec {
doCheck = false; # requires pytest-aiohttp>=1.0.0
});
})
-
(self: super: {
python-slugify = super.python-slugify.overridePythonAttrs (oldAttrs: rec {
pname = "python-slugify";
@@ -243,17 +182,6 @@ let
});
})
- (self: super: {
- solax = super.solax.overridePythonAttrs (oldAttrs: rec {
- version = "0.2.9";
- src = super.fetchPypi {
- pname = "solax";
- inherit version;
- hash = "sha256-5m2wxdTshAsEfldPAyXqAYYtH1VjqERRBUGzX6pV85I=";
- };
- });
- })
-
(self: super: {
pysoma = super.pysoma.overridePythonAttrs (oldAttrs: rec {
version = "0.0.10";
@@ -333,7 +261,7 @@ let
extraPackagesFile = writeText "home-assistant-packages" (lib.concatMapStringsSep "\n" (pkg: pkg.pname) extraBuildInputs);
# Don't forget to run parse-requirements.py after updating
- hassVersion = "2022.9.7";
+ hassVersion = "2022.10.0";
in python.pkgs.buildPythonApplication rec {
pname = "homeassistant";
@@ -351,7 +279,7 @@ in python.pkgs.buildPythonApplication rec {
owner = "home-assistant";
repo = "core";
rev = version;
- hash = "sha256-V6/y5HnJh8AVwkSg3uanYQRNvDcD1P0L+wBu98NpDek=";
+ hash = "sha256-BTUuQ4qAP/O53P289ldYlMsLlaNek/FOeDYHwnjCwvE=";
};
# leave this in, so users don't have to constantly update their downstream patch handling
diff --git a/pkgs/servers/home-assistant/frontend.nix b/pkgs/servers/home-assistant/frontend.nix
index 0807320ff1a6..87e49146ac07 100644
--- a/pkgs/servers/home-assistant/frontend.nix
+++ b/pkgs/servers/home-assistant/frontend.nix
@@ -4,7 +4,7 @@ buildPythonPackage rec {
# the frontend version corresponding to a specific home-assistant version can be found here
# https://github.com/home-assistant/home-assistant/blob/master/homeassistant/components/frontend/manifest.json
pname = "home-assistant-frontend";
- version = "20220907.2";
+ version = "20221005.0";
format = "wheel";
src = fetchPypi {
@@ -12,7 +12,7 @@ buildPythonPackage rec {
pname = "home_assistant_frontend";
dist = "py3";
python = "py3";
- sha256 = "sha256-ykId53EMPRXmMmoS55ZtjF6UR/JVPtBXFqjwuK2E2F4=";
+ sha256 = "sha256-Tc6MxUPEdL7jOyUwGm1H0c3w7HC15NZ1FGyp681GRYw=";
};
# there is nothing to strip in this package
diff --git a/pkgs/servers/home-assistant/tests.nix b/pkgs/servers/home-assistant/tests.nix
index feb7331f05de..c40d9e71989c 100644
--- a/pkgs/servers/home-assistant/tests.nix
+++ b/pkgs/servers/home-assistant/tests.nix
@@ -13,12 +13,14 @@ let
config = [ pydispatcher ];
generic = [ av ];
google_translate = [ mutagen ];
+ google_sheets = [ oauth2client ];
homeassistant_sky_connect = [ bellows zha-quirks zigpy-deconz zigpy-xbee zigpy-zigate zigpy-znp ];
homeassistant_yellow = [ bellows zha-quirks zigpy-deconz zigpy-xbee zigpy-zigate zigpy-znp ];
lovelace = [ PyChromecast ];
nest = [ av ];
onboarding = [ pymetno radios rpi-bad-power ];
raspberry_pi = [ rpi-bad-power ];
+ tilt_ble = [ govee-ble ibeacon-ble ];
tomorrowio = [ pyclimacell ];
version = [ aioaseko ];
xiaomi_miio = [ arrow ];
diff --git a/pkgs/servers/mail/rspamd/default.nix b/pkgs/servers/mail/rspamd/default.nix
index 05d71c9bad32..65266c86d939 100644
--- a/pkgs/servers/mail/rspamd/default.nix
+++ b/pkgs/servers/mail/rspamd/default.nix
@@ -11,13 +11,13 @@ assert withHyperscan -> stdenv.isx86_64;
stdenv.mkDerivation rec {
pname = "rspamd";
- version = "3.2";
+ version = "3.3";
src = fetchFromGitHub {
owner = "rspamd";
repo = "rspamd";
rev = version;
- sha256 = "122d5m1nfxxz93bhsk8lm4dazvdknzphb0a1188m7bsa4iynbfv2";
+ sha256 = "sha256-VBNRdkJxO3OSl6ap0BZl4bxJdu0cUNxiH+TrseyGZ1s=";
};
hardeningEnable = [ "pie" ];
diff --git a/pkgs/servers/monitoring/telegraf/default.nix b/pkgs/servers/monitoring/telegraf/default.nix
index d803f68ee3a1..5450853c8e8f 100644
--- a/pkgs/servers/monitoring/telegraf/default.nix
+++ b/pkgs/servers/monitoring/telegraf/default.nix
@@ -2,7 +2,7 @@
buildGoModule rec {
pname = "telegraf";
- version = "1.23.3";
+ version = "1.24.2";
excludedPackages = "test";
@@ -12,10 +12,10 @@ buildGoModule rec {
owner = "influxdata";
repo = "telegraf";
rev = "v${version}";
- sha256 = "sha256-RkyHEcz5T8BZoIeLK5OjrJVBNQg5rfFDcHpE52sNM6U=";
+ sha256 = "sha256-2DUP3g7k0DLXlmhCZH0IUgWpYbdUnRjtsc7uEioYzrE=";
};
- vendorSha256 = "sha256-JvDX55JY5B7f+6GK7x6D1iSyM/h2l5MuAkH2YXodYdM=";
+ vendorSha256 = "sha256-RsNsjDUAqNtNDqCC+UjKTw4ue4Yd0A7k8tU+wYiQIbc=";
proxyVendor = true;
ldflags = [
diff --git a/pkgs/servers/redpanda/default.nix b/pkgs/servers/redpanda/default.nix
index b7a665a95e82..f941114881c4 100644
--- a/pkgs/servers/redpanda/default.nix
+++ b/pkgs/servers/redpanda/default.nix
@@ -1,13 +1,13 @@
{ lib, stdenv, fetchzip }:
let
- version = "22.2.4";
+ version = "22.2.5";
platform = if stdenv.isLinux then "linux" else "darwin";
arch = if stdenv.isAarch64 then "arm" else "amd";
sha256s = {
darwin.amd = "sha256-AXk3aP1SGiHTfHTCBRTagX0DAVmdcVVIkxWaTnZxB8g=";
darwin.arm = "sha256-pvOVvNc8lZ2d2fVZVYWvumVWYpnLORNY/3o1t4BN2N4=";
- linux.amd = "sha256-2JoHy0SF/oj86Dhu47g2IYTiNdjB2Bu/Zc0DGYaUjLo=";
+ linux.amd = "sha256-cQtUu3mVTcRm1HYlzw+nOqTOx6W0XuALkip9uFXyLeM=";
linux.arm = "sha256-WHjYAbytiu747jFqN0KZ/CkIwAVI7fb32ywtRiQOBm8=";
};
in stdenv.mkDerivation rec {
diff --git a/pkgs/servers/roon-server/default.nix b/pkgs/servers/roon-server/default.nix
index 755b7920c1e0..5beeb9b6011f 100644
--- a/pkgs/servers/roon-server/default.nix
+++ b/pkgs/servers/roon-server/default.nix
@@ -15,7 +15,7 @@
, stdenv
}:
let
- version = "1.8-1105";
+ version = "2.0-1128";
urlVersion = builtins.replaceStrings [ "." "-" ] [ "00" "0" ] version;
in
stdenv.mkDerivation {
@@ -23,8 +23,8 @@ stdenv.mkDerivation {
inherit version;
src = fetchurl {
- url = "https://download.roonlabs.com/builds/RoonServer_linuxx64_${urlVersion}.tar.bz2";
- hash = "sha256-YijqoJ0JqAhaNQ7GNaOilEhbVqmd62Plp1ykjwQw3aw=";
+ url = "https://download.roonlabs.com/updates/production/RoonServer_linuxx64_${urlVersion}.tar.bz2";
+ hash = "sha256-PR3LR7u9X6eUAyoAW1tXv3LzqoVz3RQ0MZwdF0iAXJ8=";
};
dontConfigure = true;
diff --git a/pkgs/servers/snappymail/default.nix b/pkgs/servers/snappymail/default.nix
index 1f118d33699a..8df0dc1e4b11 100644
--- a/pkgs/servers/snappymail/default.nix
+++ b/pkgs/servers/snappymail/default.nix
@@ -2,11 +2,11 @@
, dataPath ? "/var/lib/snappymail" }:
stdenv.mkDerivation rec {
pname = "snappymail";
- version = "2.18.3";
+ version = "2.18.4";
src = fetchurl {
url = "https://github.com/the-djmaze/snappymail/releases/download/v${version}/snappymail-${version}.tar.gz";
- sha256 = "sha256-QAdR7fhF05taVtoUqqbw6EELnSDwRtX2O43VN8p6L7Q=";
+ sha256 = "sha256-DROYIX6EngVjcS5WWf/svFE9AQ2kOruwGpM0qF8wQf8=";
};
sourceRoot = "snappymail";
diff --git a/pkgs/servers/sql/mariadb/default.nix b/pkgs/servers/sql/mariadb/default.nix
index f8a87ae81424..7190f1209e08 100644
--- a/pkgs/servers/sql/mariadb/default.nix
+++ b/pkgs/servers/sql/mariadb/default.nix
@@ -106,7 +106,7 @@ commonOptions = packageSettings: rec { # attributes common to both builds
postInstall = ''
# Remove Development components. Need to use libmysqlclient.
rm "$out"/lib/mysql/plugin/daemon_example.ini
- rm "$out"/lib/{libmariadbclient.a,libmysqlclient.a,libmysqlclient_r.a,libmysqlservices.a}
+ rm "$out"/lib/{libmariadb.a,libmariadbclient.a,libmysqlclient.a,libmysqlclient_r.a,libmysqlservices.a}
rm -f "$out"/bin/{mariadb-config,mariadb_config,mysql_config}
rm -r $out/include
rm -r $out/lib/pkgconfig
diff --git a/pkgs/servers/tmate-ssh-server/default.nix b/pkgs/servers/tmate-ssh-server/default.nix
index dd1c6ad05c48..539b456c9d7f 100644
--- a/pkgs/servers/tmate-ssh-server/default.nix
+++ b/pkgs/servers/tmate-ssh-server/default.nix
@@ -1,14 +1,28 @@
-{ lib, stdenv, fetchFromGitHub, autoreconfHook, cmake, libtool, pkg-config
-, zlib, openssl, libevent, ncurses, ruby, msgpack, libssh }:
+{ lib
+, stdenv
+, fetchFromGitHub
+, autoreconfHook
+, cmake
+, libtool
+, pkg-config
+, zlib
+, openssl
+, libevent
+, ncurses
+, ruby
+, msgpack
+, libssh
+, nixosTests
+}:
stdenv.mkDerivation rec {
pname = "tmate-ssh-server";
version = "unstable-2021-10-17";
src = fetchFromGitHub {
- owner = "tmate-io";
- repo = "tmate-ssh-server";
- rev = "1f314123df2bb29cb07427ed8663a81c8d9034fd";
+ owner = "tmate-io";
+ repo = "tmate-ssh-server";
+ rev = "1f314123df2bb29cb07427ed8663a81c8d9034fd";
sha256 = "sha256-9/xlMvtkNWUBRYYnJx20qEgtEcjagH2NtEKZcDOM1BY=";
};
@@ -17,12 +31,13 @@ stdenv.mkDerivation rec {
buildInputs = [ libtool zlib openssl libevent ncurses ruby msgpack libssh ];
nativeBuildInputs = [ autoreconfHook cmake pkg-config ];
+ passthru.tests.tmate-ssh-server = nixosTests.tmate-ssh-server;
+
meta = with lib; {
- homepage = "https://tmate.io/";
+ homepage = "https://tmate.io/";
description = "tmate SSH Server";
- license = licenses.mit;
- platforms = platforms.unix;
+ license = licenses.mit;
+ platforms = platforms.unix;
maintainers = with maintainers; [ ck3d ];
};
}
-
diff --git a/pkgs/test/cuda/cuda-samples/extension.nix b/pkgs/test/cuda/cuda-samples/extension.nix
index 4c93845d1db6..9ffca188cb25 100644
--- a/pkgs/test/cuda/cuda-samples/extension.nix
+++ b/pkgs/test/cuda/cuda-samples/extension.nix
@@ -11,6 +11,9 @@ final: prev: let
"11.4" = "082dkk5y34wyvjgj2p5j1d00rk8xaxb9z0mhvz16bd469r1bw2qk";
"11.5" = "sha256-AKRZbke0K59lakhTi8dX2cR2aBuWPZkiQxyKaZTvHrI=";
"11.6" = "sha256-AsLNmAplfuQbXg9zt09tXAuFJ524EtTYsQuUlV1tPkE=";
+ # the tag 11.7 does not exists: see https://github.com/NVIDIA/cuda-samples/issues/128
+ # maybe fixed by https://github.com/NVIDIA/cuda-samples/pull/133
+ "11.7" = throw "The tag 11.7 of cuda-samples does not exists (see see https://github.com/NVIDIA/cuda-samples/issues/128)";
}.${prev.cudaVersion};
in {
diff --git a/pkgs/tools/misc/bash_unit/default.nix b/pkgs/tools/misc/bash_unit/default.nix
index 4a72557f9a01..90e34286d38e 100644
--- a/pkgs/tools/misc/bash_unit/default.nix
+++ b/pkgs/tools/misc/bash_unit/default.nix
@@ -4,13 +4,13 @@
stdenv.mkDerivation rec {
pname = "bash_unit";
- version = "2.0.0";
+ version = "2.0.1";
src = fetchFromGitHub {
owner = "pgrange";
repo = pname;
rev = "v${version}";
- sha256 = "sha256-ekkyyp280YRXMuNXbiV78Hrfd/zk2nESE1bRCpUP1eE=";
+ sha256 = "sha256-P3fDfv7SexrNMynZBbgwwZcH2H/t4bwFM4HULlLaiM4=";
};
installPhase = ''
diff --git a/pkgs/tools/misc/esphome/default.nix b/pkgs/tools/misc/esphome/default.nix
index 3ea44a8e30c6..bad958bb82c5 100644
--- a/pkgs/tools/misc/esphome/default.nix
+++ b/pkgs/tools/misc/esphome/default.nix
@@ -15,14 +15,14 @@ let
in
with python.pkgs; buildPythonApplication rec {
pname = "esphome";
- version = "2022.9.2";
+ version = "2022.9.3";
format = "setuptools";
src = fetchFromGitHub {
owner = pname;
repo = pname;
rev = "refs/tags/${version}";
- hash = "sha256-PVJZ2cOguXIh96246AVofTg1ZWqWJPFcDXlPk3Rn+Cs=";
+ hash = "sha256-xrfNdJD8c0PbtipGTQNSCcXaWu4TEyER6lHtREdVcFI=";
};
postPatch = ''
diff --git a/pkgs/tools/misc/hdl-dump/default.nix b/pkgs/tools/misc/hdl-dump/default.nix
index 0d2dfbc504ac..8990a447dc0c 100644
--- a/pkgs/tools/misc/hdl-dump/default.nix
+++ b/pkgs/tools/misc/hdl-dump/default.nix
@@ -5,13 +5,13 @@
stdenv.mkDerivation rec {
pname = "hdl-dump";
- version = "unstable-2021-08-20";
+ version = "unstable-2022-09-19";
src = fetchFromGitHub {
owner = "ps2homebrew";
repo = pname;
- rev = "1e760d7672dc12a36c09690b8c9b20d6642a2926";
- sha256 = "sha256-NMExi2pUyj8vRn9beT2YvnEogRw/xzgqE+roaZ/vNZs=";
+ rev = "87d3099d2ba39a15e86ebc7dc725e8eaa49f2d5f";
+ hash = "sha256-eBqF4OGEaLQXQ4JMtD/Yn+f97RzKVsnC+4oyiEhLTUM=";
};
makeFlags = [ "RELEASE=yes" ];
diff --git a/pkgs/tools/misc/osm2pgsql/default.nix b/pkgs/tools/misc/osm2pgsql/default.nix
index 297f98ee3db3..ee290402962c 100644
--- a/pkgs/tools/misc/osm2pgsql/default.nix
+++ b/pkgs/tools/misc/osm2pgsql/default.nix
@@ -14,17 +14,18 @@
, libosmium
, protozero
, rapidjson
+, testers
}:
-stdenv.mkDerivation rec {
+stdenv.mkDerivation (finalAttrs: {
pname = "osm2pgsql";
- version = "1.7.0";
+ version = "1.7.1";
src = fetchFromGitHub {
owner = "openstreetmap";
- repo = pname;
- rev = version;
- hash = "sha256-MWJzCZdqvy/nH1Doj0fmGuzTubaHDnPOED7qgzvJ3ZU=";
+ repo = "osm2pgsql";
+ rev = finalAttrs.version;
+ hash = "sha256-+//cAoN8m66SboEYP5Dhtm0q0+oyvEr5o584e4JQ9xM=";
};
postPatch = ''
@@ -45,6 +46,10 @@ stdenv.mkDerivation rec {
"-DEXTERNAL_FMT=ON"
] ++ lib.optional withLuaJIT "-DWITH_LUAJIT:BOOL=ON";
+ passthru.tests.version = testers.testVersion {
+ package = finalAttrs.finalPackage;
+ };
+
meta = with lib; {
description = "OpenStreetMap data to PostgreSQL converter";
homepage = "https://osm2pgsql.org";
@@ -52,4 +57,4 @@ stdenv.mkDerivation rec {
platforms = platforms.unix;
maintainers = with maintainers; [ jglukasik das-g ];
};
-}
+})
diff --git a/pkgs/tools/misc/usbimager/default.nix b/pkgs/tools/misc/usbimager/default.nix
index 1aac4c5c8024..095e6ac40084 100644
--- a/pkgs/tools/misc/usbimager/default.nix
+++ b/pkgs/tools/misc/usbimager/default.nix
@@ -1,4 +1,4 @@
-{ lib, stdenv, fetchFromGitLab, pkg-config
+{ lib, stdenv, fetchFromGitLab, pkg-config, wrapGAppsHook
, withLibui ? true, gtk3
, withUdisks ? stdenv.isLinux, udisks, glib
, libX11 }:
@@ -16,7 +16,7 @@ stdenv.mkDerivation rec {
sourceRoot = "source/src/";
- nativeBuildInputs = [ pkg-config ];
+ nativeBuildInputs = [ pkg-config wrapGAppsHook ];
buildInputs = lib.optionals withUdisks [ udisks glib ]
++ lib.optional (!withLibui) libX11
++ lib.optional withLibui gtk3;
diff --git a/pkgs/tools/misc/vector/default.nix b/pkgs/tools/misc/vector/default.nix
index 5f8074cbdaff..767369123010 100644
--- a/pkgs/tools/misc/vector/default.nix
+++ b/pkgs/tools/misc/vector/default.nix
@@ -108,6 +108,6 @@ rustPlatform.buildRustPackage {
homepage = "https://github.com/timberio/vector";
license = with licenses; [ asl20 ];
maintainers = with maintainers; [ thoughtpolice happysalada ];
- platforms = [ "aarch64-linux" "x86_64-linux" "aarch64-darwin" ];
+ platforms = with platforms; all;
};
}
diff --git a/pkgs/tools/system/uefitool/variants.nix b/pkgs/tools/system/uefitool/variants.nix
index 3ea24e55c6e0..647922046c66 100644
--- a/pkgs/tools/system/uefitool/variants.nix
+++ b/pkgs/tools/system/uefitool/variants.nix
@@ -3,8 +3,8 @@ let
common = opts: libsForQt5.callPackage (import ./common.nix opts) {};
in rec {
new-engine = common rec {
- version = "A61";
- sha256 = "sha256-6RxWAR0KY6o98RwOLRHy6wShTHAaQlvYYbCNLa5FzH4=";
+ version = "A62";
+ sha256 = "sha256-U89j0BV57luv1c9hoYJtisKLxFezuaGFokZ29/NJ0xg=";
installFiles = [ "build/UEFITool/UEFITool" "build/UEFIFind/UEFIFind" "build/UEFIExtract/UEFIExtract" ];
};
old-engine = common rec {
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index bd331840e524..9cfdc1f70e02 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -5554,7 +5554,8 @@ with pkgs;
cudaPackages_11_4 = callPackage ./cuda-packages.nix { cudaVersion = "11.4"; };
cudaPackages_11_5 = callPackage ./cuda-packages.nix { cudaVersion = "11.5"; };
cudaPackages_11_6 = callPackage ./cuda-packages.nix { cudaVersion = "11.6"; };
- cudaPackages_11 = cudaPackages_11_6;
+ cudaPackages_11_7 = callPackage ./cuda-packages.nix { cudaVersion = "11.7"; };
+ cudaPackages_11 = cudaPackages_11_7;
cudaPackages = recurseIntoAttrs cudaPackages_11;
# TODO: move to alias
@@ -16167,7 +16168,10 @@ with pkgs;
bump = callPackage ../development/tools/github/bump { };
- libbpf = callPackage ../os-specific/linux/libbpf { };
+ libbpf_1 = callPackage ../os-specific/linux/libbpf { };
+ libbpf_0 = callPackage ../os-specific/linux/libbpf/0.x.nix { };
+ # until more issues are fixed default to libbpf 0.x
+ libbpf = libbpf_0;
bpftools = callPackage ../os-specific/linux/bpftools { };
@@ -30146,6 +30150,8 @@ with pkgs;
onlyoffice-bin = callPackage ../applications/office/onlyoffice-bin { };
+ opcr-policy = callPackage ../development/tools/opcr-policy { };
+
open-policy-agent = callPackage ../development/tools/open-policy-agent { };
openshift = callPackage ../applications/networking/cluster/openshift { };