Skip to content

Commit 80b802f

Browse files
authored
taler: 0.13 -> 0.14 (#370096)
2 parents d9be518 + 2730726 commit 80b802f

File tree

7 files changed

+17
-17
lines changed

7 files changed

+17
-17
lines changed

pkgs/applications/networking/p2p/gnunet/default.nix

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@
77

88
stdenv.mkDerivation rec {
99
pname = "gnunet";
10-
version = "0.22.1";
10+
version = "0.23.1";
1111

1212
src = fetchurl {
1313
url = "mirror://gnu/gnunet/gnunet-${version}.tar.gz";
14-
hash = "sha256-gWsgufvA4tLWosnpAYPdAIs4yJOWfjYj4E11/Ezgr6o=";
14+
hash = "sha256-b9BbaQdrOxqOfiCyVOBE/dTG2lMTGWMX894Ij30CXPI=";
1515
};
1616

1717
enableParallelBuilding = true;

pkgs/applications/networking/p2p/gnunet/gtk.nix

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@
1515

1616
stdenv.mkDerivation rec {
1717
pname = "gnunet-gtk";
18-
version = "0.22.0";
18+
version = "0.23.1";
1919

2020
src = fetchurl {
2121
url = "mirror://gnu/gnunet/gnunet-gtk-${version}.tar.gz";
22-
hash = "sha256-bpSEdymFT7q5OQKshD8lGwwMF26yXp0RyUAvNVzua6U=";
22+
hash = "sha256-bmU3799pZVUyrsJ92MKgn5NIqCW76ml4N42Ewi+VWvI=";
2323
};
2424

2525
nativeBuildInputs = [

pkgs/by-name/ta/taler-challenger/package.nix

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,12 @@
2121

2222
stdenv.mkDerivation (finalAttrs: {
2323
pname = "taler-challenger";
24-
version = "0.13.0";
24+
version = "0.14.1";
2525

2626
src = fetchgit {
2727
url = "https://git.taler.net/challenger.git";
2828
rev = "v${finalAttrs.version}";
29-
hash = "sha256-OlUgE40Qo7on9VaMGKJ/MRWActDBqPe7Ja95dv1OFhA=";
29+
hash = "sha256-W7oImw5ptrLVIK8KPtmb7PJKSpmh8KsazxV6reUoRO8=";
3030
};
3131

3232
# https://git.taler.net/challenger.git/tree/bootstrap

pkgs/by-name/ta/taler-exchange/package.nix

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,13 @@
2222

2323
stdenv.mkDerivation (finalAttrs: {
2424
pname = "taler-exchange";
25-
version = "0.13.0";
25+
version = "0.14.1";
2626

2727
src = fetchgit {
2828
url = "https://git.taler.net/exchange.git";
2929
rev = "v${finalAttrs.version}";
3030
fetchSubmodules = true;
31-
hash = "sha256-elVZUuiIMLOG058n+Egpy9oD9T2sLDC4TUCYZTCi0bw=";
31+
hash = "sha256-DD6fX54K1q4f2d/IqC+urVpMkypDRaL3lrBoQieGviI=";
3232
};
3333

3434
patches = [ ./0001-add-TALER_TEMPLATING_init_path.patch ];

pkgs/by-name/ta/taler-merchant/package.nix

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,13 @@
1515

1616
stdenv.mkDerivation (finalAttrs: {
1717
pname = "taler-merchant";
18-
version = "0.13.0";
18+
version = "0.14.1";
1919

2020
src = fetchgit {
2121
url = "https://git.taler.net/merchant.git";
2222
rev = "v${finalAttrs.version}";
2323
fetchSubmodules = true;
24-
hash = "sha256-N3atOOE21OEks3G1LPOM5qo/kq0D5D9gmTfURCBZx6M=";
24+
hash = "sha256-ac7ajHBLW6BJrL0iaa+b7XNZHMEEmbAo17URIdPSXd8=";
2525
};
2626

2727
postUnpack = ''
@@ -32,7 +32,7 @@ stdenv.mkDerivation (finalAttrs: {
3232
# path to the `taler-exchange` package is used.
3333
postPatch = ''
3434
substituteInPlace src/backend/taler-merchant-httpd.c \
35-
--replace-fail 'TALER_TEMPLATING_init ("merchant");' "TALER_TEMPLATING_init_path (\"merchant\", \"$out/share/taler\");"
35+
--replace-fail 'TALER_TEMPLATING_init (TALER_MERCHANT_project_data ())' "TALER_TEMPLATING_init_path (\"merchant\", \"$out/share/taler\")"
3636
3737
substituteInPlace src/backend/taler-merchant-httpd_spa.c \
3838
--replace-fail 'GNUNET_DISK_directory_scan (dn,' "GNUNET_DISK_directory_scan (\"$out/share/taler/merchant/spa/\","
@@ -65,7 +65,7 @@ stdenv.mkDerivation (finalAttrs: {
6565
# NOTE: The executables that need database access fail to detect the
6666
# postgresql library in `$out/lib/taler`, so we need to wrap them.
6767
postInstall = ''
68-
for exec in dbinit httpd webhook wirewatch depositcheck exchange; do
68+
for exec in dbinit httpd webhook wirewatch depositcheck exchangekeyupdate; do
6969
wrapProgram $out/bin/taler-merchant-$exec \
7070
--prefix LD_LIBRARY_PATH : "$out/lib/taler"
7171
done

pkgs/by-name/ta/taler-sync/package.nix

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@
1919

2020
stdenv.mkDerivation (finalAttrs: {
2121
pname = "taler-sync";
22-
version = "0.13.1";
22+
version = "0.14.1";
2323

2424
src = fetchgit {
2525
url = "https://git.taler.net/sync.git";
2626
rev = "v${finalAttrs.version}";
27-
hash = "sha256-v5OQVpyTDWYGJrEbnOIDYu0nZlJcMN5AGunfn6G7s20=";
27+
hash = "sha256-v+BBn9GZ+4Zc8iUebGmLtxAQN+7+cTdG8jNOpi+jN2c=";
2828
};
2929

3030
strictDeps = true;

pkgs/by-name/ta/taler-wallet-core/package.nix

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,12 +37,12 @@ let
3737
in
3838
stdenv.mkDerivation (finalAttrs: {
3939
pname = "taler-wallet-core";
40-
version = "0.13.3";
40+
version = "0.14.1";
4141

4242
src = fetchgit {
4343
url = "https://git.taler.net/wallet-core.git";
4444
rev = "v${finalAttrs.version}";
45-
hash = "sha256-9pRhaQNnIzbhahMaTVVZqLTlAxh7GZxoz4Gf3TDldAA=";
45+
hash = "sha256-Sae83qGPqVwuxKf30zHCmdOoo5rDPBHKSOE1hxNn7Xo=";
4646
};
4747

4848
nativeBuildInputs = [
@@ -56,7 +56,7 @@ stdenv.mkDerivation (finalAttrs: {
5656

5757
pnpmDeps = pnpm.fetchDeps {
5858
inherit (finalAttrs) pname version src;
59-
hash = "sha256-+RxTTm5t0/0hLKxhWILzb0qf6aZzbOZJYJenRpX8UdA=";
59+
hash = "sha256-BVVmv0VVvQ2YhL0zOKiM1oVKJKvqwMGNR47DkcCj874=";
6060
};
6161

6262
buildInputs = [ nodejs ];

0 commit comments

Comments
 (0)