nixpkgs/pkgs/tools/cd-dvd/dvd+rw-tools/default.nix
Ioannis Koutras 60c88c48d1 dvdplusrwtools: apply multiple fixes
Upstream version of dvd+rw-tools is quite old and many Linux
distributions apply multiple patches to keep it working on newer
systems. This commit includes those patches.

This closes #21024.
2017-01-05 11:41:34 +02:00

39 lines
1 KiB
Nix

{stdenv, fetchurl, cdrkit, m4}:
stdenv.mkDerivation {
name = "dvd+rw-tools-7.1";
src = fetchurl {
url = http://fy.chalmers.se/~appro/linux/DVD+RW/tools/dvd+rw-tools-7.1.tar.gz;
sha256 = "1jkjvvnjcyxpql97xjjx0kwvy70kxpiznr2zpjy2hhci5s10zmpq";
};
# Patches from Gentoo / Fedora
# https://bugs.gentoo.org/257360
# https://bugzilla.redhat.com/show_bug.cgi?id=426068
# https://bugzilla.redhat.com/show_bug.cgi?id=243036
patches = [
./dvd+rw-tools-7.0-dvddl.patch
./dvd+rw-tools-7.0-glibc2.6.90.patch
./dvd+rw-tools-7.0-wctomb.patch
./dvd+rw-tools-7.0-wexit.patch
./dvd+rw-tools-7.1-layerbreaksetup.patch
];
buildInputs = [cdrkit m4];
preBuild = ''
makeFlags="prefix=$out"
'';
# Incompatibility with Linux 2.6.23 headers, see
# http://www.mail-archive.com/cdwrite@other.debian.org/msg11464.html
NIX_CFLAGS_COMPILE = "-DINT_MAX=__INT_MAX__";
meta = {
homepage = http://fy.chalmers.se/~appro/linux/DVD+RW/tools;
description = "Tools for burning DVDs";
platforms = stdenv.lib.platforms.linux;
};
}