2008-03-05 10:10:23 +01:00
|
|
|
{fetchurl, stdenv, libcddb, pkgconfig, ncurses}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "libcdio-0.79";
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://gnu/libcdio/${name}.tar.gz";
|
|
|
|
sha256 = "1xfizvs0yvgs9ddazalsmccd6whqi5fy4dlm3dhcqj72wvpf7w0v";
|
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ libcddb pkgconfig ncurses ];
|
|
|
|
|
2008-03-27 16:27:30 +01:00
|
|
|
doCheck = true;
|
|
|
|
|
2008-03-05 10:10:23 +01:00
|
|
|
meta = {
|
|
|
|
description = ''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/;
|
|
|
|
};
|
|
|
|
}
|