tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
cyclone: unbreak on GCC 14
awwpotato
10 months ago
3d1aab41
1c2f1b30
+6
-4
1 changed file
expand all
collapse all
unified
split
pkgs
by-name
cy
cyclone
package.nix
+6
-4
pkgs/by-name/cy/cyclone/package.nix
···
23
23
"prefix=$(out)"
24
24
];
25
25
26
26
+
env.NIX_CFLAGS_COMPILE = "-Wno-error=incompatible-pointer-types";
27
27
+
26
28
postInstall = ''
27
29
mv "$out/lib/pd-externals/cyclone" "$out/"
28
30
rm -rf $out/lib
29
31
'';
30
32
31
31
-
meta = with lib; {
33
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
34
-
license = licenses.tcltk;
35
35
-
maintainers = with maintainers; [
36
36
+
license = lib.licenses.tcltk;
37
37
+
maintainers = with lib.maintainers; [
36
38
magnetophon
37
39
carlthome
38
40
];
39
39
-
platforms = platforms.linux;
41
41
+
platforms = lib.platforms.linux;
40
42
};
41
43
}