lol

pgsync: 0.6.7 -> 0.6.8

+13 -12
+4 -4
pkgs/development/tools/database/pgsync/Gemfile.lock
··· 1 1 GEM 2 2 remote: https://rubygems.org/ 3 3 specs: 4 - parallel (1.20.1) 4 + parallel (1.21.0) 5 5 pg (1.2.3) 6 - pgsync (0.6.7) 6 + pgsync (0.6.8) 7 7 parallel 8 8 pg (>= 0.18.2) 9 9 slop (>= 4.8.2) 10 10 tty-spinner 11 - slop (4.9.0) 11 + slop (4.9.1) 12 12 tty-cursor (0.7.1) 13 13 tty-spinner (0.9.3) 14 14 tty-cursor (~> 0.7) ··· 20 20 pgsync 21 21 22 22 BUNDLED WITH 23 - 2.1.4 23 + 2.2.24
+3 -2
pkgs/development/tools/database/pgsync/default.nix
··· 1 - { lib, bundlerApp }: 1 + { lib, bundlerApp, bundlerUpdateScript }: 2 2 3 3 bundlerApp rec { 4 4 gemdir = ./.; 5 5 pname = "pgsync"; 6 6 exes = [ "pgsync" ]; 7 7 8 + passthru.updateScript = bundlerUpdateScript "pgsync"; 9 + 8 10 meta = with lib; { 9 11 description = "Sync data from one Postgres database to another (like `pg_dump`/`pg_restore`)"; 10 12 homepage = "https://github.com/ankane/pgsync"; 11 13 license = with licenses; mit; 12 14 maintainers = with maintainers; [ fabianhjr ]; 13 - platforms = platforms.all; 14 15 }; 15 16 }
+6 -6
pkgs/development/tools/database/pgsync/gemset.nix
··· 4 4 platforms = []; 5 5 source = { 6 6 remotes = ["https://rubygems.org"]; 7 - sha256 = "0055br0mibnqz0j8wvy20zry548dhkakws681bhj3ycb972awkzd"; 7 + sha256 = "1hkfpm78c2vs1qblnva3k1grijvxh87iixcnyd83s3lxrxsjvag4"; 8 8 type = "gem"; 9 9 }; 10 - version = "1.20.1"; 10 + version = "1.21.0"; 11 11 }; 12 12 pg = { 13 13 groups = ["default"]; ··· 25 25 platforms = []; 26 26 source = { 27 27 remotes = ["https://rubygems.org"]; 28 - sha256 = "0kn7cf048zwbap0mifdpzz8if1ah803vgzbx09dfgjwgvfx5w5w6"; 28 + sha256 = "1rsm1irmz97v1kxhnq4lbwwiapqa2zkx0n0xlcf68ca8sfcfql1z"; 29 29 type = "gem"; 30 30 }; 31 - version = "0.6.7"; 31 + version = "0.6.8"; 32 32 }; 33 33 slop = { 34 34 groups = ["default"]; 35 35 platforms = []; 36 36 source = { 37 37 remotes = ["https://rubygems.org"]; 38 - sha256 = "09n6sj4p3b43qq6jmghr9zhgny6719bpca8j6rxnlbq9bsnrd8rj"; 38 + sha256 = "067bvjmjdjs19bvy138hkqqvw8li3732radcd4x5f5dbf30yk3a9"; 39 39 type = "gem"; 40 40 }; 41 - version = "4.9.0"; 41 + version = "4.9.1"; 42 42 }; 43 43 tty-cursor = { 44 44 groups = ["default"];