nixpkgs/pkgs/development/libraries/libcdio/default.nix

34 lines
1 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, libcddb, pkgconfig, ncurses, help2man, libiconv, Carbon, IOKit }:
stdenv.mkDerivation rec {
2018-02-24 16:04:30 +00:00
name = "libcdio-2.0.0";
2017-01-24 21:45:08 +00:00
src = fetchurl {
2014-10-07 19:17:46 +00:00
url = "mirror://gnu/libcdio/${name}.tar.bz2";
2018-02-24 16:04:30 +00:00
sha256 = "0jr8ppdm80c533nzmrpz3iffnpc6nhvsria1di9f4jg1l19a03fd";
};
2018-08-10 11:09:58 +00:00
postPatch = ''
patchShebangs .
'';
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ libcddb ncurses help2man ]
++ stdenv.lib.optionals stdenv.isDarwin [ libiconv Carbon IOKit ];
2018-08-10 11:09:58 +00:00
doCheck = true;
2017-01-24 21:45:08 +00:00
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.
'';
homepage = http://www.gnu.org/software/libcdio/;
2017-01-24 21:45:08 +00:00
license = licenses.gpl2Plus;
platforms = platforms.linux ++ platforms.darwin;
};
}