From 02f1488917ed3957bba201034aeebf7e606948d8 Mon Sep 17 00:00:00 2001 From: Bobby Rong Date: Tue, 5 Sep 2023 14:56:57 +0000 Subject: [PATCH] =?UTF-8?q?gjs:=201.77.2=20=E2=86=92=201.77.90?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit https://gitlab.gnome.org/GNOME/gjs/-/compare/1.77.2...1.77.90 Disables C++ exceptions by default "This theoretically can improve performance. It makes exceptions from the C++ standard library uncatchable, aborting on allocation failures. However, this is what GLib already does, so it seems like we aren't losing anything by changing the default." https://github.com/GNOME/gjs/commit/42eb928552ff27666948f36b7ad88b070311d7f6 Changelog-reviewed-by: Bobby Rong Changelog-reviewed-by: Jan Tojnar --- pkgs/development/libraries/gjs/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/gjs/default.nix b/pkgs/development/libraries/gjs/default.nix index 8f98b5098b27..c191d5186a67 100644 --- a/pkgs/development/libraries/gjs/default.nix +++ b/pkgs/development/libraries/gjs/default.nix @@ -31,13 +31,13 @@ let ]; in stdenv.mkDerivation rec { pname = "gjs"; - version = "1.77.2"; + version = "1.77.90"; outputs = [ "out" "dev" "installedTests" ]; src = fetchurl { url = "mirror://gnome/sources/gjs/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz"; - sha256 = "sha256-wJUivP4ov/heBmDBdHEOtL8u6/e5fiMX4sEpogoVr9s="; + sha256 = "sha256-cNuWeumL3mmzhHXvYLuaMwKZD6YVuvRoIBlLMCop2/g="; }; patches = [