Commit 944aa75a authored by Sergei Trofimovich's avatar Sergei Trofimovich
Browse files

infamousPlugins: fix build on glibc-2.36

Without the change build fails as:

    src/casynth/casynth_ui_main.cxx:47:27: error: 'time' was not declared in this scope
    and ((unsigned int) time (NULL));
                        ^~~~
    src/casynth/casynth_ui_main.cxx:9:1: note: 'time' is defined in header '<ctime>'; did you forget to '#include <ctime>'?
        8 | #include "casynth_ui.h"
      +++ |+#include <ctime>
        9 | #include "lv2/lv2plug.in/ns/extensions/ui/ui.h"

Full build log: https://hydra.nixos.org/log/dh6qh731kjkizpymf8qpbi33pwq7bg9v-infamousPlugins-0.3.0.drv

ZHF: #230712
parent 587ac4e8
Loading
Loading
Loading
Loading
+23 −1
Original line number Diff line number Diff line
{ lib, stdenv, fetchFromGitHub, fetchpatch, pkg-config, cairomm, cmake, lv2, libpthreadstubs, libXdmcp, libXft, ntk, pcre, fftwFloat, zita-resampler }:
{ lib
, stdenv
, fetchFromGitHub
, fetchpatch
, pkg-config
, cairomm
, cmake
, lv2
, libpthreadstubs
, libXdmcp
, libXft
, ntk
, pcre
, fftwFloat
, zita-resampler
}:

stdenv.mkDerivation rec {
  pname = "infamousPlugins";
@@ -16,6 +31,13 @@ stdenv.mkDerivation rec {
      url = "https://github.com/ssj71/infamousPlugins/commit/06dd967b4736ea886dc1dc07f882cb1563961582.patch";
      sha256 = "08xwh6px13y1gykaw103nhvjms7vgbgkcm0avh9f5d2d7aadq0l2";
    })

    # glibx-2.36 upstream fix: https://github.com/ssj71/infamousPlugins/pull/52
    (fetchpatch {
      name = "glibc-2.36.patch";
      url = "https://github.com/ssj71/infamousPlugins/commit/eb4fd9af25362fdd006549c471f4cf0427816dd5.patch";
      hash = "sha256-kBB2meQYVoVSTHIG77M8Fmeve87JBIUjpWCP6oiOkKI=";
    })
  ];
  nativeBuildInputs = [ pkg-config cmake ];
  buildInputs = [ cairomm lv2 libpthreadstubs libXdmcp libXft ntk pcre fftwFloat zita-resampler ];