at v192 27 lines 863 B view raw
1{ fetchurl, stdenv, libcddb, pkgconfig, ncurses, help2man }: 2 3stdenv.mkDerivation rec { 4 name = "libcdio-0.93"; 5 6 src = fetchurl { 7 url = "mirror://gnu/libcdio/${name}.tar.bz2"; 8 sha256 = "1a6x2c5bvpnkn7lhmxkjgz4axmh93m1clrlv41s1wzkc48lnc9zq"; 9 }; 10 11 buildInputs = [ libcddb pkgconfig ncurses help2man ]; 12 13 # Disabled because one test (check_paranoia.sh) fails. 14 #doCheck = true; 15 16 meta = { 17 description = "A library for OS-independent CD-ROM and CD image access"; 18 longDescription = '' 19 GNU libcdio is a library for OS-independent CD-ROM and 20 CD image access. It includes a library for working with 21 ISO-9660 filesystems (libiso9660), as well as utility 22 programs such as an audio CD player and an extractor. 23 ''; 24 license = stdenv.lib.licenses.gpl2Plus; 25 homepage = http://www.gnu.org/software/libcdio/; 26 }; 27}