2008-08-29 13:31:16 +02:00
|
|
|
{fetchurl, stdenv, libcddb, pkgconfig, ncurses, help2man}:
|
2008-03-05 10:10:23 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2008-08-29 13:31:16 +02:00
|
|
|
name = "libcdio-0.80";
|
|
|
|
|
2008-03-05 10:10:23 +01:00
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://gnu/libcdio/${name}.tar.gz";
|
2008-08-29 13:31:16 +02:00
|
|
|
sha256 = "0rnayw7gcq6jii2xrgg2n4wa8bsf5rw2hcww214lc0ssvcs1m95i";
|
2008-03-05 10:10:23 +01:00
|
|
|
};
|
|
|
|
|
2008-08-29 13:31:16 +02:00
|
|
|
buildInputs = [libcddb pkgconfig ncurses help2man];
|
2008-03-05 10:10:23 +01:00
|
|
|
|
2008-08-29 13:31:16 +02:00
|
|
|
# Disabled because one test (check_paranoia.sh) fails.
|
|
|
|
#doCheck = true;
|
2008-03-27 16:27:30 +01:00
|
|
|
|
2008-03-05 10:10:23 +01:00
|
|
|
meta = {
|
2008-04-22 09:57:31 +02:00
|
|
|
description = "A library for OS-idependent 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.
|
|
|
|
'';
|
2008-03-05 10:10:23 +01:00
|
|
|
license = "GPLv2+";
|
|
|
|
homepage = http://www.gnu.org/software/libcdio/;
|
|
|
|
};
|
|
|
|
}
|