Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
30 lines
777 B
Nix
30 lines
777 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchurl,
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "dvd-vr";
|
|
version = "0.9.7";
|
|
src = fetchurl {
|
|
url = "https://www.pixelbeat.org/programs/dvd-vr/dvd-vr-${finalAttrs.version}.tar.gz";
|
|
sha256 = "13wkdia3c0ryda40b2nzpb9vddimasgc4w95hvl0k555k9k8bl0r";
|
|
};
|
|
|
|
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/";
|
|
downloadPage = "https://www.pixelbeat.org/programs/dvd-vr/";
|
|
description = "Utility to identify and optionally copy recordings from a DVD-VR format disc";
|
|
license = licenses.gpl2Plus;
|
|
maintainers = with maintainers; [ fgaz ];
|
|
mainProgram = "dvd-vr";
|
|
};
|
|
})
|