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