libssh2: temporarily add separate 1.10.0

This is an attempt to side-step broken builtins.fetchurl and get
this tarball into cache, so that staging rebuild might proceed.
This commit is contained in:
Vladimír Čunát 2021-09-13 11:27:50 +02:00
parent d6f028d12d
commit 28b6a91047
No known key found for this signature in database
GPG key ID: E747DF1F9575A3AA
2 changed files with 12 additions and 0 deletions

View file

@ -0,0 +1,10 @@
{ libssh2, fetchurl }:
libssh2.overrideAttrs (attrs: rec {
version = "1.10.0";
src = fetchurl {
url = with attrs; "${meta.homepage}/download/${pname}-${version}.tar.gz";
sha256 = "sha256-LWTpDz3tOUuR06LndMogOkF59prr7gMAPlpvpiHkHVE=";
};
patches = [];
})

View file

@ -17526,6 +17526,8 @@ with pkgs;
libssh = callPackage ../development/libraries/libssh { };
libssh2 = callPackage ../development/libraries/libssh2 { };
#FIXME: temporary attribute
libssh2_1_10 = callPackage ../development/libraries/libssh2/1_10.nix { };
libstartup_notification = callPackage ../development/libraries/startup-notification { };