cyclone: unbreak on GCC 14

awwpotato 3d1aab41 1c2f1b30

+6 -4
+6 -4
pkgs/by-name/cy/cyclone/package.nix
··· 23 23 "prefix=$(out)" 24 24 ]; 25 25 26 + env.NIX_CFLAGS_COMPILE = "-Wno-error=incompatible-pointer-types"; 27 + 26 28 postInstall = '' 27 29 mv "$out/lib/pd-externals/cyclone" "$out/" 28 30 rm -rf $out/lib 29 31 ''; 30 32 31 - meta = with lib; { 33 + meta = { 32 34 description = "Library of PureData classes, bringing some level of compatibility between Max/MSP and Pd environments"; 33 35 homepage = "http://puredata.info/downloads/cyclone"; 34 - license = licenses.tcltk; 35 - maintainers = with maintainers; [ 36 + license = lib.licenses.tcltk; 37 + maintainers = with lib.maintainers; [ 36 38 magnetophon 37 39 carlthome 38 40 ]; 39 - platforms = platforms.linux; 41 + platforms = lib.platforms.linux; 40 42 }; 41 43 }