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