mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-13 21:50:33 +03:00
tsm-client: 8.1.15.1 -> 8.1.15.2, pin openssl version (#193556)
This commit is contained in:
parent
f10c7ab76e
commit
cce8f0a3e3
3 changed files with 13 additions and 8 deletions
|
@ -223,7 +223,7 @@ let
|
||||||
description = lib.mdDoc ''
|
description = lib.mdDoc ''
|
||||||
The TSM client derivation to be
|
The TSM client derivation to be
|
||||||
added to the system environment.
|
added to the system environment.
|
||||||
It will called with `.override`
|
It will be used with `.override`
|
||||||
to add paths to the client system-options file.
|
to add paths to the client system-options file.
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
|
@ -52,17 +52,17 @@
|
||||||
# going to the `downloadPage` (see `meta` below).
|
# going to the `downloadPage` (see `meta` below).
|
||||||
# Find the "Backup-archive client" table on that page.
|
# Find the "Backup-archive client" table on that page.
|
||||||
# Look for "Download Documents" of the latest release.
|
# Look for "Download Documents" of the latest release.
|
||||||
# Here, two links must be checked:
|
# Here, two links must be checked if existing:
|
||||||
# * "IBM Spectrum Protect Client ... Downloads and READMEs":
|
# * "IBM Spectrum Protect Client ... Downloads and READMEs":
|
||||||
# In the table at the page's bottom,
|
# In the table at the page's bottom,
|
||||||
# check the date of the "Linux x86_64 client"
|
# check the date of the "Linux x86_64 client"
|
||||||
# * "IBM Spectrum Protect BA client ... interim fix downloads"
|
# * "IBM Spectrum Protect BA client ... interim fix downloads"
|
||||||
# Look for the "Linux x86_64 client" rows
|
# Look for the "Linux x86_64 client ..." rows
|
||||||
# in the table at the bottom of each page.
|
# in the table at the bottom of each page.
|
||||||
# Follow the "HTTPS" link of the row with the latest date stamp.
|
# Follow the "HTTPS" link of the row with the latest date stamp.
|
||||||
# In the directory listing to show up, pick the big `.tar` file.
|
# In the directory listing to show up, pick the big `.tar` file.
|
||||||
#
|
#
|
||||||
# (as of 2022-08-13)
|
# (as of 2022-09-29)
|
||||||
|
|
||||||
|
|
||||||
let
|
let
|
||||||
|
@ -107,10 +107,10 @@ let
|
||||||
|
|
||||||
unwrapped = stdenv.mkDerivation rec {
|
unwrapped = stdenv.mkDerivation rec {
|
||||||
name = "tsm-client-${version}-unwrapped";
|
name = "tsm-client-${version}-unwrapped";
|
||||||
version = "8.1.15.1";
|
version = "8.1.15.2";
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = mkSrcUrl version;
|
url = mkSrcUrl version;
|
||||||
hash = "sha512-DURIMlWlmu+l2UT3bAMaFPlwO+UlrfgaYCsm/JonvvC0K0WallhNKFd7sp0amPkU+4QHE2fkFrTGE3/lY+fghQ==";
|
hash = "sha512-ljygVoW7zR+LVHf4LSoBn3qEHISobsxheLxs9NyKWQiwPWpfhSgJO+bX4QRzAmrpSTNrETxHkuXqzGSHaaBlzg==";
|
||||||
};
|
};
|
||||||
inherit meta passthru;
|
inherit meta passthru;
|
||||||
|
|
||||||
|
|
|
@ -6109,8 +6109,13 @@ with pkgs;
|
||||||
|
|
||||||
timeline = callPackage ../applications/office/timeline { };
|
timeline = callPackage ../applications/office/timeline { };
|
||||||
|
|
||||||
tsm-client = callPackage ../tools/backup/tsm-client { };
|
tsm-client = callPackage ../tools/backup/tsm-client {
|
||||||
tsm-client-withGui = callPackage ../tools/backup/tsm-client { enableGui = true; };
|
openssl = openssl_1_1;
|
||||||
|
};
|
||||||
|
tsm-client-withGui = callPackage ../tools/backup/tsm-client {
|
||||||
|
openssl = openssl_1_1;
|
||||||
|
enableGui = true;
|
||||||
|
};
|
||||||
|
|
||||||
tracker = callPackage ../development/libraries/tracker { };
|
tracker = callPackage ../development/libraries/tracker { };
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue