moved vim_configurable to much more sensible place
svn path=/nixpkgs/trunk/; revision=9931
This commit is contained in:
parent
09c9eb9761
commit
17ad9b8acd
@ -1253,15 +1253,18 @@ rec {
|
|||||||
# tell the apache module where to look for this file is using a compile time flag ;-(
|
# tell the apache module where to look for this file is using a compile time flag ;-(
|
||||||
# perhaps this can be done setting php_value in apache don't have time to investigate any further ?
|
# perhaps this can be done setting php_value in apache don't have time to investigate any further ?
|
||||||
# This expression is a quick hack now. But perhaps it helps you adding the configuration flags you need?
|
# This expression is a quick hack now. But perhaps it helps you adding the configuration flags you need?
|
||||||
php = import ../development/interpreters/php_configurable {
|
php = php_unstable;
|
||||||
inherit mkDerivationByConfiguration;
|
php_unstable = (import ../development/interpreters/php_configurable) {
|
||||||
|
inherit mkDerivationByConfiguration autoconf automake;
|
||||||
lib = lib_unstable;
|
lib = lib_unstable;
|
||||||
stdenv = stdenvUsingSetupNew2;
|
stdenv = stdenvUsingSetupNew2;
|
||||||
inherit fetchurl flex bison apacheHttpd; # gettext;
|
# optional features
|
||||||
mysql = mysql5;
|
inherit fetchurl flex bison apacheHttpd mysql; # gettext;
|
||||||
inherit libxml2;
|
inherit libxml2;
|
||||||
|
flags = [ "xdebug" "mysql" "mysqli" "pdo_mysql" "libxml2" "apxs2" ];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
python = getVersion "python" python_alts;
|
python = getVersion "python" python_alts;
|
||||||
|
|
||||||
python_alts = import ../development/interpreters/python {
|
python_alts = import ../development/interpreters/python {
|
||||||
@ -4443,8 +4446,6 @@ rec {
|
|||||||
flags = ["hugeFeatures" "gtkGUI" "x11Support"];
|
flags = ["hugeFeatures" "gtkGUI" "x11Support"];
|
||||||
};
|
};
|
||||||
|
|
||||||
# gvim: error while loading shared libraries: libXmu.so.6: cannot open shared object file: No such file or directory
|
|
||||||
# What's causing this?
|
|
||||||
vim_configurable = import ../applications/editors/vim_configurable.nix {
|
vim_configurable = import ../applications/editors/vim_configurable.nix {
|
||||||
inherit fetchurl stdenv ncurses pkgconfig mkDerivationByConfiguration;
|
inherit fetchurl stdenv ncurses pkgconfig mkDerivationByConfiguration;
|
||||||
inherit (xlibs) libX11 libXext libSM libXpm
|
inherit (xlibs) libX11 libXext libSM libXpm
|
||||||
|
Loading…
x
Reference in New Issue
Block a user