mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 07:01:54 +00:00
Add libssh2
svn path=/nixpkgs/trunk/; revision=22975
This commit is contained in:
parent
c0f343b752
commit
217209747b
19
pkgs/development/libraries/libssh2/default.nix
Normal file
19
pkgs/development/libraries/libssh2/default.nix
Normal file
@ -0,0 +1,19 @@
|
||||
{stdenv, fetchurlBoot, openssl, zlib}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "libssh2-1.2.6";
|
||||
|
||||
src = fetchurlBoot {
|
||||
url = "${meta.homepage}/download/${name}.tar.gz";
|
||||
sha256 = "00f6hw972v7jd0rrdr6kx5cn7pa1spyx8xgc7vhjydksgsig3f8b";
|
||||
};
|
||||
|
||||
buildInputs = [ openssl zlib ];
|
||||
|
||||
meta = {
|
||||
description = "A client-side C library implementing the SSH2 protocol";
|
||||
homepage = http://www.libssh2.org;
|
||||
platforms = stdenv.lib.platforms.all;
|
||||
maintainers = [ stdenv.lib.maintainers.urkud ];
|
||||
};
|
||||
}
|
@ -3377,6 +3377,8 @@ let
|
||||
|
||||
libssh = callPackage ../development/libraries/libssh { };
|
||||
|
||||
libssh2 = callPackage ../development/libraries/libssh2 { };
|
||||
|
||||
libstartup_notification = callPackage ../development/libraries/startup-notification { };
|
||||
|
||||
libtasn1 = callPackage ../development/libraries/libtasn1 { };
|
||||
|
Loading…
Reference in New Issue
Block a user