nixpkgs/pkgs/tools/cd-dvd/cdrdao/default.nix

38 lines
1.1 KiB
Nix
Raw Normal View History

2017-10-24 11:06:29 +02:00
{stdenv, fetchurl, libvorbis, libmad, pkgconfig, libao}:
stdenv.mkDerivation {
name = "cdrdao-1.2.3";
src = fetchurl {
url = "mirror://sourceforge/cdrdao/cdrdao-1.2.3.tar.bz2";
sha256 = "0pmpgx91j984snrsxbq1dgf3ximks2dfh1sqqmic72lrls7wp4w1";
};
makeFlags = [ "RM=rm" "LN=ln" "MV=mv" ];
nativeBuildInputs = [ pkgconfig ];
2017-10-24 11:06:29 +02:00
buildInputs = [ libvorbis libmad libao ];
hardeningDisable = [ "format" ];
2016-02-08 18:19:49 +01:00
# Adjust some headers to match glibc 2.12 ... patch is a diff between
# the cdrdao CVS head and the 1.2.3 release.
patches = [ ./adjust-includes-for-glibc-212.patch ];
# we have glibc/include/linux as a symlink to the kernel headers,
# and the magic '..' points to kernelheaders, and not back to the glibc/include
postPatch = ''
sed -i 's,linux/../,,g' dao/sg_err.h
'';
# Needed on gcc >= 6.
NIX_CFLAGS_COMPILE = "-Wno-narrowing";
2018-09-07 22:40:38 +02:00
meta = with stdenv.lib; {
description = "A tool for recording audio or data CD-Rs in disk-at-once (DAO) mode";
homepage = "http://cdrdao.sourceforge.net/";
2018-09-07 22:40:38 +02:00
platforms = platforms.linux;
license = licenses.gpl2;
};
}