mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
treewide: use toString on list NIX_CFLAGS_COMPILE
with structuredAttrs lists will be bash arrays which cannot be exported which will be a issue with some patches and some wrappers like cc-wrapper
This commit is contained in:
parent
425e4250db
commit
6f6cc4a22d
187 changed files with 193 additions and 193 deletions
|
@ -18,7 +18,7 @@ stdenv.mkDerivation rec {
|
||||||
lv2 libX11 libGL libGLU mesa
|
lv2 libX11 libGL libGLU mesa
|
||||||
];
|
];
|
||||||
|
|
||||||
NIX_CFLAGS_COMPILE = [
|
NIX_CFLAGS_COMPILE = toString [
|
||||||
# Needed with GCC 12
|
# Needed with GCC 12
|
||||||
"-Wno-error=array-bounds"
|
"-Wno-error=array-bounds"
|
||||||
"-Wno-error=stringop-overflow"
|
"-Wno-error=stringop-overflow"
|
||||||
|
|
|
@ -30,7 +30,7 @@ stdenv.mkDerivation rec {
|
||||||
fetchSubmodules = true;
|
fetchSubmodules = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
NIX_CFLAGS_COMPILE = [
|
NIX_CFLAGS_COMPILE = toString [
|
||||||
"-w"
|
"-w"
|
||||||
"-Wno-error"
|
"-Wno-error"
|
||||||
];
|
];
|
||||||
|
|
|
@ -97,7 +97,7 @@ stdenv.mkDerivation rec {
|
||||||
"--install-roboto-font"
|
"--install-roboto-font"
|
||||||
] ++ optional optimizationSupport "--optimization";
|
] ++ optional optimizationSupport "--optimization";
|
||||||
|
|
||||||
NIX_CFLAGS_COMPILE = [ "-fpermissive" ];
|
NIX_CFLAGS_COMPILE = toString [ "-fpermissive" ];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "A virtual guitar amplifier for Linux running with JACK";
|
description = "A virtual guitar amplifier for Linux running with JACK";
|
||||||
|
|
|
@ -35,7 +35,7 @@ stdenv.mkDerivation rec {
|
||||||
++ lib.optionals stdenv.isLinux [ "PLATFORM=DEB" ]
|
++ lib.optionals stdenv.isLinux [ "PLATFORM=DEB" ]
|
||||||
++ lib.optionals stdenv.isDarwin [ "PLATFORM=OSX" ];
|
++ lib.optionals stdenv.isDarwin [ "PLATFORM=OSX" ];
|
||||||
|
|
||||||
NIX_CFLAGS_COMPILE = [ "-fpermissive" ] ++
|
NIX_CFLAGS_COMPILE = toString [ "-fpermissive" ] ++
|
||||||
lib.optional stdenv.hostPlatform.isAarch64 "-Wno-error=narrowing";
|
lib.optional stdenv.hostPlatform.isAarch64 "-Wno-error=narrowing";
|
||||||
|
|
||||||
NIX_LDFLAGS = lib.optional stdenv.isDarwin "-framework Foundation";
|
NIX_LDFLAGS = lib.optional stdenv.isDarwin "-framework Foundation";
|
||||||
|
|
|
@ -13,7 +13,7 @@ stdenv.mkDerivation rec {
|
||||||
|
|
||||||
hardeningDisable = [ "format" ];
|
hardeningDisable = [ "format" ];
|
||||||
|
|
||||||
NIX_CFLAGS_COMPILE = [ "-fgnu89-inline" ];
|
NIX_CFLAGS_COMPILE = toString [ "-fgnu89-inline" ];
|
||||||
|
|
||||||
buildPhase = "./cc";
|
buildPhase = "./cc";
|
||||||
installPhase = ''
|
installPhase = ''
|
||||||
|
|
|
@ -38,7 +38,7 @@ stdenv.mkDerivation rec {
|
||||||
pcre2
|
pcre2
|
||||||
] ++ lib.optional pulseaudioSupport libpulseaudio;
|
] ++ lib.optional pulseaudioSupport libpulseaudio;
|
||||||
|
|
||||||
NIX_CFLAGS_COMPILE = [
|
NIX_CFLAGS_COMPILE = toString [
|
||||||
# Needed with GCC 12
|
# Needed with GCC 12
|
||||||
"-Wno-error=free-nonheap-object"
|
"-Wno-error=free-nonheap-object"
|
||||||
];
|
];
|
||||||
|
|
|
@ -25,7 +25,7 @@ stdenv.mkDerivation rec {
|
||||||
libsamplerate libsndfile lilv lrdf lv2 qtsvg rtaudio rubberband sord
|
libsamplerate libsndfile lilv lrdf lv2 qtsvg rtaudio rubberband sord
|
||||||
];
|
];
|
||||||
|
|
||||||
NIX_CFLAGS_COMPILE = [ "-I${lib.getDev serd}/include/serd-0" ];
|
NIX_CFLAGS_COMPILE = toString [ "-I${lib.getDev serd}/include/serd-0" ];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
homepage = "https://muse-sequencer.github.io/";
|
homepage = "https://muse-sequencer.github.io/";
|
||||||
|
|
|
@ -22,7 +22,7 @@ in stdenv.mkDerivation rec {
|
||||||
sha256 = "1rk71ls33a38wx8i22plsi7d89cqqxrfxknq5i4f9igsw1ipm4gn";
|
sha256 = "1rk71ls33a38wx8i22plsi7d89cqqxrfxknq5i4f9igsw1ipm4gn";
|
||||||
};
|
};
|
||||||
|
|
||||||
NIX_CFLAGS_COMPILE = [ "-Wno-narrowing" ];
|
NIX_CFLAGS_COMPILE = toString [ "-Wno-narrowing" ];
|
||||||
|
|
||||||
buildFlags = [ "VSTSDK_PATH=${vst-sdk}/VST2_SDK" ];
|
buildFlags = [ "VSTSDK_PATH=${vst-sdk}/VST2_SDK" ];
|
||||||
|
|
||||||
|
|
|
@ -25,7 +25,7 @@ stdenv.mkDerivation rec {
|
||||||
|
|
||||||
makeFlags = [ "-f Makefile.PatternPlayer_debian_RtAudio_sdl20" ];
|
makeFlags = [ "-f Makefile.PatternPlayer_debian_RtAudio_sdl20" ];
|
||||||
|
|
||||||
NIX_CFLAGS_COMPILE = [ "-I${SDL2.dev}/include/SDL2" ];
|
NIX_CFLAGS_COMPILE = toString [ "-I${SDL2.dev}/include/SDL2" ];
|
||||||
|
|
||||||
hardeningDisable = [ "format" ];
|
hardeningDisable = [ "format" ];
|
||||||
|
|
||||||
|
|
|
@ -11,7 +11,7 @@ stdenv.mkDerivation rec {
|
||||||
sha256 = "17ckkxfzbqvvfdnh10if4aqdcq98q3vl6dn1v6f4lhr4ifnyjdlk";
|
sha256 = "17ckkxfzbqvvfdnh10if4aqdcq98q3vl6dn1v6f4lhr4ifnyjdlk";
|
||||||
};
|
};
|
||||||
buildInputs = [ ncurses ];
|
buildInputs = [ ncurses ];
|
||||||
NIX_CFLAGS_COMPILE = [ "-Wno-error=stringop-overflow" "-Wno-error=stringop-truncation" ];
|
NIX_CFLAGS_COMPILE = toString [ "-Wno-error=stringop-overflow" "-Wno-error=stringop-truncation" ];
|
||||||
patches = [
|
patches = [
|
||||||
# gcc7 compat
|
# gcc7 compat
|
||||||
(fetchpatch {
|
(fetchpatch {
|
||||||
|
|
|
@ -17,7 +17,7 @@ stdenv.mkDerivation rec {
|
||||||
|
|
||||||
patches = [ ./gcc7.patch ];
|
patches = [ ./gcc7.patch ];
|
||||||
|
|
||||||
NIX_CFLAGS_COMPILE = [ "-Wno-narrowing" ];
|
NIX_CFLAGS_COMPILE = toString [ "-Wno-narrowing" ];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "File editor/viewer/analyzer for executables";
|
description = "File editor/viewer/analyzer for executables";
|
||||||
|
|
|
@ -69,7 +69,7 @@ stdenv.mkDerivation rec {
|
||||||
speexdsp
|
speexdsp
|
||||||
];
|
];
|
||||||
|
|
||||||
NIX_CFLAGS_COMPILE = [
|
NIX_CFLAGS_COMPILE = toString [
|
||||||
"-I${SDL2_image}/include/SDL2"
|
"-I${SDL2_image}/include/SDL2"
|
||||||
"-I${SDL2_net}/include/SDL2"
|
"-I${SDL2_net}/include/SDL2"
|
||||||
];
|
];
|
||||||
|
|
|
@ -117,7 +117,7 @@ stdenv.mkDerivation rec {
|
||||||
--subst-var-by mamePath "$out/opt/mame"
|
--subst-var-by mamePath "$out/opt/mame"
|
||||||
'';
|
'';
|
||||||
|
|
||||||
NIX_CFLAGS_COMPILE = [
|
NIX_CFLAGS_COMPILE = toString [
|
||||||
"-Wno-error=use-after-free"
|
"-Wno-error=use-after-free"
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
|
@ -25,7 +25,7 @@ stdenv.mkDerivation rec {
|
||||||
# Workaround to build against upstream gcc-10 and clang-11.
|
# Workaround to build against upstream gcc-10 and clang-11.
|
||||||
# Can be removed when next release contains
|
# Can be removed when next release contains
|
||||||
# https://github.com/simh/simh/issues/794
|
# https://github.com/simh/simh/issues/794
|
||||||
NIX_CFLAGS_COMPILE = [ "-fcommon" ];
|
NIX_CFLAGS_COMPILE = toString [ "-fcommon" ];
|
||||||
|
|
||||||
makeFlags = [ "GCC=${stdenv.cc.targetPrefix}cc" "CC_STD=-std=c99" "LDFLAGS=-lm" ];
|
makeFlags = [ "GCC=${stdenv.cc.targetPrefix}cc" "CC_STD=-std=c99" "LDFLAGS=-lm" ];
|
||||||
|
|
||||||
|
|
|
@ -19,7 +19,7 @@ stdenv.mkDerivation rec {
|
||||||
};
|
};
|
||||||
nativeBuildInputs = [ pkg-config ];
|
nativeBuildInputs = [ pkg-config ];
|
||||||
buildInputs = [ glib gtk2 libticonv libtifiles2 libticables2 libticalcs2 ];
|
buildInputs = [ glib gtk2 libticonv libtifiles2 libticables2 libticalcs2 ];
|
||||||
NIX_CFLAGS_COMPILE = [ "-lm" ];
|
NIX_CFLAGS_COMPILE = toString [ "-lm" ];
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
homepage = "http://lpg.ticalc.org/prj_tilem/";
|
homepage = "http://lpg.ticalc.org/prj_tilem/";
|
||||||
description = "Emulator and debugger for Texas Instruments Z80-based graphing calculators";
|
description = "Emulator and debugger for Texas Instruments Z80-based graphing calculators";
|
||||||
|
|
|
@ -36,7 +36,7 @@ stdenv.mkDerivation (finalAttrs: {
|
||||||
|
|
||||||
dontConfigure = true;
|
dontConfigure = true;
|
||||||
|
|
||||||
NIX_CFLAGS_COMPILE = [
|
NIX_CFLAGS_COMPILE = toString [
|
||||||
# Until upstream fixes the issues...
|
# Until upstream fixes the issues...
|
||||||
"-Wp,-D_FORTIFY_SOURCE=0"
|
"-Wp,-D_FORTIFY_SOURCE=0"
|
||||||
];
|
];
|
||||||
|
|
|
@ -46,7 +46,7 @@ stdenv.mkDerivation rec {
|
||||||
++ lib.optionals stdenv.hostPlatform.isLinux [ libX11 libXrandr libXinerama libXcursor libXi libXext alsa-lib fontconfig libGLU ]
|
++ lib.optionals stdenv.hostPlatform.isLinux [ libX11 libXrandr libXinerama libXcursor libXi libXext alsa-lib fontconfig libGLU ]
|
||||||
++ lib.optionals stdenv.hostPlatform.isDarwin [ AVFoundation Carbon Cocoa CoreAudio Kernel OpenGL ];
|
++ lib.optionals stdenv.hostPlatform.isDarwin [ AVFoundation Carbon Cocoa CoreAudio Kernel OpenGL ];
|
||||||
|
|
||||||
NIX_CFLAGS_COMPILE = [
|
NIX_CFLAGS_COMPILE = toString [
|
||||||
# Needed with GCC 12
|
# Needed with GCC 12
|
||||||
"-Wno-error=array-bounds"
|
"-Wno-error=array-bounds"
|
||||||
];
|
];
|
||||||
|
|
|
@ -17,7 +17,7 @@ stdenv.mkDerivation rec {
|
||||||
nativeBuildInputs = [ scons pkg-config wrapGAppsHook ];
|
nativeBuildInputs = [ scons pkg-config wrapGAppsHook ];
|
||||||
buildInputs = [ glfw3 gtk3 libpng12 ];
|
buildInputs = [ glfw3 gtk3 libpng12 ];
|
||||||
|
|
||||||
NIX_CFLAGS_COMPILE = [
|
NIX_CFLAGS_COMPILE = toString [
|
||||||
# Needed with GCC 12
|
# Needed with GCC 12
|
||||||
"-Wno-error=format-truncation"
|
"-Wno-error=format-truncation"
|
||||||
];
|
];
|
||||||
|
|
|
@ -33,7 +33,7 @@ mkDerivation rec {
|
||||||
xsimd
|
xsimd
|
||||||
];
|
];
|
||||||
|
|
||||||
NIX_CFLAGS_COMPILE = [ "-I${ilmbase.dev}/include/OpenEXR" ]
|
NIX_CFLAGS_COMPILE = toString [ "-I${ilmbase.dev}/include/OpenEXR" ]
|
||||||
++ lib.optional stdenv.cc.isGNU "-Wno-deprecated-copy";
|
++ lib.optional stdenv.cc.isGNU "-Wno-deprecated-copy";
|
||||||
|
|
||||||
# Krita runs custom python scripts in CMake with custom PYTHONPATH which krita determined in their CMake script.
|
# Krita runs custom python scripts in CMake with custom PYTHONPATH which krita determined in their CMake script.
|
||||||
|
|
|
@ -45,7 +45,7 @@ mkDerivation rec {
|
||||||
mv $out/lib/klayout $out/bin/
|
mv $out/lib/klayout $out/bin/
|
||||||
'';
|
'';
|
||||||
|
|
||||||
NIX_CFLAGS_COMPILE = [ "-Wno-parentheses" ];
|
NIX_CFLAGS_COMPILE = toString [ "-Wno-parentheses" ];
|
||||||
|
|
||||||
dontInstall = true; # Installation already happens as part of "build.sh"
|
dontInstall = true; # Installation already happens as part of "build.sh"
|
||||||
|
|
||||||
|
|
|
@ -140,7 +140,7 @@ in stdenv.mkDerivation rec {
|
||||||
patchShebangs tools/get_wb_version.sh
|
patchShebangs tools/get_wb_version.sh
|
||||||
'';
|
'';
|
||||||
|
|
||||||
NIX_CFLAGS_COMPILE = [
|
NIX_CFLAGS_COMPILE = toString [
|
||||||
# error: 'OGRErr OGRSpatialReference::importFromWkt(char**)' is deprecated
|
# error: 'OGRErr OGRSpatialReference::importFromWkt(char**)' is deprecated
|
||||||
"-Wno-error=deprecated-declarations"
|
"-Wno-error=deprecated-declarations"
|
||||||
] ++ lib.optionals stdenv.isAarch64 [
|
] ++ lib.optionals stdenv.isAarch64 [
|
||||||
|
|
|
@ -43,7 +43,7 @@ stdenv.mkDerivation rec {
|
||||||
|
|
||||||
enableParallelBuilding = true;
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
NIX_CFLAGS_COMPILE = [ "-std=c++14" ];
|
NIX_CFLAGS_COMPILE = toString [ "-std=c++14" ];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Network UPS Tools";
|
description = "Network UPS Tools";
|
||||||
|
|
|
@ -49,7 +49,7 @@ rustPlatform.buildRustPackage rec {
|
||||||
|
|
||||||
# enables pipewire API deprecated in 0.3.64
|
# enables pipewire API deprecated in 0.3.64
|
||||||
# fixes error caused by https://gitlab.freedesktop.org/pipewire/pipewire-rs/-/issues/55
|
# fixes error caused by https://gitlab.freedesktop.org/pipewire/pipewire-rs/-/issues/55
|
||||||
NIX_CFLAGS_COMPILE = [ "-DPW_ENABLE_DEPRECATED" ];
|
NIX_CFLAGS_COMPILE = toString [ "-DPW_ENABLE_DEPRECATED" ];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "A simple and elegant pipewire graph editor ";
|
description = "A simple and elegant pipewire graph editor ";
|
||||||
|
|
|
@ -33,7 +33,7 @@ stdenv.mkDerivation (finalAttrs: {
|
||||||
cmakeFlags = lib.optional (stdenv.hostPlatform != stdenv.buildPlatform)
|
cmakeFlags = lib.optional (stdenv.hostPlatform != stdenv.buildPlatform)
|
||||||
"-DPROTOBUF_PROTOC_EXECUTABLE=${buildPackages.protobuf}/bin/protoc";
|
"-DPROTOBUF_PROTOC_EXECUTABLE=${buildPackages.protobuf}/bin/protoc";
|
||||||
|
|
||||||
NIX_CFLAGS_COMPILE = [ "-DTM_VERSION=${finalAttrs.version}" ];
|
NIX_CFLAGS_COMPILE = toString [ "-DTM_VERSION=${finalAttrs.version}" ];
|
||||||
|
|
||||||
postInstall = ''
|
postInstall = ''
|
||||||
installManPage ../docs/man/tilemaker.1
|
installManPage ../docs/man/tilemaker.1
|
||||||
|
|
|
@ -49,7 +49,7 @@ stdenv.mkDerivation {
|
||||||
"-DENABLE_UNICODE_DATABASE_DOWNLOAD=false"
|
"-DENABLE_UNICODE_DATABASE_DOWNLOAD=false"
|
||||||
];
|
];
|
||||||
|
|
||||||
NIX_CFLAGS_COMPILE = [
|
NIX_CFLAGS_COMPILE = toString [
|
||||||
"-Wno-error"
|
"-Wno-error"
|
||||||
] ++ lib.optionals (stdenv.isDarwin && lib.versionOlder stdenv.targetPlatform.darwinSdkVersion "11.0") [
|
] ++ lib.optionals (stdenv.isDarwin && lib.versionOlder stdenv.targetPlatform.darwinSdkVersion "11.0") [
|
||||||
# error: use of undeclared identifier 'aligned_alloc'
|
# error: use of undeclared identifier 'aligned_alloc'
|
||||||
|
|
|
@ -57,7 +57,7 @@ gcc12Stdenv.mkDerivation rec {
|
||||||
wxGTK32
|
wxGTK32
|
||||||
];
|
];
|
||||||
|
|
||||||
NIX_CFLAGS_COMPILE = [
|
NIX_CFLAGS_COMPILE = toString [
|
||||||
# Undef g_object_ref on GLib 2.56+
|
# Undef g_object_ref on GLib 2.56+
|
||||||
"-DGLIB_VERSION_MIN_REQUIRED=GLIB_VERSION_2_54"
|
"-DGLIB_VERSION_MIN_REQUIRED=GLIB_VERSION_2_54"
|
||||||
"-DGLIB_VERSION_MAX_ALLOWED=GLIB_VERSION_2_54"
|
"-DGLIB_VERSION_MAX_ALLOWED=GLIB_VERSION_2_54"
|
||||||
|
|
|
@ -15,7 +15,7 @@ stdenv.mkDerivation rec {
|
||||||
nativeBuildInputs = [ makeWrapper pkg-config ];
|
nativeBuildInputs = [ makeWrapper pkg-config ];
|
||||||
buildInputs = [ luajit openssl libpcap pcre libdnet daq zlib flex bison libtirpc ];
|
buildInputs = [ luajit openssl libpcap pcre libdnet daq zlib flex bison libtirpc ];
|
||||||
|
|
||||||
NIX_CFLAGS_COMPILE = [ "-I${libtirpc.dev}/include/tirpc" ];
|
NIX_CFLAGS_COMPILE = toString [ "-I${libtirpc.dev}/include/tirpc" ];
|
||||||
|
|
||||||
enableParallelBuilding = true;
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
|
|
|
@ -69,7 +69,7 @@ stdenv.mkDerivation rec {
|
||||||
|
|
||||||
# enables pipewire API deprecated in 0.3.64
|
# enables pipewire API deprecated in 0.3.64
|
||||||
# fixes error caused by https://gitlab.freedesktop.org/pipewire/pipewire-rs/-/issues/55
|
# fixes error caused by https://gitlab.freedesktop.org/pipewire/pipewire-rs/-/issues/55
|
||||||
NIX_CFLAGS_COMPILE = [ "-DPW_ENABLE_DEPRECATED" ];
|
NIX_CFLAGS_COMPILE = toString [ "-DPW_ENABLE_DEPRECATED" ];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Matrix group messaging app (development version)";
|
description = "Matrix group messaging app (development version)";
|
||||||
|
|
|
@ -31,7 +31,7 @@ stdenv.mkDerivation rec {
|
||||||
];
|
];
|
||||||
|
|
||||||
# TODO: Remove after the next release (0.8.4 should work without this):
|
# TODO: Remove after the next release (0.8.4 should work without this):
|
||||||
NIX_CFLAGS_COMPILE = [ "-I${harfbuzz.dev}/include/harfbuzz" ];
|
NIX_CFLAGS_COMPILE = toString [ "-I${harfbuzz.dev}/include/harfbuzz" ];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Comprehensive suite for man in the middle attacks";
|
description = "Comprehensive suite for man in the middle attacks";
|
||||||
|
|
|
@ -34,7 +34,7 @@ in stdenv.mkDerivation {
|
||||||
];
|
];
|
||||||
|
|
||||||
# Avoid referencing -dev paths because of debug assertions.
|
# Avoid referencing -dev paths because of debug assertions.
|
||||||
NIX_CFLAGS_COMPILE = [ "-DQT_NO_DEBUG" ];
|
NIX_CFLAGS_COMPILE = toString [ "-DQT_NO_DEBUG" ];
|
||||||
|
|
||||||
nativeBuildInputs = [ asciidoctor bison cmake flex makeWrapper pkg-config python3 perl ]
|
nativeBuildInputs = [ asciidoctor bison cmake flex makeWrapper pkg-config python3 perl ]
|
||||||
++ lib.optionals withQt [ qt5.wrapQtAppsHook wrapGAppsHook ];
|
++ lib.optionals withQt [ qt5.wrapQtAppsHook wrapGAppsHook ];
|
||||||
|
|
|
@ -176,7 +176,7 @@ in
|
||||||
|
|
||||||
outputs = [ "out" "dev" ];
|
outputs = [ "out" "dev" ];
|
||||||
|
|
||||||
NIX_CFLAGS_COMPILE = [
|
NIX_CFLAGS_COMPILE = toString [
|
||||||
"-I${librdf_rasqal}/include/rasqal" # librdf_redland refers to rasqal.h instead of rasqal/rasqal.h
|
"-I${librdf_rasqal}/include/rasqal" # librdf_redland refers to rasqal.h instead of rasqal/rasqal.h
|
||||||
"-fno-visibility-inlines-hidden" # https://bugs.documentfoundation.org/show_bug.cgi?id=78174#c10
|
"-fno-visibility-inlines-hidden" # https://bugs.documentfoundation.org/show_bug.cgi?id=78174#c10
|
||||||
];
|
];
|
||||||
|
|
|
@ -39,7 +39,7 @@ stdenv.mkDerivation rec {
|
||||||
];
|
];
|
||||||
|
|
||||||
# By no known reason libtirpc is not detected
|
# By no known reason libtirpc is not detected
|
||||||
NIX_CFLAGS_COMPILE = [ "-I${libtirpc.dev}/include/tirpc" ];
|
NIX_CFLAGS_COMPILE = toString [ "-I${libtirpc.dev}/include/tirpc" ];
|
||||||
NIX_LDFLAGS = [ "-ltirpc" ];
|
NIX_LDFLAGS = [ "-ltirpc" ];
|
||||||
|
|
||||||
cmakeConfigureFlags = [
|
cmakeConfigureFlags = [
|
||||||
|
|
|
@ -29,7 +29,7 @@ stdenv.mkDerivation rec {
|
||||||
cp -r ../*pdf ../input_examples ../"R functions" $out/share/doc/bayescan
|
cp -r ../*pdf ../input_examples ../"R functions" $out/share/doc/bayescan
|
||||||
'';
|
'';
|
||||||
|
|
||||||
NIX_CFLAGS_COMPILE = [ "-std=c++14" ];
|
NIX_CFLAGS_COMPILE = toString [ "-std=c++14" ];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Detecting natural selection from population-based genetic data";
|
description = "Detecting natural selection from population-based genetic data";
|
||||||
|
|
|
@ -12,7 +12,7 @@ stdenv.mkDerivation rec {
|
||||||
|
|
||||||
nativeBuildInputs = [ cmake ];
|
nativeBuildInputs = [ cmake ];
|
||||||
|
|
||||||
NIX_CFLAGS_COMPILE = [
|
NIX_CFLAGS_COMPILE = toString [
|
||||||
"-std=c++11"
|
"-std=c++11"
|
||||||
(lib.optional stdenv.cc.isClang "-Wno-error=c++11-narrowing")
|
(lib.optional stdenv.cc.isClang "-Wno-error=c++11-narrowing")
|
||||||
];
|
];
|
||||||
|
|
|
@ -14,7 +14,7 @@ stdenv.mkDerivation rec {
|
||||||
|
|
||||||
patches = [ ./no-bundle.patch ];
|
patches = [ ./no-bundle.patch ];
|
||||||
|
|
||||||
NIX_CFLAGS_COMPILE = [ "-Wformat" ];
|
NIX_CFLAGS_COMPILE = toString [ "-Wformat" ];
|
||||||
|
|
||||||
nativeBuildInputs = [ cmake ];
|
nativeBuildInputs = [ cmake ];
|
||||||
buildInputs = [ hdf5 boost ];
|
buildInputs = [ hdf5 boost ];
|
||||||
|
|
|
@ -9,7 +9,7 @@ stdenv.mkDerivation rec {
|
||||||
sha256 = "07v9v9s41lvw72wpb1jgh2nzanyc994779bd35p76vg8mzifmprl";
|
sha256 = "07v9v9s41lvw72wpb1jgh2nzanyc994779bd35p76vg8mzifmprl";
|
||||||
};
|
};
|
||||||
|
|
||||||
NIX_CFLAGS_COMPILE = [ "-Wno-error=narrowing" ];
|
NIX_CFLAGS_COMPILE = toString [ "-Wno-error=narrowing" ];
|
||||||
|
|
||||||
nativeBuildInputs = [ cmake ];
|
nativeBuildInputs = [ cmake ];
|
||||||
buildInputs = [ zlib ];
|
buildInputs = [ zlib ];
|
||||||
|
|
|
@ -19,7 +19,7 @@ stdenv.mkDerivation rec {
|
||||||
sha256 = "sha256-VaUr63v7mzhh4VBghH7a7qrqOYwl6vucmmKzTi9yAjY=";
|
sha256 = "sha256-VaUr63v7mzhh4VBghH7a7qrqOYwl6vucmmKzTi9yAjY=";
|
||||||
}) ];
|
}) ];
|
||||||
|
|
||||||
NIX_CFLAGS_COMPILE = [
|
NIX_CFLAGS_COMPILE = toString [
|
||||||
# Needed with GCC 12
|
# Needed with GCC 12
|
||||||
"-Wno-error=deprecated-declarations"
|
"-Wno-error=deprecated-declarations"
|
||||||
];
|
];
|
||||||
|
|
|
@ -14,7 +14,7 @@ stdenv.mkDerivation rec {
|
||||||
nativeBuildInputs = [ cmake ];
|
nativeBuildInputs = [ cmake ];
|
||||||
buildInputs = [ zlib python2 ];
|
buildInputs = [ zlib python2 ];
|
||||||
|
|
||||||
NIX_CFLAGS_COMPILE = [
|
NIX_CFLAGS_COMPILE = toString [
|
||||||
"-Wno-error=maybe-uninitialized"
|
"-Wno-error=maybe-uninitialized"
|
||||||
"-Wno-error=pessimizing-move"
|
"-Wno-error=pessimizing-move"
|
||||||
];
|
];
|
||||||
|
|
|
@ -96,7 +96,7 @@ in stdenv.mkDerivation rec {
|
||||||
];
|
];
|
||||||
|
|
||||||
# Silence various warnings during the compilation of fortified bitcode.
|
# Silence various warnings during the compilation of fortified bitcode.
|
||||||
NIX_CFLAGS_COMPILE = ["-Wno-macro-redefined"];
|
NIX_CFLAGS_COMPILE = toString ["-Wno-macro-redefined"];
|
||||||
|
|
||||||
prePatch = ''
|
prePatch = ''
|
||||||
patchShebangs .
|
patchShebangs .
|
||||||
|
|
|
@ -17,7 +17,7 @@ stdenv.mkDerivation rec {
|
||||||
|
|
||||||
buildInputs = [ arpack spooles blas lapack ];
|
buildInputs = [ arpack spooles blas lapack ];
|
||||||
|
|
||||||
NIX_CFLAGS_COMPILE = [
|
NIX_CFLAGS_COMPILE = toString [
|
||||||
"-I${spooles}/include/spooles"
|
"-I${spooles}/include/spooles"
|
||||||
"-std=legacy"
|
"-std=legacy"
|
||||||
];
|
];
|
||||||
|
|
|
@ -54,7 +54,7 @@ stdenv.mkDerivation rec {
|
||||||
] else [ "-DUSE_CUDA=OFF" ])
|
] else [ "-DUSE_CUDA=OFF" ])
|
||||||
++ lib.optional (!cudnnSupport) "-DUSE_CUDNN=OFF";
|
++ lib.optional (!cudnnSupport) "-DUSE_CUDNN=OFF";
|
||||||
|
|
||||||
NIX_CFLAGS_COMPILE = [
|
NIX_CFLAGS_COMPILE = toString [
|
||||||
# Needed with GCC 12
|
# Needed with GCC 12
|
||||||
"-Wno-error=maybe-uninitialized"
|
"-Wno-error=maybe-uninitialized"
|
||||||
"-Wno-error=uninitialized"
|
"-Wno-error=uninitialized"
|
||||||
|
|
|
@ -13,7 +13,7 @@ stdenv.mkDerivation {
|
||||||
};
|
};
|
||||||
|
|
||||||
sourceRoot = ".";
|
sourceRoot = ".";
|
||||||
NIX_CFLAGS_COMPILE = [ "-std=c++14" ];
|
NIX_CFLAGS_COMPILE = toString [ "-std=c++14" ];
|
||||||
buildPhase = ''
|
buildPhase = ''
|
||||||
g++ Pers.cpp -O3 -fpermissive -o perseus
|
g++ Pers.cpp -O3 -fpermissive -o perseus
|
||||||
'';
|
'';
|
||||||
|
|
|
@ -37,7 +37,7 @@ stdenv.mkDerivation rec {
|
||||||
swig3
|
swig3
|
||||||
];
|
];
|
||||||
|
|
||||||
NIX_CFLAGS_COMPILE = [
|
NIX_CFLAGS_COMPILE = toString [
|
||||||
"-std=c++11"
|
"-std=c++11"
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
|
@ -57,7 +57,7 @@ mkDerivation rec {
|
||||||
"--without-inotify"
|
"--without-inotify"
|
||||||
]);
|
]);
|
||||||
|
|
||||||
NIX_CFLAGS_COMPILE = [ "-DNIXPKGS" ];
|
NIX_CFLAGS_COMPILE = toString [ "-DNIXPKGS" ];
|
||||||
|
|
||||||
patches = [
|
patches = [
|
||||||
# fix "No/bad main configuration file" error
|
# fix "No/bad main configuration file" error
|
||||||
|
|
|
@ -11,7 +11,7 @@ stdenv.mkDerivation rec {
|
||||||
|
|
||||||
buildInputs = [ wxGTK30 subversion apr aprutil python3 ];
|
buildInputs = [ wxGTK30 subversion apr aprutil python3 ];
|
||||||
|
|
||||||
NIX_CFLAGS_COMPILE = [ "-std=c++14" ];
|
NIX_CFLAGS_COMPILE = toString [ "-std=c++14" ];
|
||||||
|
|
||||||
configureFlags = [
|
configureFlags = [
|
||||||
"--with-svn-include=${subversion.dev}/include"
|
"--with-svn-include=${subversion.dev}/include"
|
||||||
|
|
|
@ -11,7 +11,7 @@ stdenv.mkDerivation rec {
|
||||||
|
|
||||||
buildInputs = [ libogg libvorbis libdvdread ];
|
buildInputs = [ libogg libvorbis libdvdread ];
|
||||||
|
|
||||||
NIX_CFLAGS_COMPILE = [ "-std=c++14" ];
|
NIX_CFLAGS_COMPILE = toString [ "-std=c++14" ];
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "Tools for modifying and inspecting OGG media streams";
|
description = "Tools for modifying and inspecting OGG media streams";
|
||||||
|
|
|
@ -84,7 +84,7 @@ stdenv.mkDerivation rec {
|
||||||
HOME="$(mktemp -d)"
|
HOME="$(mktemp -d)"
|
||||||
'';
|
'';
|
||||||
|
|
||||||
NIX_CFLAGS_COMPILE = [ "-I${libtirpc.dev}/include/tirpc" ];
|
NIX_CFLAGS_COMPILE = toString [ "-I${libtirpc.dev}/include/tirpc" ];
|
||||||
NIX_LDFLAGS = [ "-L${libtirpc.dev}/lib" "-ltirpc" ];
|
NIX_LDFLAGS = [ "-L${libtirpc.dev}/lib" "-ltirpc" ];
|
||||||
|
|
||||||
nativeBuildInputs = [ pkg-config go rpcsvc-proto makeWrapper removeReferencesTo ];
|
nativeBuildInputs = [ pkg-config go rpcsvc-proto makeWrapper removeReferencesTo ];
|
||||||
|
|
|
@ -110,7 +110,7 @@ stdenv.mkDerivation rec {
|
||||||
"-Dwlroots:libseat=disabled"
|
"-Dwlroots:libseat=disabled"
|
||||||
];
|
];
|
||||||
|
|
||||||
NIX_CFLAGS_COMPILE = [ "-Wno-error=array-bounds" ]; # gcc12
|
NIX_CFLAGS_COMPILE = toString [ "-Wno-error=array-bounds" ]; # gcc12
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
homepage = "https://gitlab.com/cardboardwm/cardboard";
|
homepage = "https://gitlab.com/cardboardwm/cardboard";
|
||||||
|
|
|
@ -93,7 +93,7 @@ stdenv.mkDerivation rec {
|
||||||
dleyna-server
|
dleyna-server
|
||||||
];
|
];
|
||||||
|
|
||||||
NIX_CFLAGS_COMPILE = [
|
NIX_CFLAGS_COMPILE = toString [
|
||||||
"-Wno-error=format-security" # https://gitlab.gnome.org/GNOME/gnome-online-miners/merge_requests/3/diffs#note_942747
|
"-Wno-error=format-security" # https://gitlab.gnome.org/GNOME/gnome-online-miners/merge_requests/3/diffs#note_942747
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
|
@ -9,7 +9,7 @@
|
||||||
|
|
||||||
mkDerivation {
|
mkDerivation {
|
||||||
pname = "ksystemstats";
|
pname = "ksystemstats";
|
||||||
NIX_CFLAGS_COMPILE = [ "-I${lib.getBin libksysguard}/share" ];
|
NIX_CFLAGS_COMPILE = toString [ "-I${lib.getBin libksysguard}/share" ];
|
||||||
nativeBuildInputs = [ extra-cmake-modules ];
|
nativeBuildInputs = [ extra-cmake-modules ];
|
||||||
buildInputs = [ libksysguard libnl lm_sensors networkmanager-qt ];
|
buildInputs = [ libksysguard libnl lm_sensors networkmanager-qt ];
|
||||||
}
|
}
|
||||||
|
|
|
@ -162,7 +162,7 @@ mkDerivation {
|
||||||
ln -sf $out/bin/kcminit $out/bin/kcminit_startup
|
ln -sf $out/bin/kcminit $out/bin/kcminit_startup
|
||||||
'';
|
'';
|
||||||
|
|
||||||
NIX_CFLAGS_COMPILE = [
|
NIX_CFLAGS_COMPILE = toString [
|
||||||
''-DNIXPKGS_XMESSAGE="${getBin xmessage}/bin/xmessage"''
|
''-DNIXPKGS_XMESSAGE="${getBin xmessage}/bin/xmessage"''
|
||||||
''-DNIXPKGS_XSETROOT="${getBin xsetroot}/bin/xsetroot"''
|
''-DNIXPKGS_XSETROOT="${getBin xsetroot}/bin/xsetroot"''
|
||||||
''-DNIXPKGS_START_KDEINIT_WRAPPER="${getLib kinit}/libexec/kf5/start_kdeinit_wrapper"''
|
''-DNIXPKGS_START_KDEINIT_WRAPPER="${getLib kinit}/libexec/kf5/start_kdeinit_wrapper"''
|
||||||
|
|
|
@ -19,7 +19,7 @@ stdenv.mkDerivation {
|
||||||
nativeBuildInputs = [ cmake python3 libllvm.dev ];
|
nativeBuildInputs = [ cmake python3 libllvm.dev ];
|
||||||
buildInputs = lib.optional stdenv.hostPlatform.isDarwin libcxxabi;
|
buildInputs = lib.optional stdenv.hostPlatform.isDarwin libcxxabi;
|
||||||
|
|
||||||
NIX_CFLAGS_COMPILE = [
|
NIX_CFLAGS_COMPILE = toString [
|
||||||
"-DSCUDO_DEFAULT_OPTIONS=DeleteSizeMismatch=0:DeallocationTypeMismatch=0"
|
"-DSCUDO_DEFAULT_OPTIONS=DeleteSizeMismatch=0:DeallocationTypeMismatch=0"
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
|
@ -20,7 +20,7 @@ stdenv.mkDerivation {
|
||||||
nativeBuildInputs = [ cmake python3 libllvm.dev ]
|
nativeBuildInputs = [ cmake python3 libllvm.dev ]
|
||||||
++ lib.optional stdenv.isDarwin xcbuild.xcrun;
|
++ lib.optional stdenv.isDarwin xcbuild.xcrun;
|
||||||
|
|
||||||
NIX_CFLAGS_COMPILE = [
|
NIX_CFLAGS_COMPILE = toString [
|
||||||
"-DSCUDO_DEFAULT_OPTIONS=DeleteSizeMismatch=0:DeallocationTypeMismatch=0"
|
"-DSCUDO_DEFAULT_OPTIONS=DeleteSizeMismatch=0:DeallocationTypeMismatch=0"
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
|
@ -20,7 +20,7 @@ stdenv.mkDerivation {
|
||||||
++ lib.optional stdenv.isDarwin xcbuild.xcrun;
|
++ lib.optional stdenv.isDarwin xcbuild.xcrun;
|
||||||
buildInputs = lib.optional stdenv.hostPlatform.isDarwin libcxxabi;
|
buildInputs = lib.optional stdenv.hostPlatform.isDarwin libcxxabi;
|
||||||
|
|
||||||
NIX_CFLAGS_COMPILE = [
|
NIX_CFLAGS_COMPILE = toString [
|
||||||
"-DSCUDO_DEFAULT_OPTIONS=DeleteSizeMismatch=0:DeallocationTypeMismatch=0"
|
"-DSCUDO_DEFAULT_OPTIONS=DeleteSizeMismatch=0:DeallocationTypeMismatch=0"
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
|
@ -22,7 +22,7 @@ stdenv.mkDerivation {
|
||||||
++ lib.optional stdenv.isDarwin xcbuild.xcrun;
|
++ lib.optional stdenv.isDarwin xcbuild.xcrun;
|
||||||
buildInputs = lib.optional stdenv.hostPlatform.isDarwin libcxxabi;
|
buildInputs = lib.optional stdenv.hostPlatform.isDarwin libcxxabi;
|
||||||
|
|
||||||
NIX_CFLAGS_COMPILE = [
|
NIX_CFLAGS_COMPILE = toString [
|
||||||
"-DSCUDO_DEFAULT_OPTIONS=DeleteSizeMismatch=0:DeallocationTypeMismatch=0"
|
"-DSCUDO_DEFAULT_OPTIONS=DeleteSizeMismatch=0:DeallocationTypeMismatch=0"
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
|
@ -31,7 +31,7 @@ stdenv.mkDerivation {
|
||||||
++ lib.optional stdenv.isDarwin xcbuild.xcrun;
|
++ lib.optional stdenv.isDarwin xcbuild.xcrun;
|
||||||
buildInputs = lib.optional stdenv.hostPlatform.isDarwin libcxxabi;
|
buildInputs = lib.optional stdenv.hostPlatform.isDarwin libcxxabi;
|
||||||
|
|
||||||
NIX_CFLAGS_COMPILE = [
|
NIX_CFLAGS_COMPILE = toString [
|
||||||
"-DSCUDO_DEFAULT_OPTIONS=DeleteSizeMismatch=0:DeallocationTypeMismatch=0"
|
"-DSCUDO_DEFAULT_OPTIONS=DeleteSizeMismatch=0:DeallocationTypeMismatch=0"
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
|
@ -31,7 +31,7 @@ stdenv.mkDerivation {
|
||||||
++ lib.optional stdenv.isDarwin xcbuild.xcrun;
|
++ lib.optional stdenv.isDarwin xcbuild.xcrun;
|
||||||
buildInputs = lib.optional stdenv.hostPlatform.isDarwin libcxxabi;
|
buildInputs = lib.optional stdenv.hostPlatform.isDarwin libcxxabi;
|
||||||
|
|
||||||
NIX_CFLAGS_COMPILE = [
|
NIX_CFLAGS_COMPILE = toString [
|
||||||
"-DSCUDO_DEFAULT_OPTIONS=DeleteSizeMismatch=0:DeallocationTypeMismatch=0"
|
"-DSCUDO_DEFAULT_OPTIONS=DeleteSizeMismatch=0:DeallocationTypeMismatch=0"
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
|
@ -18,7 +18,7 @@ stdenv.mkDerivation {
|
||||||
nativeBuildInputs = [ cmake python3 libllvm.dev ];
|
nativeBuildInputs = [ cmake python3 libllvm.dev ];
|
||||||
buildInputs = lib.optional stdenv.hostPlatform.isDarwin libcxxabi;
|
buildInputs = lib.optional stdenv.hostPlatform.isDarwin libcxxabi;
|
||||||
|
|
||||||
NIX_CFLAGS_COMPILE = [
|
NIX_CFLAGS_COMPILE = toString [
|
||||||
"-DSCUDO_DEFAULT_OPTIONS=DeleteSizeMismatch=0:DeallocationTypeMismatch=0"
|
"-DSCUDO_DEFAULT_OPTIONS=DeleteSizeMismatch=0:DeallocationTypeMismatch=0"
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
|
@ -18,7 +18,7 @@ stdenv.mkDerivation {
|
||||||
nativeBuildInputs = [ cmake python3 libllvm.dev ];
|
nativeBuildInputs = [ cmake python3 libllvm.dev ];
|
||||||
buildInputs = lib.optional stdenv.hostPlatform.isDarwin libcxxabi;
|
buildInputs = lib.optional stdenv.hostPlatform.isDarwin libcxxabi;
|
||||||
|
|
||||||
NIX_CFLAGS_COMPILE = [
|
NIX_CFLAGS_COMPILE = toString [
|
||||||
"-DSCUDO_DEFAULT_OPTIONS=DeleteSizeMismatch=0:DeallocationTypeMismatch=0"
|
"-DSCUDO_DEFAULT_OPTIONS=DeleteSizeMismatch=0:DeallocationTypeMismatch=0"
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
|
@ -19,7 +19,7 @@ stdenv.mkDerivation {
|
||||||
nativeBuildInputs = [ cmake python3 libllvm.dev ];
|
nativeBuildInputs = [ cmake python3 libllvm.dev ];
|
||||||
buildInputs = lib.optional stdenv.hostPlatform.isDarwin libcxxabi;
|
buildInputs = lib.optional stdenv.hostPlatform.isDarwin libcxxabi;
|
||||||
|
|
||||||
NIX_CFLAGS_COMPILE = [
|
NIX_CFLAGS_COMPILE = toString [
|
||||||
"-DSCUDO_DEFAULT_OPTIONS=DeleteSizeMismatch=0:DeallocationTypeMismatch=0"
|
"-DSCUDO_DEFAULT_OPTIONS=DeleteSizeMismatch=0:DeallocationTypeMismatch=0"
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
|
@ -19,7 +19,7 @@ stdenv.mkDerivation {
|
||||||
nativeBuildInputs = [ cmake python3 libllvm.dev ];
|
nativeBuildInputs = [ cmake python3 libllvm.dev ];
|
||||||
buildInputs = lib.optional stdenv.hostPlatform.isDarwin libcxxabi;
|
buildInputs = lib.optional stdenv.hostPlatform.isDarwin libcxxabi;
|
||||||
|
|
||||||
NIX_CFLAGS_COMPILE = [
|
NIX_CFLAGS_COMPILE = toString [
|
||||||
"-DSCUDO_DEFAULT_OPTIONS=DeleteSizeMismatch=0:DeallocationTypeMismatch=0"
|
"-DSCUDO_DEFAULT_OPTIONS=DeleteSizeMismatch=0:DeallocationTypeMismatch=0"
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
|
@ -19,7 +19,7 @@ stdenv.mkDerivation {
|
||||||
nativeBuildInputs = [ cmake python3 libllvm.dev ];
|
nativeBuildInputs = [ cmake python3 libllvm.dev ];
|
||||||
buildInputs = lib.optional stdenv.hostPlatform.isDarwin libcxxabi;
|
buildInputs = lib.optional stdenv.hostPlatform.isDarwin libcxxabi;
|
||||||
|
|
||||||
NIX_CFLAGS_COMPILE = [
|
NIX_CFLAGS_COMPILE = toString [
|
||||||
"-DSCUDO_DEFAULT_OPTIONS=DeleteSizeMismatch=0:DeallocationTypeMismatch=0"
|
"-DSCUDO_DEFAULT_OPTIONS=DeleteSizeMismatch=0:DeallocationTypeMismatch=0"
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
|
@ -31,7 +31,7 @@ stdenv.mkDerivation {
|
||||||
++ lib.optional stdenv.isDarwin xcbuild.xcrun;
|
++ lib.optional stdenv.isDarwin xcbuild.xcrun;
|
||||||
buildInputs = lib.optional stdenv.hostPlatform.isDarwin libcxxabi;
|
buildInputs = lib.optional stdenv.hostPlatform.isDarwin libcxxabi;
|
||||||
|
|
||||||
NIX_CFLAGS_COMPILE = [
|
NIX_CFLAGS_COMPILE = toString [
|
||||||
"-DSCUDO_DEFAULT_OPTIONS=DeleteSizeMismatch=0:DeallocationTypeMismatch=0"
|
"-DSCUDO_DEFAULT_OPTIONS=DeleteSizeMismatch=0:DeallocationTypeMismatch=0"
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
|
@ -49,7 +49,7 @@ stdenv.mkDerivation {
|
||||||
runHook postConfigure
|
runHook postConfigure
|
||||||
'';
|
'';
|
||||||
|
|
||||||
NIX_CFLAGS_COMPILE = [
|
NIX_CFLAGS_COMPILE = toString [
|
||||||
# Needed with GCC 12
|
# Needed with GCC 12
|
||||||
"-Wno-error=array-parameter"
|
"-Wno-error=array-parameter"
|
||||||
"-Wno-error=use-after-free"
|
"-Wno-error=use-after-free"
|
||||||
|
|
|
@ -77,7 +77,7 @@ let
|
||||||
|
|
||||||
separateDebugInfo = true;
|
separateDebugInfo = true;
|
||||||
|
|
||||||
NIX_CFLAGS_COMPILE = [ "-Wno-error" ];
|
NIX_CFLAGS_COMPILE = toString [ "-Wno-error" ];
|
||||||
|
|
||||||
NIX_LDFLAGS = lib.optionals (!headless) [
|
NIX_LDFLAGS = lib.optionals (!headless) [
|
||||||
"-lfontconfig" "-lcups" "-lXinerama" "-lXrandr" "-lmagic"
|
"-lfontconfig" "-lcups" "-lXinerama" "-lXrandr" "-lmagic"
|
||||||
|
|
|
@ -31,7 +31,7 @@ let
|
||||||
JDK_HOME = ${openjdk11_headless.home}
|
JDK_HOME = ${openjdk11_headless.home}
|
||||||
'' + args.gradleProperties or "");
|
'' + args.gradleProperties or "");
|
||||||
|
|
||||||
NIX_CFLAGS_COMPILE = [
|
NIX_CFLAGS_COMPILE = toString [
|
||||||
#avoids errors about deprecation of GTypeDebugFlags, GTimeVal, etc.
|
#avoids errors about deprecation of GTypeDebugFlags, GTimeVal, etc.
|
||||||
"-DGLIB_DISABLE_DEPRECATION_WARNINGS"
|
"-DGLIB_DISABLE_DEPRECATION_WARNINGS"
|
||||||
|
|
||||||
|
|
|
@ -73,7 +73,7 @@ stdenv.mkDerivation (rec {
|
||||||
|
|
||||||
doCheck = true;
|
doCheck = true;
|
||||||
|
|
||||||
NIX_CFLAGS_COMPILE = [ "-Wno-error=redundant-move" "-Wno-error=implicit-fallthrough" ];
|
NIX_CFLAGS_COMPILE = toString [ "-Wno-error=redundant-move" "-Wno-error=implicit-fallthrough" ];
|
||||||
|
|
||||||
installPhase = "make config=release prefix=$out "
|
installPhase = "make config=release prefix=$out "
|
||||||
+ lib.optionalString stdenv.isDarwin "bits=64 "
|
+ lib.optionalString stdenv.isDarwin "bits=64 "
|
||||||
|
|
|
@ -33,7 +33,7 @@ stdenv.mkDerivation rec {
|
||||||
-L${sqlite.out}/lib";
|
-L${sqlite.out}/lib";
|
||||||
'';
|
'';
|
||||||
|
|
||||||
NIX_CFLAGS_COMPILE = [
|
NIX_CFLAGS_COMPILE = toString [
|
||||||
# Needed with GCC 12
|
# Needed with GCC 12
|
||||||
"-Wno-error=use-after-free"
|
"-Wno-error=use-after-free"
|
||||||
];
|
];
|
||||||
|
|
|
@ -14,7 +14,7 @@ stdenv.mkDerivation rec {
|
||||||
nativeBuildInputs = [ pkg-config libtool ];
|
nativeBuildInputs = [ pkg-config libtool ];
|
||||||
buildInputs = [ perl ];
|
buildInputs = [ perl ];
|
||||||
|
|
||||||
NIX_CFLAGS_COMPILE = [
|
NIX_CFLAGS_COMPILE = toString [
|
||||||
"-Wno-error=format-security"
|
"-Wno-error=format-security"
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
|
@ -23,7 +23,7 @@ stdenv.mkDerivation rec {
|
||||||
|
|
||||||
cmakeFlags = [ "-DASSIMP_BUILD_ASSIMP_TOOLS=ON" ];
|
cmakeFlags = [ "-DASSIMP_BUILD_ASSIMP_TOOLS=ON" ];
|
||||||
|
|
||||||
NIX_CFLAGS_COMPILE = [
|
NIX_CFLAGS_COMPILE = toString [
|
||||||
# Needed with GCC 12
|
# Needed with GCC 12
|
||||||
"-Wno-error=array-bounds"
|
"-Wno-error=array-bounds"
|
||||||
];
|
];
|
||||||
|
|
|
@ -105,7 +105,7 @@ stdenv.mkDerivation rec {
|
||||||
] ++ lib.optional (apis != ["*"])
|
] ++ lib.optional (apis != ["*"])
|
||||||
"-DBUILD_ONLY=${lib.concatStringsSep ";" apis}";
|
"-DBUILD_ONLY=${lib.concatStringsSep ";" apis}";
|
||||||
|
|
||||||
NIX_CFLAGS_COMPILE = [
|
NIX_CFLAGS_COMPILE = toString [
|
||||||
# openssl 3 generates several deprecation warnings
|
# openssl 3 generates several deprecation warnings
|
||||||
"-Wno-error=deprecated-declarations"
|
"-Wno-error=deprecated-declarations"
|
||||||
];
|
];
|
||||||
|
|
|
@ -29,7 +29,7 @@ stdenv.mkDerivation rec {
|
||||||
# Do not build static libraries
|
# Do not build static libraries
|
||||||
cmakeFlags = [ "-DENABLE_STATIC=NO" ];
|
cmakeFlags = [ "-DENABLE_STATIC=NO" ];
|
||||||
|
|
||||||
NIX_CFLAGS_COMPILE = [
|
NIX_CFLAGS_COMPILE = toString [
|
||||||
"-Wno-error=cast-function-type"
|
"-Wno-error=cast-function-type"
|
||||||
"-Wno-error=deprecated-declarations"
|
"-Wno-error=deprecated-declarations"
|
||||||
"-Wno-error=format-truncation"
|
"-Wno-error=format-truncation"
|
||||||
|
|
|
@ -25,7 +25,7 @@ stdenv.mkDerivation rec {
|
||||||
# Do not build static libraries
|
# Do not build static libraries
|
||||||
cmakeFlags = [ "-DENABLE_STATIC=NO" "-DCMAKE_C_FLAGS=-Wno-error=cast-function-type" ];
|
cmakeFlags = [ "-DENABLE_STATIC=NO" "-DCMAKE_C_FLAGS=-Wno-error=cast-function-type" ];
|
||||||
|
|
||||||
NIX_CFLAGS_COMPILE = [
|
NIX_CFLAGS_COMPILE = toString [
|
||||||
# Needed with GCC 12
|
# Needed with GCC 12
|
||||||
"-Wno-error=stringop-overflow"
|
"-Wno-error=stringop-overflow"
|
||||||
];
|
];
|
||||||
|
|
|
@ -11,7 +11,7 @@ stdenv.mkDerivation rec {
|
||||||
|
|
||||||
patches = [ ./gcc6.patch ];
|
patches = [ ./gcc6.patch ];
|
||||||
|
|
||||||
NIX_CFLAGS_COMPILE = [
|
NIX_CFLAGS_COMPILE = toString [
|
||||||
"-std=c++11"
|
"-std=c++11"
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
|
@ -22,7 +22,7 @@ stdenv.mkDerivation {
|
||||||
buildInputs = [ curl ];
|
buildInputs = [ curl ];
|
||||||
propagatedBuildInputs = [ nlohmann_json ];
|
propagatedBuildInputs = [ nlohmann_json ];
|
||||||
|
|
||||||
NIX_CFLAGS_COMPILE = [
|
NIX_CFLAGS_COMPILE = toString [
|
||||||
"-Wno-error=range-loop-construct"
|
"-Wno-error=range-loop-construct"
|
||||||
# Needed with GCC 12
|
# Needed with GCC 12
|
||||||
"-Wno-error=deprecated-declarations"
|
"-Wno-error=deprecated-declarations"
|
||||||
|
|
|
@ -21,7 +21,7 @@ stdenv.mkDerivation rec {
|
||||||
"-DCMAKE_BUILD_TYPE=Release"
|
"-DCMAKE_BUILD_TYPE=Release"
|
||||||
];
|
];
|
||||||
|
|
||||||
NIX_CFLAGS_COMPILE = [
|
NIX_CFLAGS_COMPILE = toString [
|
||||||
"-Wno-error=misleading-indentation"
|
"-Wno-error=misleading-indentation"
|
||||||
"-Wno-error=stringop-overflow"
|
"-Wno-error=stringop-overflow"
|
||||||
];
|
];
|
||||||
|
|
|
@ -57,7 +57,7 @@ stdenv.mkDerivation rec {
|
||||||
# jemalloc headers are required in include/folly/portability/Malloc.h
|
# jemalloc headers are required in include/folly/portability/Malloc.h
|
||||||
propagatedBuildInputs = lib.optional stdenv.isLinux jemalloc;
|
propagatedBuildInputs = lib.optional stdenv.isLinux jemalloc;
|
||||||
|
|
||||||
NIX_CFLAGS_COMPILE = [ "-DFOLLY_MOBILE=${if follyMobile then "1" else "0"}" "-fpermissive" ];
|
NIX_CFLAGS_COMPILE = toString [ "-DFOLLY_MOBILE=${if follyMobile then "1" else "0"}" "-fpermissive" ];
|
||||||
cmakeFlags = [
|
cmakeFlags = [
|
||||||
"-DBUILD_SHARED_LIBS=ON"
|
"-DBUILD_SHARED_LIBS=ON"
|
||||||
|
|
||||||
|
|
|
@ -12,7 +12,7 @@ stdenv.mkDerivation rec {
|
||||||
|
|
||||||
nativeBuildInputs = [ autoreconfHook ];
|
nativeBuildInputs = [ autoreconfHook ];
|
||||||
|
|
||||||
NIX_CFLAGS_COMPILE = [
|
NIX_CFLAGS_COMPILE = toString [
|
||||||
# Needed with GCC 12
|
# Needed with GCC 12
|
||||||
"-std=c++14"
|
"-std=c++14"
|
||||||
];
|
];
|
||||||
|
|
|
@ -12,7 +12,7 @@ stdenv.mkDerivation rec {
|
||||||
nativeBuildInputs = [ pkg-config ];
|
nativeBuildInputs = [ pkg-config ];
|
||||||
buildInputs = [ libbsd microsoft_gsl ];
|
buildInputs = [ libbsd microsoft_gsl ];
|
||||||
|
|
||||||
NIX_CFLAGS_COMPILE = [
|
NIX_CFLAGS_COMPILE = toString [
|
||||||
# Needed with GCC 12
|
# Needed with GCC 12
|
||||||
"-Wno-error=array-parameter"
|
"-Wno-error=array-parameter"
|
||||||
"-Wno-error=misleading-indentation"
|
"-Wno-error=misleading-indentation"
|
||||||
|
|
|
@ -46,7 +46,7 @@ in stdenv.mkDerivation rec {
|
||||||
"-DBLADERF_GROUP=bladerf"
|
"-DBLADERF_GROUP=bladerf"
|
||||||
];
|
];
|
||||||
|
|
||||||
NIX_CFLAGS_COMPILE = [
|
NIX_CFLAGS_COMPILE = toString [
|
||||||
# Needed with GCC 12
|
# Needed with GCC 12
|
||||||
"-Wno-error=array-bounds"
|
"-Wno-error=array-bounds"
|
||||||
];
|
];
|
||||||
|
|
|
@ -16,7 +16,7 @@ stdenv.mkDerivation rec {
|
||||||
|
|
||||||
nativeBuildInputs = [ pkg-config gperf rpcsvc-proto ];
|
nativeBuildInputs = [ pkg-config gperf rpcsvc-proto ];
|
||||||
|
|
||||||
NIX_CFLAGS_COMPILE = [ "-I${libtirpc.dev}/include/tirpc" ];
|
NIX_CFLAGS_COMPILE = toString [ "-I${libtirpc.dev}/include/tirpc" ];
|
||||||
NIX_LDFLAGS = [ "-ltirpc" ];
|
NIX_LDFLAGS = [ "-ltirpc" ];
|
||||||
|
|
||||||
buildInputs =
|
buildInputs =
|
||||||
|
|
|
@ -24,7 +24,7 @@ stdenv.mkDerivation rec {
|
||||||
|
|
||||||
makeFlags = [ "CC=${stdenv.cc.targetPrefix}cc" "AR=${stdenv.cc.targetPrefix}ar" "PREFIX=$(out)" ];
|
makeFlags = [ "CC=${stdenv.cc.targetPrefix}cc" "AR=${stdenv.cc.targetPrefix}ar" "PREFIX=$(out)" ];
|
||||||
|
|
||||||
NIX_CFLAGS_COMPILE = [
|
NIX_CFLAGS_COMPILE = toString [
|
||||||
# Needed with GCC 12
|
# Needed with GCC 12
|
||||||
"-Wno-error=address"
|
"-Wno-error=address"
|
||||||
];
|
];
|
||||||
|
|
|
@ -28,5 +28,5 @@ stdenv.mkDerivation rec {
|
||||||
buildInputs = [ xercesc ];
|
buildInputs = [ xercesc ];
|
||||||
enableParallelBuilding = true;
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
NIX_CFLAGS_COMPILE = [ "-std=c++14" ];
|
NIX_CFLAGS_COMPILE = toString [ "-std=c++14" ];
|
||||||
}
|
}
|
||||||
|
|
|
@ -27,7 +27,7 @@ stdenv.mkDerivation rec {
|
||||||
];
|
];
|
||||||
|
|
||||||
# https://sourceforge.net/p/libgaminggear/discussion/general/thread/b43a776b3a/
|
# https://sourceforge.net/p/libgaminggear/discussion/general/thread/b43a776b3a/
|
||||||
NIX_CFLAGS_COMPILE = [ "-I${harfbuzz.dev}/include/harfbuzz" ];
|
NIX_CFLAGS_COMPILE = toString [ "-I${harfbuzz.dev}/include/harfbuzz" ];
|
||||||
|
|
||||||
postFixup = ''
|
postFixup = ''
|
||||||
moveToOutput bin "$bin"
|
moveToOutput bin "$bin"
|
||||||
|
|
|
@ -18,7 +18,7 @@ stdenv.mkDerivation rec {
|
||||||
|
|
||||||
nativeBuildInputs = [ autoreconfHook ];
|
nativeBuildInputs = [ autoreconfHook ];
|
||||||
buildInputs = [ libpng openjpeg ];
|
buildInputs = [ libpng openjpeg ];
|
||||||
NIX_CFLAGS_COMPILE = [ "-I${openjpeg.dev}/include/${openjpeg.incDir}" ];
|
NIX_CFLAGS_COMPILE = toString [ "-I${openjpeg.dev}/include/${openjpeg.incDir}" ];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Library for manipulation of the Mac OS icns resource format";
|
description = "Library for manipulation of the Mac OS icns resource format";
|
||||||
|
|
|
@ -10,7 +10,7 @@ stdenv.mkDerivation rec {
|
||||||
patches = [ ./install-fix.patch ];
|
patches = [ ./install-fix.patch ];
|
||||||
nativeBuildInputs = [ unzip ];
|
nativeBuildInputs = [ unzip ];
|
||||||
makeFlags = [ "prefix=$(out)" ];
|
makeFlags = [ "prefix=$(out)" ];
|
||||||
NIX_CFLAGS_COMPILE = [ "-std=c++11" ];
|
NIX_CFLAGS_COMPILE = toString [ "-std=c++11" ];
|
||||||
preInstall = "mkdir -p $out/lib";
|
preInstall = "mkdir -p $out/lib";
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
|
|
@ -69,7 +69,7 @@ stdenv.mkDerivation rec {
|
||||||
++ defaultOptionals;
|
++ defaultOptionals;
|
||||||
|
|
||||||
# Needed for GCC on Linux
|
# Needed for GCC on Linux
|
||||||
NIX_CFLAGS_COMPILE = [ "-Wno-error=return-type" ];
|
NIX_CFLAGS_COMPILE = toString [ "-Wno-error=return-type" ];
|
||||||
|
|
||||||
cmakeFlags = [
|
cmakeFlags = [
|
||||||
"-DBUILD_TESTS=${enableCmakeFeature gtestSupport}"
|
"-DBUILD_TESTS=${enableCmakeFeature gtestSupport}"
|
||||||
|
|
|
@ -39,7 +39,7 @@ stdenv.mkDerivation rec {
|
||||||
];
|
];
|
||||||
|
|
||||||
# Ensure C/Fortran code is position-independent.
|
# Ensure C/Fortran code is position-independent.
|
||||||
NIX_CFLAGS_COMPILE = [ "-fPIC" "-Ofast" ];
|
NIX_CFLAGS_COMPILE = toString [ "-fPIC" "-Ofast" ];
|
||||||
FCFLAGS = [ "-fPIC" "-Ofast" ];
|
FCFLAGS = [ "-fPIC" "-Ofast" ];
|
||||||
|
|
||||||
enableParallelBuilding = true;
|
enableParallelBuilding = true;
|
||||||
|
|
|
@ -71,7 +71,7 @@ stdenv.mkDerivation rec {
|
||||||
];
|
];
|
||||||
|
|
||||||
# https://gitlab.com/libvirt/libvirt-glib/-/issues/4
|
# https://gitlab.com/libvirt/libvirt-glib/-/issues/4
|
||||||
NIX_CFLAGS_COMPILE = [ "-Wno-error=pointer-sign" ];
|
NIX_CFLAGS_COMPILE = toString [ "-Wno-error=pointer-sign" ];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Library for working with virtual machines";
|
description = "Library for working with virtual machines";
|
||||||
|
|
|
@ -19,7 +19,7 @@ stdenv.mkDerivation rec {
|
||||||
"--with-x-locale-root=${libX11.out}/share/X11/locale"
|
"--with-x-locale-root=${libX11.out}/share/X11/locale"
|
||||||
];
|
];
|
||||||
|
|
||||||
NIX_CFLAGS_COMPILE = [
|
NIX_CFLAGS_COMPILE = toString [
|
||||||
# Needed with GCC 12
|
# Needed with GCC 12
|
||||||
"-Wno-error=array-bounds"
|
"-Wno-error=array-bounds"
|
||||||
];
|
];
|
||||||
|
|
|
@ -14,7 +14,7 @@ stdenv.mkDerivation rec {
|
||||||
make build-shared
|
make build-shared
|
||||||
'';
|
'';
|
||||||
|
|
||||||
NIX_CFLAGS_COMPILE = [
|
NIX_CFLAGS_COMPILE = toString [
|
||||||
"-std=c++11"
|
"-std=c++11"
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
|
@ -103,7 +103,7 @@ stdenv.mkDerivation rec {
|
||||||
runHook postBuild
|
runHook postBuild
|
||||||
'';
|
'';
|
||||||
|
|
||||||
NIX_CFLAGS_COMPILE = [
|
NIX_CFLAGS_COMPILE = toString [
|
||||||
"-Wno-error"
|
"-Wno-error"
|
||||||
"-DNIX_NSS_LIBDIR=\"${placeholder "out"}/lib/\""
|
"-DNIX_NSS_LIBDIR=\"${placeholder "out"}/lib/\""
|
||||||
] ++ lib.optionals stdenv.hostPlatform.is64bit [
|
] ++ lib.optionals stdenv.hostPlatform.is64bit [
|
||||||
|
|
|
@ -15,7 +15,7 @@ stdenv.mkDerivation rec {
|
||||||
|
|
||||||
nativeBuildInputs = [ cmake ];
|
nativeBuildInputs = [ cmake ];
|
||||||
|
|
||||||
NIX_CFLAGS_COMPILE = [
|
NIX_CFLAGS_COMPILE = toString [
|
||||||
# Needed with GCC 12
|
# Needed with GCC 12
|
||||||
"-Wno-error=deprecated-declarations"
|
"-Wno-error=deprecated-declarations"
|
||||||
];
|
];
|
||||||
|
|
|
@ -20,7 +20,7 @@ stdenv.mkDerivation rec {
|
||||||
|
|
||||||
doCheck = false;
|
doCheck = false;
|
||||||
|
|
||||||
NIX_CFLAGS_COMPILE = [
|
NIX_CFLAGS_COMPILE = toString [
|
||||||
"-Wno-error=format-truncation"
|
"-Wno-error=format-truncation"
|
||||||
"-Wno-error=address-of-packed-member"
|
"-Wno-error=address-of-packed-member"
|
||||||
"-Wno-array-bounds"
|
"-Wno-array-bounds"
|
||||||
|
|
|
@ -19,7 +19,7 @@ stdenv.mkDerivation rec {
|
||||||
|
|
||||||
buildInputs = [ readline libmysqlclient postgresql sqlite ];
|
buildInputs = [ readline libmysqlclient postgresql sqlite ];
|
||||||
|
|
||||||
NIX_CFLAGS_COMPILE = [
|
NIX_CFLAGS_COMPILE = toString [
|
||||||
# Needed with GCC 12
|
# Needed with GCC 12
|
||||||
"-std=c++14"
|
"-std=c++14"
|
||||||
];
|
];
|
||||||
|
|
|
@ -64,7 +64,7 @@ stdenv.mkDerivation rec {
|
||||||
"ac_cv_func_memcmp_working=yes"
|
"ac_cv_func_memcmp_working=yes"
|
||||||
] ++ lib.optional stdenv.isFreeBSD "--with-pic";
|
] ++ lib.optional stdenv.isFreeBSD "--with-pic";
|
||||||
|
|
||||||
NIX_CFLAGS_COMPILE = [ "-DLDAPI_SOCK=\"/run/openldap/ldapi\"" ];
|
NIX_CFLAGS_COMPILE = toString [ "-DLDAPI_SOCK=\"/run/openldap/ldapi\"" ];
|
||||||
|
|
||||||
makeFlags= [
|
makeFlags= [
|
||||||
"CC=${stdenv.cc.targetPrefix}cc"
|
"CC=${stdenv.cc.targetPrefix}cc"
|
||||||
|
|
|
@ -19,7 +19,7 @@ stdenv.mkDerivation rec {
|
||||||
|
|
||||||
configureFlags = [ "--with-xmltooling=${xml-tooling-c}" ];
|
configureFlags = [ "--with-xmltooling=${xml-tooling-c}" ];
|
||||||
|
|
||||||
NIX_CFLAGS_COMPILE = [ "-std=c++14" ];
|
NIX_CFLAGS_COMPILE = toString [ "-std=c++14" ];
|
||||||
|
|
||||||
enableParallelBuilding = true;
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
|
|
|
@ -31,7 +31,7 @@ in stdenv.mkDerivation rec {
|
||||||
# Workaround build on gcc-10+ and clang11+:
|
# Workaround build on gcc-10+ and clang11+:
|
||||||
# spa/plugins/bluez5/libspa-bluez5.so.p/bluez5-monitor.c.o:(.bss+0x0):
|
# spa/plugins/bluez5/libspa-bluez5.so.p/bluez5-monitor.c.o:(.bss+0x0):
|
||||||
# multiple definition of `spa_a2dp_sink_factory'
|
# multiple definition of `spa_a2dp_sink_factory'
|
||||||
NIX_CFLAGS_COMPILE = [ "-fcommon" ];
|
NIX_CFLAGS_COMPILE = toString [ "-fcommon" ];
|
||||||
|
|
||||||
mesonFlags = [
|
mesonFlags = [
|
||||||
"-Ddocs=true"
|
"-Ddocs=true"
|
||||||
|
|
|
@ -28,7 +28,7 @@ stdenv.mkDerivation rec {
|
||||||
glib
|
glib
|
||||||
];
|
];
|
||||||
|
|
||||||
NIX_CFLAGS_COMPILE = [
|
NIX_CFLAGS_COMPILE = toString [
|
||||||
"--std=gnu99"
|
"--std=gnu99"
|
||||||
"-Wno-error"
|
"-Wno-error"
|
||||||
];
|
];
|
||||||
|
|
|
@ -17,7 +17,7 @@ stdenv.mkDerivation rec {
|
||||||
buildInputs = [ curl zeromq czmq libsodium ];
|
buildInputs = [ curl zeromq czmq libsodium ];
|
||||||
|
|
||||||
# https://github.com/kevinkreiser/prime_server/issues/95
|
# https://github.com/kevinkreiser/prime_server/issues/95
|
||||||
NIX_CFLAGS_COMPILE = [ "-Wno-error=unused-variable" ];
|
NIX_CFLAGS_COMPILE = toString [ "-Wno-error=unused-variable" ];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Non-blocking (web)server API for distributed computing and SOA based on zeromq";
|
description = "Non-blocking (web)server API for distributed computing and SOA based on zeromq";
|
||||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue