summary refs log tree commit diff
path: root/pkgs/development/libraries/libcdio/0.82.nix
blob: a4b2e6078d2b3fa512b1957eeb11f7b2e14c5255 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{ stdenv, fetchurl, libcddb, pkgconfig, ncurses, help2man, libiconv }:

stdenv.mkDerivation rec {
  name = "libcdio-0.82";

  src = fetchurl {
    url = "mirror://gnu/libcdio/${name}.tar.gz";
    sha256 = "0fax1dzy84dzs20bmpq2gfw6hc1x2x9mhk53wynhcycjw3l3vjqs";
  };

  nativeBuildInputs = [ pkgconfig ];
  buildInputs = [ libcddb ncurses help2man ]
    ++ stdenv.lib.optional stdenv.isDarwin libiconv;

  # Disabled because one test (check_paranoia.sh) fails.
  #doCheck = true;

  meta = with stdenv.lib; {
    description = "A library for OS-independent CD-ROM and CD image access";
    longDescription = ''
      GNU libcdio is a library for OS-independent 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 = licenses.gpl2Plus;
    homepage = http://www.gnu.org/software/libcdio/;
    platforms = platforms.linux ++ platforms.darwin;
  };
}