* openssl-0.9.8i.
svn path=/nixpkgs/branches/stdenv-updates/; revision=13024
This commit is contained in:
parent
5eef7df51d
commit
201d20db20
@ -1,12 +0,0 @@
|
|||||||
source $stdenv/setup
|
|
||||||
|
|
||||||
configureScript=./config
|
|
||||||
configureFlags=shared
|
|
||||||
|
|
||||||
postInstall=postInstall
|
|
||||||
postInstall() {
|
|
||||||
# Bug fix: openssl does a `chmod 644' on the pkgconfig directory.
|
|
||||||
chmod 755 $out/lib/pkgconfig
|
|
||||||
}
|
|
||||||
|
|
||||||
genericBuild
|
|
@ -1,11 +1,21 @@
|
|||||||
{stdenv, fetchurl, perl}:
|
{stdenv, fetchurl, perl}:
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
name = "openssl-0.9.8h";
|
name = "openssl-0.9.8i";
|
||||||
builder = ./builder.sh;
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = ftp://ftp.nluug.nl/pub/security/openssl/openssl-0.9.8h.tar.gz;
|
url = http://www.openssl.org/source/openssl-0.9.8i.tar.gz;
|
||||||
sha1 = "ced4f2da24a202e01ea22bef30ebc8aee274de86";
|
sha1 = "b2e029cfb68bf32eae997d60317a40945db5a65f";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [perl];
|
buildInputs = [perl];
|
||||||
|
|
||||||
|
configureScript = "./config";
|
||||||
|
|
||||||
|
configureFlags = "shared";
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
homepage = http://www.openssl.org/;
|
||||||
|
description = "A cryptographic library that implements the SSL and TLS protocols";
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user