nixpkgs/pkgs/development/libraries/libssh2/1_10.nix
Vladimír Čunát 28b6a91047
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.
2021-09-13 11:27:50 +02:00

11 lines
271 B
Nix

{ 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 = [];
})