mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-02 20:03:16 +00:00
75bbd766f5
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/libssh2/versions
25 lines
657 B
Nix
25 lines
657 B
Nix
{ stdenv, fetchurl, openssl, zlib, windows }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "libssh2";
|
|
version = "1.8.2";
|
|
|
|
src = fetchurl {
|
|
url = "${meta.homepage}/download/${pname}-${version}.tar.gz";
|
|
sha256 = "0rqd37pc80nm2pz4sa2m9pfc48axys7jwq1l7z0vii5nyvchg0q8";
|
|
};
|
|
|
|
outputs = [ "out" "dev" "devdoc" ];
|
|
|
|
buildInputs = [ openssl zlib ]
|
|
++ stdenv.lib.optional stdenv.hostPlatform.isMinGW windows.mingw_w64;
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "A client-side C library implementing the SSH2 protocol";
|
|
homepage = https://www.libssh2.org;
|
|
platforms = platforms.all;
|
|
license = licenses.bsd3;
|
|
maintainers = [ ];
|
|
};
|
|
}
|