mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 09:53:10 +00:00
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:
parent
d6f028d12d
commit
28b6a91047
10
pkgs/development/libraries/libssh2/1_10.nix
Normal file
10
pkgs/development/libraries/libssh2/1_10.nix
Normal 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 = [];
|
||||
})
|
@ -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 { };
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user