mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-26 07:34:11 +00:00
28b6a91047
This is an attempt to side-step broken builtins.fetchurl and get this tarball into cache, so that staging rebuild might proceed.
11 lines
271 B
Nix
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 = [];
|
|
})
|