libcdio-0.82 for abcde

libcdio-0.9x lacks cd-paranoia needed by abcde. Bring back 0.82 for
abcde until we sort out where cd-paranoia went to.
This commit is contained in:
Florian Friesdorf
2014-02-02 21:29:08 +01:00
parent 177b0a0e8b
commit 9fb8624b94
2 changed files with 29 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
{ fetchurl, stdenv, libcddb, pkgconfig, ncurses, help2man }:
stdenv.mkDerivation rec {
name = "libcdio-0.82";
src = fetchurl {
url = "mirror://gnu/libcdio/${name}.tar.gz";
sha256 = "0fax1dzy84dzs20bmpq2gfw6hc1x2x9mhk53wynhcycjw3l3vjqs";
};
buildInputs = [ libcddb pkgconfig ncurses help2man ];
# Disabled because one test (check_paranoia.sh) fails.
#doCheck = true;
meta = {
description = "A library for OS-independent CD-ROM and CD image access";
longDescription = ''
GNU libcdio is a library for OS-idependent CD-ROM and
CD image access. It includes a library for working with
ISO-9660 filesystems (libiso9660), as well as utility
programs such as an audio CD player and an extractor.
'';
license = "GPLv2+";
homepage = http://www.gnu.org/software/libcdio/;
};
}