forked from mirrors/nixpkgs
* OpenSSL's rpath should include itself.
svn path=/nixpkgs/trunk/; revision=258
This commit is contained in:
parent
5c88811954
commit
5da5a72830
|
@ -4,9 +4,14 @@ export NIX_LDFLAGS=-Wl,-s
|
|||
|
||||
. $stdenv/setup || exit 1
|
||||
|
||||
envpkgs=""
|
||||
. $setenv || exit 1
|
||||
|
||||
tar xvfz $src || exit 1
|
||||
cd openssl-* || exit 1
|
||||
./config --prefix=$out shared || exit 1
|
||||
make || exit 1
|
||||
mkdir $out || exit 1
|
||||
make install || exit 1
|
||||
|
||||
echo $envpkgs > $out/envpkgs || exit 1
|
||||
|
|
|
@ -1,6 +1,8 @@
|
|||
Package(
|
||||
[ ("name", "openssl-0.9.7b")
|
||||
|
||||
, ("build", Relative("openssl/openssl-build.sh"))
|
||||
, ("setenv", Relative("helpers/set-env.sh"))
|
||||
|
||||
, ("src", App(IncludeFix("fetchurl/fetchurl.fix"),
|
||||
[ ("url", "http://www.openssl.org/source/openssl-0.9.7b.tar.gz")
|
||||
|
|
Loading…
Reference in a new issue