Commit 18042df4 authored by Bart Brouns's avatar Bart Brouns
Browse files

gxmatcheq: fix build

parent eae54e1a
Loading
Loading
Loading
Loading
+7 −1
Original line number Diff line number Diff line
{
  lib,
  stdenv,
  gcc13Stdenv,
  fetchFromGitHub,
  xorg,
  xorgproto,
@@ -8,7 +9,12 @@
  lv2,
  pkg-config,
}:
stdenv.mkDerivation (finalAttrs: {
let
  # see: https://github.com/brummer10/GxMatchEQ.lv2/issues/8
  # Use gcc13 on Linux, but default stdenv (clang) elsewhere
  buildStdenv = if stdenv.hostPlatform.isLinux then gcc13Stdenv else stdenv;
in
buildStdenv.mkDerivation (finalAttrs: {
  pname = "GxMatchEQ.lv2";
  version = "0.1";