From 3d1aab41f78b210b7ffa6bc60779e6ded6f272dd Mon Sep 17 00:00:00 2001 From: awwpotato Date: Sat, 29 Mar 2025 17:08:07 -0700 Subject: [PATCH] cyclone: unbreak on GCC 14 --- pkgs/by-name/cy/cyclone/package.nix | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/pkgs/by-name/cy/cyclone/package.nix b/pkgs/by-name/cy/cyclone/package.nix index 5209988b02a6..408cc0c230fe 100644 --- a/pkgs/by-name/cy/cyclone/package.nix +++ b/pkgs/by-name/cy/cyclone/package.nix @@ -23,19 +23,21 @@ stdenv.mkDerivation { "prefix=$(out)" ]; + env.NIX_CFLAGS_COMPILE = "-Wno-error=incompatible-pointer-types"; + postInstall = '' mv "$out/lib/pd-externals/cyclone" "$out/" rm -rf $out/lib ''; - meta = with lib; { + meta = { description = "Library of PureData classes, bringing some level of compatibility between Max/MSP and Pd environments"; homepage = "http://puredata.info/downloads/cyclone"; - license = licenses.tcltk; - maintainers = with maintainers; [ + license = lib.licenses.tcltk; + maintainers = with lib.maintainers; [ magnetophon carlthome ]; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; }