mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
9d27c94bda
with SSL support. svn path=/nixpkgs/trunk/; revision=5144
10 lines
144 B
Bash
10 lines
144 B
Bash
source $stdenv/setup
|
|
|
|
if test "$sslSupport"; then
|
|
configureFlags="--with-ssl=$openssl"
|
|
else
|
|
configureFlags="--without-ssl"
|
|
fi
|
|
|
|
genericBuild
|