unit: update build configuration
This commit is contained in:
parent
6ae0c68216
commit
d5f8c4b1d1
@ -1,11 +1,14 @@
|
|||||||
{ stdenv, fetchFromGitHub, which
|
{ stdenv, fetchFromGitHub, which
|
||||||
, withPython ? true, python
|
, withPython2 ? false, python2
|
||||||
, withPHP72 ? true, php72
|
, withPython3 ? true, python3, ncurses
|
||||||
, withPHP73 ? false, php73
|
, withPHP72 ? false, php72
|
||||||
, withPerl ? true, perl
|
, withPHP73 ? true, php73
|
||||||
|
, withPerl528 ? false, perl528
|
||||||
|
, withPerl530 ? true, perl530
|
||||||
, withPerldevel ? false, perldevel
|
, withPerldevel ? false, perldevel
|
||||||
, withRuby_2_4 ? false, ruby_2_4
|
, withRuby_2_4 ? false, ruby_2_4
|
||||||
, withRuby ? true, ruby
|
, withRuby_2_5 ? false, ruby_2_5
|
||||||
|
, withRuby_2_6 ? true, ruby_2_6
|
||||||
, withSSL ? true, openssl ? null
|
, withSSL ? true, openssl ? null
|
||||||
, withIPv6 ? true
|
, withIPv6 ? true
|
||||||
, withDebug ? false
|
, withDebug ? false
|
||||||
@ -27,13 +30,16 @@ stdenv.mkDerivation rec {
|
|||||||
nativeBuildInputs = [ which ];
|
nativeBuildInputs = [ which ];
|
||||||
|
|
||||||
buildInputs = [ ]
|
buildInputs = [ ]
|
||||||
++ optional withPython python
|
++ optional withPython2 python2
|
||||||
|
++ optionals withPython3 [ python3 ncurses ]
|
||||||
++ optional withPHP72 php72
|
++ optional withPHP72 php72
|
||||||
++ optional withPHP73 php73
|
++ optional withPHP73 php73
|
||||||
++ optional withPerl perl
|
++ optional withPerl528 perl528
|
||||||
|
++ optional withPerl530 perl530
|
||||||
++ optional withPerldevel perldevel
|
++ optional withPerldevel perldevel
|
||||||
++ optional withRuby_2_4 ruby_2_4
|
++ optional withRuby_2_4 ruby_2_4
|
||||||
++ optional withRuby ruby
|
++ optional withRuby_2_5 ruby_2_5
|
||||||
|
++ optional withRuby_2_6 ruby_2_6
|
||||||
++ optional withSSL openssl;
|
++ optional withSSL openssl;
|
||||||
|
|
||||||
configureFlags = [
|
configureFlags = [
|
||||||
@ -46,13 +52,16 @@ stdenv.mkDerivation rec {
|
|||||||
++ optional withDebug [ "--debug" ];
|
++ optional withDebug [ "--debug" ];
|
||||||
|
|
||||||
postConfigure = ''
|
postConfigure = ''
|
||||||
${optionalString withPython "./configure python --module=python --config=${python}/bin/python-config --lib-path=${python}/lib"}
|
${optionalString withPython2 "./configure python --module=python2 --config=${python2}/bin/python2-config --lib-path=${python2}/lib"}
|
||||||
${optionalString withPHP72 "./configure php --module=php72 --config=${php72.dev}/bin/php-config --lib-path=${php72}/lib"}
|
${optionalString withPython3 "./configure python --module=python3 --config=${python3}/bin/python3-config --lib-path=${python3}/lib"}
|
||||||
${optionalString withPHP73 "./configure php --module=php73 --config=${php73.dev}/bin/php-config --lib-path=${php73}/lib"}
|
${optionalString withPHP72 "./configure php --module=php72 --config=${php72.dev}/bin/php-config --lib-path=${php72}/lib"}
|
||||||
${optionalString withPerl "./configure perl --module=perl --perl=${perl}/bin/perl"}
|
${optionalString withPHP73 "./configure php --module=php73 --config=${php73.dev}/bin/php-config --lib-path=${php73}/lib"}
|
||||||
${optionalString withPerldevel "./configure perl --module=perl529 --perl=${perldevel}/bin/perl"}
|
${optionalString withPerl528 "./configure perl --module=perl528 --perl=${perl528}/bin/perl"}
|
||||||
${optionalString withRuby_2_4 "./configure ruby --module=ruby24 --ruby=${ruby_2_4}/bin/ruby"}
|
${optionalString withPerl530 "./configure perl --module=perl530 --perl=${perl530}/bin/perl"}
|
||||||
${optionalString withRuby "./configure ruby --module=ruby --ruby=${ruby}/bin/ruby"}
|
${optionalString withPerldevel "./configure perl --module=perldev --perl=${perldevel}/bin/perl"}
|
||||||
|
${optionalString withRuby_2_4 "./configure ruby --module=ruby24 --ruby=${ruby_2_4}/bin/ruby"}
|
||||||
|
${optionalString withRuby_2_5 "./configure ruby --module=ruby25 --ruby=${ruby_2_5}/bin/ruby"}
|
||||||
|
${optionalString withRuby_2_6 "./configure ruby --module=ruby26 --ruby=${ruby_2_6}/bin/ruby"}
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
|
Loading…
Reference in New Issue
Block a user