Added OpenSSL gmp propagation; libtool dependency to elinks

svn path=/nixpkgs/trunk/; revision=9646
This commit is contained in:
Michael Raskin
2007-11-11 20:35:21 +00:00
parent 16b44ea14d
commit b39c62675d
3 changed files with 9 additions and 4 deletions

View File

@@ -1,4 +1,4 @@
{stdenv, fetchurl, perl}: stdenv.mkDerivation {
args: with args; stdenv.mkDerivation {
name = "openssl-0.9.8g";
builder = ./builder.sh;
src = fetchurl {
@@ -6,4 +6,5 @@
sha256 = "1w0wj3pgg9ga0hay3jdxs9sl17bfw307b6qvkxn735fy8ml8h9hf";
};
buildInputs = [perl];
propagatedBuildInputs = [gmp];
}