Skip to content

Commit 577eed1

Browse files
cyclone: unbreak on GCC 14 (#394483)
2 parents 94115b7 + 3d1aab4 commit 577eed1

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

pkgs/by-name/cy/cyclone/package.nix

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,19 +23,21 @@ stdenv.mkDerivation {
2323
"prefix=$(out)"
2424
];
2525

26+
env.NIX_CFLAGS_COMPILE = "-Wno-error=incompatible-pointer-types";
27+
2628
postInstall = ''
2729
mv "$out/lib/pd-externals/cyclone" "$out/"
2830
rm -rf $out/lib
2931
'';
3032

31-
meta = with lib; {
33+
meta = {
3234
description = "Library of PureData classes, bringing some level of compatibility between Max/MSP and Pd environments";
3335
homepage = "http://puredata.info/downloads/cyclone";
34-
license = licenses.tcltk;
35-
maintainers = with maintainers; [
36+
license = lib.licenses.tcltk;
37+
maintainers = with lib.maintainers; [
3638
magnetophon
3739
carlthome
3840
];
39-
platforms = platforms.linux;
41+
platforms = lib.platforms.linux;
4042
};
4143
}

0 commit comments

Comments
 (0)