libssh2: 1.8.0 -> 1.8.1 (SECURITY)

Release announcement:
https://www.libssh2.org/mail/libssh2-devel-archive-2019-03/0009.shtml
Security info:
https://www.libssh2.org/mail/libssh2-devel-archive-2019-03/0010.shtml

(cherry picked from commit efee45b05a)
PR #57884
Co-authored-by: Linus Heckemann <git@sphalerite.org>
This commit is contained in:
Will Dietz
2019-03-18 19:40:37 -05:00
committed by Linus Heckemann
parent feaf8ac463
commit a5ed21434d

View File

@@ -1,11 +1,13 @@
{ stdenv, fetchurlBoot, openssl, zlib, windows }:
stdenv.mkDerivation rec {
name = "libssh2-1.8.0";
name = "${pname}-${version}";
pname = "libssh2";
version = "1.8.1";
src = fetchurlBoot {
url = "${meta.homepage}/download/${name}.tar.gz";
sha256 = "1m3n8spv79qhjq4yi0wgly5s5rc8783jb1pyra9bkx1md0plxwrr";
url = "${meta.homepage}/download/${pname}-${version}.tar.gz";
sha256 = "0ngif3ynk6xqzy5nlfjs7bsmfm81g9f145av0z86kf0vbgrigda0";
};
outputs = [ "out" "dev" "devdoc" ];