summary refs log tree commit diff
path: root/pkgs/development/libraries/libssh/default.nix
blob: 889f98d8a7638470c8bf535c472a2617136cc582 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{stdenv, fetchurl, cmake, zlib, openssl}:

stdenv.mkDerivation rec {
  name = "libssh-0.4.8";
  src = fetchurl {
    url = "http://www.libssh.org/files/0.4/${name}.tar.gz";
    sha256 = "05d8i8hwya2gry3lky9pmjpvr9f4wvggszqjjzgxvyy74sj3khhm";
  };
  buildInputs = [ cmake zlib openssl ];
  meta = {
    description = "SSH client library";
    license = "LGPL";
    maintainers = with stdenv.lib.maintainers; [ sander urkud ];
    platforms = stdenv.lib.platforms.all;
  };
}