3
0
Fork 0
forked from mirrors/nixpkgs

libssh-0.4.8

svn path=/nixpkgs/trunk/; revision=27378
This commit is contained in:
Yury G. Kudryashov 2011-06-07 21:49:42 +00:00
parent 701e2b1cd4
commit ee7583d685

View file

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