Unverified Commit b773879c authored by Weijia Wang's avatar Weijia Wang Committed by GitHub
Browse files

gnunet: 0.25.2 -> 0.26.2; taler: 1.0 -> 1.3 (#484551)

parents 5f2d8841 ed55f933
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -148,6 +148,10 @@

- Switch inhibitors were introduced, which add a pre-switch check that compares a list of strings between the previous and the new generation, and refuses to switch into the new generation when there is a difference between the two lists. This allows to avoid switching into a system when for instance the systemd version changed by adding `config.systemd.package.version` to the switch inhibitors for your system. You can still forcefully switch into any generation by setting `NIXOS_NO_CHECK=1`.

- GNU Taler has been updated to version 1.3.
  This release focuses on getting everything ready for a deployment of GNU Taler by Magnet bank.
  For more details, see the [upstream release notes](https://www.taler.net/en/news/2025-13.html).

- The `services.nextcloud-spreed-signaling` NixOS module has been added to facilitate declarative management of a standalone Spreed signaling server ("High Performance Backend" for Nextcloud Talk).

- `fetchPnpmDeps` and `pnpmConfigHook` were added as top-level attributes, replacing the now deprecated `pnpm.fetchDeps` and `pnpm.configHook` attributes.
+1 −1
Original line number Diff line number Diff line
@@ -91,7 +91,7 @@ in
      type = lib.types.lines;
      defaultText = "None, you must set this yourself.";
      example = ''
        [COIN-KUDOS-n1-t1718140083]
        [COIN_KUDOS-n1-t1718140083]
        VALUE = KUDOS:0.1
        DURATION_WITHDRAW = 7 days
        DURATION_SPEND = 2 years
+8 −8
Original line number Diff line number Diff line
[COIN-KUDOS-n1-t1726827661]
[COIN_KUDOS-n1-t1726827661]
VALUE = KUDOS:0.1
DURATION_WITHDRAW = 7 days
DURATION_SPEND = 2 years
@@ -10,7 +10,7 @@ FEE_REFUND = KUDOS:0
RSA_KEYSIZE = 2048
CIPHER = RSA

[COIN-KUDOS-n2-t1726827661]
[COIN_KUDOS-n2-t1726827661]
VALUE = KUDOS:0.2
DURATION_WITHDRAW = 7 days
DURATION_SPEND = 2 years
@@ -22,7 +22,7 @@ FEE_REFUND = KUDOS:0
RSA_KEYSIZE = 2048
CIPHER = RSA

[COIN-KUDOS-n3-t1726827661]
[COIN_KUDOS-n3-t1726827661]
VALUE = KUDOS:0.4
DURATION_WITHDRAW = 7 days
DURATION_SPEND = 2 years
@@ -34,7 +34,7 @@ FEE_REFUND = KUDOS:0
RSA_KEYSIZE = 2048
CIPHER = RSA

[COIN-KUDOS-n4-t1726827661]
[COIN_KUDOS-n4-t1726827661]
VALUE = KUDOS:0.8
DURATION_WITHDRAW = 7 days
DURATION_SPEND = 2 years
@@ -46,7 +46,7 @@ FEE_REFUND = KUDOS:0
RSA_KEYSIZE = 2048
CIPHER = RSA

[COIN-KUDOS-n5-t1726827661]
[COIN_KUDOS-n5-t1726827661]
VALUE = KUDOS:1.6
DURATION_WITHDRAW = 7 days
DURATION_SPEND = 2 years
@@ -58,7 +58,7 @@ FEE_REFUND = KUDOS:0
RSA_KEYSIZE = 2048
CIPHER = RSA

[COIN-KUDOS-n6-t1726827661]
[COIN_KUDOS-n6-t1726827661]
VALUE = KUDOS:3.2
DURATION_WITHDRAW = 7 days
DURATION_SPEND = 2 years
@@ -70,7 +70,7 @@ FEE_REFUND = KUDOS:0
RSA_KEYSIZE = 2048
CIPHER = RSA

[COIN-KUDOS-n7-t1726827661]
[COIN_KUDOS-n7-t1726827661]
VALUE = KUDOS:6.4
DURATION_WITHDRAW = 7 days
DURATION_SPEND = 2 years
@@ -82,7 +82,7 @@ FEE_REFUND = KUDOS:0
RSA_KEYSIZE = 2048
CIPHER = RSA

[COIN-KUDOS-n8-t1726827661]
[COIN_KUDOS-n8-t1726827661]
VALUE = KUDOS:12.8
DURATION_WITHDRAW = 7 days
DURATION_SPEND = 2 years
+2 −0
Original line number Diff line number Diff line
@@ -51,5 +51,7 @@ stdenv.mkDerivation (finalAttrs: {
  meta = gnunet.meta // {
    description = "GNUnet GTK User Interface";
    homepage = "https://git.gnunet.org/gnunet-gtk.git";
    # https://www.gnunet.org/en/news/2025-09-0.25.0.html
    broken = true;
  };
})
+2 −2
Original line number Diff line number Diff line
@@ -39,11 +39,11 @@

stdenv.mkDerivation (finalAttrs: {
  pname = "gnunet";
  version = "0.25.2";
  version = "0.26.2";

  src = fetchurl {
    url = "mirror://gnu/gnunet/gnunet-${finalAttrs.version}.tar.gz";
    hash = "sha256-6rdvw105OrFfrbY0T4Q1JcFlYZQAc1qm3eCWb2omwuY=";
    hash = "sha256-d7fjcM2EA39XktgSU2vFoQNUCeajSqBo0Iyegb6Ak4k=";
  };

  enableParallelBuilding = true;
Loading