tsm-client: 8.1.25.0 -> 8.1.26.0

"What's new" page:
https://www.ibm.com/docs/en/storage-protect/8.1.26?topic=new-backup-archive-client-updates

Other resources are hidden behind a login portal.

Yarny0 37922d6e c9ebaf5c

Changed files
+5 -5
nixos
modules
programs
services
backup
pkgs
by-name
ts
tsm-client
+1 -1
nixos/modules/programs/tsm-client.nix
···
{
freeformType = attrsOf (either scalarType (listOf scalarType));
# Client system-options file directives are explained here:
-
# https://www.ibm.com/docs/en/storage-protect/8.1.25?topic=commands-processing-options
+
# https://www.ibm.com/docs/en/storage-protect/8.1.26?topic=commands-processing-options
options.servername = mkOption {
type = servernameType;
default = name;
+1 -1
nixos/modules/services/backup/tsm.nix
···
environment.HOME = "/var/lib/tsm-backup";
serviceConfig = {
# for exit status description see
-
# https://www.ibm.com/docs/en/storage-protect/8.1.25?topic=clients-client-return-codes
+
# https://www.ibm.com/docs/en/storage-protect/8.1.26?topic=clients-client-return-codes
SuccessExitStatus = "4 8";
# The `-se` option must come after the command.
# The `-optfile` option suppresses a `dsm.opt`-not-found warning.
+3 -3
pkgs/by-name/ts/tsm-client/package.nix
···
# point to this derivations `/dsmi_dir` directory symlink.
# Other environment variables might be necessary,
# depending on local configuration or usage; see:
-
# https://www.ibm.com/docs/en/storage-protect/8.1.25?topic=solaris-set-api-environment-variables
+
# https://www.ibm.com/docs/en/storage-protect/8.1.26?topic=solaris-set-api-environment-variables
let
···
unwrapped = stdenv.mkDerivation (finalAttrs: {
name = "tsm-client-${finalAttrs.version}-unwrapped";
-
version = "8.1.25.0";
+
version = "8.1.26.0";
src = fetchurl {
url = mkSrcUrl finalAttrs.version;
-
hash = "sha512-OPNjSMnWJ/8Ogy9O0wG0H4cEbYiOwyCVzkWhpG00v/Vm0LDxLzPteMnMOyH8L1egIDhy7lmQYSzI/EC4WWUDDA==";
+
hash = "sha512-Q4iPumiq2uI6TtbBK+0lUZZXp+yy/+LcjatGqJ0zwdkxgRcF4di52Z+O/8CYFPRqSxS+0AiJs6yDd27PbJsR1w==";
};
inherit meta passthru;