28b6a91047
This is an attempt to side-step broken builtins.fetchurl and get this tarball into cache, so that staging rebuild might proceed.
10 lines
271 B
Nix
10 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 = [];
|
|
})
|