nixpkgs/pkgs/development/libraries/libssh/default.nix
Karn Kallio f477fe9d3d Update libssh version to latest release 0.4.8
svn path=/nixpkgs/trunk/; revision=26519
2011-03-25 23:14:01 +00:00

16 lines
420 B
Nix

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