libvisual: fix null malloc check on cross
this is needed to build
This commit is contained in:
parent
024877e7b2
commit
a656aeb7f1
@ -13,6 +13,11 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
hardeningDisable = [ "format" ];
|
hardeningDisable = [ "format" ];
|
||||||
|
|
||||||
|
configureFlags = stdenv.lib.optionals (stdenv.hostPlatform != stdenv.buildPlatform) [
|
||||||
|
"ac_cv_func_malloc_0_nonnull=yes"
|
||||||
|
"ac_cv_func_realloc_0_nonnull=yes"
|
||||||
|
];
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "An abstraction library for audio visualisations";
|
description = "An abstraction library for audio visualisations";
|
||||||
homepage = https://sourceforge.net/projects/libvisual/;
|
homepage = https://sourceforge.net/projects/libvisual/;
|
||||||
|
Loading…
Reference in New Issue
Block a user