454707da23
svn path=/nixpkgs/trunk/; revision=3660
14 lines
289 B
Nix
14 lines
289 B
Nix
{stdenv, fetchurl, zlib, openssl}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "openssh-3.8.1p1";
|
|
|
|
builder = ./builder.sh;
|
|
src = fetchurl {
|
|
url = http://nix.cs.uu.nl/dist/tarballs/openssh-3.8.1p1.tar.gz;
|
|
md5 = "1dbfd40ae683f822ae917eebf171ca42";
|
|
};
|
|
|
|
buildInputs = [zlib openssl];
|
|
}
|