mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-09 19:13:26 +03:00
dvd-vr: fix build with GCC 14
This commit is contained in:
parent
e73f48d6bd
commit
f0ebdac100
1 changed files with 6 additions and 1 deletions
|
@ -11,7 +11,12 @@ stdenv.mkDerivation (finalAttrs: {
|
|||
url = "https://www.pixelbeat.org/programs/dvd-vr/dvd-vr-${finalAttrs.version}.tar.gz";
|
||||
sha256 = "13wkdia3c0ryda40b2nzpb9vddimasgc4w95hvl0k555k9k8bl0r";
|
||||
};
|
||||
makeFlags = [ "PREFIX=$(out)" ];
|
||||
|
||||
makeFlags = [
|
||||
"PREFIX=$(out)"
|
||||
# Fix build with GCC 14
|
||||
"CFLAGS=-Wno-error=incompatible-pointer-types"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://www.pixelbeat.org/programs/dvd-vr/";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue