mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 23:36:17 +01:00
* Disable splashutils on x86_64 for now; it fails to link statically
because of an issue in Glibc (see http://bugs.gentoo.org/show_bug.cgi?id=198949). svn path=/nixpkgs/trunk/; revision=12635
This commit is contained in:
parent
64c003f97f
commit
77ce75b095
1 changed files with 1 additions and 1 deletions
|
@ -5166,7 +5166,7 @@ let pkgs = rec {
|
|||
|
||||
splashutils =
|
||||
if kernel.features ? fbSplash then splashutils_13 else
|
||||
if kernel.features ? fbConDecor then splashutils_15 else
|
||||
if kernel.features ? fbConDecor && system != "x86_64-linux" then splashutils_15 else
|
||||
null;
|
||||
|
||||
splashutils_13 = import ../os-specific/linux/splashutils/1.3.nix {
|
||||
|
|
Loading…
Reference in a new issue