2017-01-24 22:45:08 +01:00
|
|
|
{ stdenv, fetchurl, libcddb, pkgconfig, ncurses, help2man, libiconv }:
|
2008-03-05 10:10:23 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2018-02-24 17:04:30 +01:00
|
|
|
name = "libcdio-2.0.0";
|
2017-01-24 22:45:08 +01:00
|
|
|
|
2008-03-05 10:10:23 +01:00
|
|
|
src = fetchurl {
|
2014-10-07 21:17:46 +02:00
|
|
|
url = "mirror://gnu/libcdio/${name}.tar.bz2";
|
2018-02-24 17:04:30 +01:00
|
|
|
sha256 = "0jr8ppdm80c533nzmrpz3iffnpc6nhvsria1di9f4jg1l19a03fd";
|
2008-03-05 10:10:23 +01:00
|
|
|
};
|
|
|
|
|
2017-09-05 23:26:13 +02:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [ libcddb ncurses help2man ]
|
2017-01-24 22:45:08 +01:00
|
|
|
++ stdenv.lib.optional stdenv.isDarwin libiconv;
|
2008-03-05 10:10:23 +01:00
|
|
|
|
2018-02-24 17:04:30 +01:00
|
|
|
# Disabled due to several spurious test failures.
|
|
|
|
# doCheck = true;
|
2008-03-27 16:27:30 +01:00
|
|
|
|
2017-01-24 22:45:08 +01:00
|
|
|
meta = with stdenv.lib; {
|
2010-04-16 21:23:25 +02:00
|
|
|
description = "A library for OS-independent CD-ROM and CD image access";
|
2008-04-22 09:57:31 +02:00
|
|
|
longDescription = ''
|
2014-12-30 03:31:03 +01:00
|
|
|
GNU libcdio is a library for OS-independent CD-ROM and
|
2008-04-22 09:57:31 +02:00
|
|
|
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
|
|
|
homepage = http://www.gnu.org/software/libcdio/;
|
2017-01-24 22:45:08 +01:00
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
platforms = platforms.linux ++ platforms.darwin;
|
2008-03-05 10:10:23 +01:00
|
|
|
};
|
|
|
|
}
|