lol

pgsync: init at 0.6.6

+106
+2
pkgs/development/tools/database/pgsync/Gemfile
··· 1 + source 'https://rubygems.org' 2 + gem 'pgsync'
+23
pkgs/development/tools/database/pgsync/Gemfile.lock
··· 1 + GEM 2 + remote: https://rubygems.org/ 3 + specs: 4 + parallel (1.20.1) 5 + pg (1.2.3) 6 + pgsync (0.6.6) 7 + parallel 8 + pg (>= 0.18.2) 9 + slop (>= 4.8.2) 10 + tty-spinner 11 + slop (4.8.2) 12 + tty-cursor (0.7.1) 13 + tty-spinner (0.9.3) 14 + tty-cursor (~> 0.7) 15 + 16 + PLATFORMS 17 + ruby 18 + 19 + DEPENDENCIES 20 + pgsync 21 + 22 + BUNDLED WITH 23 + 2.1.4
+15
pkgs/development/tools/database/pgsync/default.nix
··· 1 + { lib, bundlerApp }: 2 + 3 + bundlerApp rec { 4 + gemdir = ./.; 5 + pname = "pgsync"; 6 + exes = [ "pgsync" ]; 7 + 8 + meta = with lib; { 9 + description = "Sync data from one Postgres database to another (like `pg_dump`/`pg_restore`)"; 10 + homepage = "https://github.com/ankane/pgsync"; 11 + license = with licenses; mit; 12 + maintainers = with maintainers; [ fabianhjr ]; 13 + platforms = platforms.all; 14 + }; 15 + }
+64
pkgs/development/tools/database/pgsync/gemset.nix
··· 1 + { 2 + parallel = { 3 + groups = ["default"]; 4 + platforms = []; 5 + source = { 6 + remotes = ["https://rubygems.org"]; 7 + sha256 = "0055br0mibnqz0j8wvy20zry548dhkakws681bhj3ycb972awkzd"; 8 + type = "gem"; 9 + }; 10 + version = "1.20.1"; 11 + }; 12 + pg = { 13 + groups = ["default"]; 14 + platforms = []; 15 + source = { 16 + remotes = ["https://rubygems.org"]; 17 + sha256 = "13mfrysrdrh8cka1d96zm0lnfs59i5x2g6ps49r2kz5p3q81xrzj"; 18 + type = "gem"; 19 + }; 20 + version = "1.2.3"; 21 + }; 22 + pgsync = { 23 + dependencies = ["parallel" "pg" "slop" "tty-spinner"]; 24 + groups = ["default"]; 25 + platforms = []; 26 + source = { 27 + remotes = ["https://rubygems.org"]; 28 + sha256 = "0wjvcfsgm7xxhb2lxil19qjxvvihqxbjd2ykmm5d43p0h2l9wvxr"; 29 + type = "gem"; 30 + }; 31 + version = "0.6.6"; 32 + }; 33 + slop = { 34 + groups = ["default"]; 35 + platforms = []; 36 + source = { 37 + remotes = ["https://rubygems.org"]; 38 + sha256 = "05d1xv8r9cmd0mmlqpa853yzd7xhcyha063w1g8dpf84scxbxmd3"; 39 + type = "gem"; 40 + }; 41 + version = "4.8.2"; 42 + }; 43 + tty-cursor = { 44 + groups = ["default"]; 45 + platforms = []; 46 + source = { 47 + remotes = ["https://rubygems.org"]; 48 + sha256 = "0j5zw041jgkmn605ya1zc151bxgxl6v192v2i26qhxx7ws2l2lvr"; 49 + type = "gem"; 50 + }; 51 + version = "0.7.1"; 52 + }; 53 + tty-spinner = { 54 + dependencies = ["tty-cursor"]; 55 + groups = ["default"]; 56 + platforms = []; 57 + source = { 58 + remotes = ["https://rubygems.org"]; 59 + sha256 = "0hh5awmijnzw9flmh5ak610x1d00xiqagxa5mbr63ysggc26y0qf"; 60 + type = "gem"; 61 + }; 62 + version = "0.9.3"; 63 + }; 64 + }
+2
pkgs/top-level/all-packages.nix
··· 7481 7481 7482 7482 pgmetrics = callPackage ../tools/misc/pgmetrics { }; 7483 7483 7484 + pgsync = callPackage ../development/tools/database/pgsync { }; 7485 + 7484 7486 pdsh = callPackage ../tools/networking/pdsh { 7485 7487 rsh = true; # enable internal rsh implementation 7486 7488 ssh = openssh;