mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-26 04:43:09 +03:00
* 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
|
. $stdenv/setup || exit 1
|
||||||
|
|
||||||
|
envpkgs=""
|
||||||
|
. $setenv || exit 1
|
||||||
|
|
||||||
tar xvfz $src || exit 1
|
tar xvfz $src || exit 1
|
||||||
cd openssl-* || exit 1
|
cd openssl-* || exit 1
|
||||||
./config --prefix=$out shared || exit 1
|
./config --prefix=$out shared || exit 1
|
||||||
make || exit 1
|
make || exit 1
|
||||||
mkdir $out || exit 1
|
mkdir $out || exit 1
|
||||||
make install || exit 1
|
make install || exit 1
|
||||||
|
|
||||||
|
echo $envpkgs > $out/envpkgs || exit 1
|
||||||
|
@ -1,6 +1,8 @@
|
|||||||
Package(
|
Package(
|
||||||
[ ("name", "openssl-0.9.7b")
|
[ ("name", "openssl-0.9.7b")
|
||||||
|
|
||||||
, ("build", Relative("openssl/openssl-build.sh"))
|
, ("build", Relative("openssl/openssl-build.sh"))
|
||||||
|
, ("setenv", Relative("helpers/set-env.sh"))
|
||||||
|
|
||||||
, ("src", App(IncludeFix("fetchurl/fetchurl.fix"),
|
, ("src", App(IncludeFix("fetchurl/fetchurl.fix"),
|
||||||
[ ("url", "http://www.openssl.org/source/openssl-0.9.7b.tar.gz")
|
[ ("url", "http://www.openssl.org/source/openssl-0.9.7b.tar.gz")
|
||||||
|
Loading…
Reference in New Issue
Block a user