2018-03-12 20:32:38 +00:00
|
|
|
{ stdenv, fetchurl, libcddb, pkgconfig, ncurses, help2man, libiconv, Carbon, IOKit }:
|
2008-03-05 09:10:23 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-05-01 07:10:09 +01:00
|
|
|
name = "libcdio-2.1.0";
|
2017-01-24 21:45:08 +00:00
|
|
|
|
2008-03-05 09:10:23 +00:00
|
|
|
src = fetchurl {
|
2014-10-07 20:17:46 +01:00
|
|
|
url = "mirror://gnu/libcdio/${name}.tar.bz2";
|
2019-05-01 07:10:09 +01:00
|
|
|
sha256 = "0avi6apv5ydjy6b9c3z9a46rvp5i57qyr09vr7x4nndxkmcfjl45";
|
2008-03-05 09:10:23 +00:00
|
|
|
};
|
|
|
|
|
2018-08-10 12:09:58 +01:00
|
|
|
postPatch = ''
|
|
|
|
patchShebangs .
|
|
|
|
'';
|
|
|
|
|
2017-09-05 22:26:13 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [ libcddb ncurses help2man ]
|
2018-03-12 20:32:38 +00:00
|
|
|
++ stdenv.lib.optionals stdenv.isDarwin [ libiconv Carbon IOKit ];
|
2008-03-05 09:10:23 +00:00
|
|
|
|
2019-03-19 04:21:03 +00:00
|
|
|
doCheck = !stdenv.isDarwin;
|
2008-03-27 15:27:30 +00:00
|
|
|
|
2017-01-24 21:45:08 +00:00
|
|
|
meta = with stdenv.lib; {
|
2010-04-16 20:23:25 +01:00
|
|
|
description = "A library for OS-independent CD-ROM and CD image access";
|
2008-04-22 08:57:31 +01:00
|
|
|
longDescription = ''
|
2014-12-30 02:31:03 +00:00
|
|
|
GNU libcdio is a library for OS-independent CD-ROM and
|
2008-04-22 08:57:31 +01: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.
|
|
|
|
'';
|
2018-12-01 18:22:13 +00:00
|
|
|
homepage = https://www.gnu.org/software/libcdio/;
|
2017-01-24 21:45:08 +00:00
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
platforms = platforms.linux ++ platforms.darwin;
|
2008-03-05 09:10:23 +00:00
|
|
|
};
|
|
|
|
}
|