* Remove a bunch of unused Nix expressions.

svn path=/nixpkgs/trunk/; revision=6716
This commit is contained in:
Eelco Dolstra
2006-10-12 15:43:01 +00:00
parent 85454a47da
commit ef9b025dbe
70 changed files with 65 additions and 726 deletions
@@ -1,17 +0,0 @@
{stdenv, fetchurl, zlib, openssl, xforwarding ? false, xauth ? null}:
assert xforwarding -> xauth != null;
stdenv.mkDerivation {
name = "openssh-4.3p2";
builder = ./builder.sh;
src = fetchurl {
url = http://nix.cs.uu.nl/dist/tarballs/openssh-4.3p2.tar.gz;
md5 = "7e9880ac20a9b9db0d3fea30a9ff3d46";
};
buildInputs = [zlib openssl
(if xforwarding then xauth else null)
];
}