From dde94e3d8322f9f5b24c9f01321f08e64b3c50a9 Mon Sep 17 00:00:00 2001 From: Steve Purcell Date: Fri, 2 Apr 2021 17:50:24 +1300 Subject: defaultGemConfig.pg_query: 2.0.1 -> 2.0.2 pg_query 2.0.2 apparently has working ARM support. This change also re-locks sqlint to use the newer version, and generalises the platform spec to avoid being unnecessarily restrictive. As before, other packages which refer to pg_query are unaffected, because they pin an older version of pg_query which is handled separately in the gem-config expressions. Follow-up to #116785 --- pkgs/development/ruby-modules/gem-config/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'pkgs/development/ruby-modules') diff --git a/pkgs/development/ruby-modules/gem-config/default.nix b/pkgs/development/ruby-modules/gem-config/default.nix index ebe1396d1d7..6d8313954c3 100644 --- a/pkgs/development/ruby-modules/gem-config/default.nix +++ b/pkgs/development/ruby-modules/gem-config/default.nix @@ -211,12 +211,12 @@ in ''; }; - pg_query = attrs: lib.optionalAttrs (attrs.version == "2.0.1") { + pg_query = attrs: lib.optionalAttrs (attrs.version == "2.0.2") { dontBuild = false; postPatch = '' sed -i "s;'https://codeload.github.com.*';'${fetchurl { - url = "https://codeload.github.com/lfittl/libpg_query/tar.gz/13-2.0.0"; - sha256 = "0ghk0dlmrn634p3zjr41fy4ipgw8i44f67a4l8cspqg0395m3rp5"; + url = "https://codeload.github.com/lfittl/libpg_query/tar.gz/13-2.0.2"; + sha256 = "0ms2s6hmy8qyzv4g1hj4i2p5fws1v8lrj73b2knwbp2ipd45yj7y"; }}';" ext/pg_query/extconf.rb ''; } // lib.optionalAttrs (attrs.version == "1.3.0") { -- cgit 1.4.1