2010-04-16 19:23:25 +00:00
|
|
|
{ fetchurl, stdenv, libcddb, pkgconfig, ncurses, help2man }:
|
2008-03-05 09:10:23 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2014-10-07 19:17:46 +00:00
|
|
|
name = "libcdio-0.93";
|
2008-08-29 11:31:16 +00:00
|
|
|
|
2008-03-05 09:10:23 +00:00
|
|
|
src = fetchurl {
|
2014-10-07 19:17:46 +00:00
|
|
|
url = "mirror://gnu/libcdio/${name}.tar.bz2";
|
|
|
|
sha256 = "1a6x2c5bvpnkn7lhmxkjgz4axmh93m1clrlv41s1wzkc48lnc9zq";
|
2008-03-05 09:10:23 +00:00
|
|
|
};
|
|
|
|
|
2010-04-16 19:23:25 +00:00
|
|
|
buildInputs = [ libcddb pkgconfig ncurses help2man ];
|
2008-03-05 09:10:23 +00:00
|
|
|
|
2008-08-29 11:31:16 +00:00
|
|
|
# Disabled because one test (check_paranoia.sh) fails.
|
|
|
|
#doCheck = true;
|
2008-03-27 15:27:30 +00:00
|
|
|
|
2008-03-05 09:10:23 +00:00
|
|
|
meta = {
|
2010-04-16 19:23:25 +00:00
|
|
|
description = "A library for OS-independent CD-ROM and CD image access";
|
2008-04-22 07:57:31 +00:00
|
|
|
longDescription = ''
|
2014-12-30 02:31:03 +00:00
|
|
|
GNU libcdio is a library for OS-independent CD-ROM and
|
2008-04-22 07:57:31 +00: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.
|
|
|
|
'';
|
2014-06-19 04:19:00 +00:00
|
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
2008-03-05 09:10:23 +00:00
|
|
|
homepage = http://www.gnu.org/software/libcdio/;
|
2016-08-02 17:50:55 +00:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2008-03-05 09:10:23 +00:00
|
|
|
};
|
|
|
|
}
|