Skip to content

Commit f0ebdac

Browse files
committed
dvd-vr: fix build with GCC 14
1 parent e73f48d commit f0ebdac

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

pkgs/by-name/dv/dvd-vr/package.nix

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,12 @@ stdenv.mkDerivation (finalAttrs: {
1111
url = "https://www.pixelbeat.org/programs/dvd-vr/dvd-vr-${finalAttrs.version}.tar.gz";
1212
sha256 = "13wkdia3c0ryda40b2nzpb9vddimasgc4w95hvl0k555k9k8bl0r";
1313
};
14-
makeFlags = [ "PREFIX=$(out)" ];
14+
15+
makeFlags = [
16+
"PREFIX=$(out)"
17+
# Fix build with GCC 14
18+
"CFLAGS=-Wno-error=incompatible-pointer-types"
19+
];
1520

1621
meta = with lib; {
1722
homepage = "https://www.pixelbeat.org/programs/dvd-vr/";

0 commit comments

Comments
 (0)