blob: 62eb37e34ab66d3eedf08131d8b369eef8f2c355 (
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
{ lib, stdenv, fetchurl, fetchpatch, libcddb, pkg-config, ncurses, help2man, libiconv, Carbon, IOKit }:
stdenv.mkDerivation rec {
pname = "libcdio";
version = "2.1.0";
src = fetchurl {
url = "mirror://gnu/libcdio/libcdio-${version}.tar.bz2";
sha256 = "0avi6apv5ydjy6b9c3z9a46rvp5i57qyr09vr7x4nndxkmcfjl45";
};
patches = [
# Fixes test failure of realpath test with glibc-2.36
(fetchpatch {
url = "https://src.fedoraproject.org/rpms/libcdio/raw/d49ccdd9c8b4e9d57c01539f4c8948f28ce82bca/f/realpath-test-fix.patch";
sha256 = "sha256-ldAGlcf79uQ8QAt4Au8Iv6jsI6ICZXtXOKZBpyELtN8=";
})
# pull pending upstream patch to fix build on ncurses-6.3:
# https://savannah.gnu.org/patch/index.php?10130
(fetchpatch {
name = "ncurses-6.3.patch";
url = "https://savannah.gnu.org/patch/download.php?file_id=52179";
sha256 = "1v15gxhpi4bgcr12pb3d9c3hiwj0drvc832vic7sham34lhjmcbb";
})
];
postPatch = ''
patchShebangs .
'';
nativeBuildInputs = [ pkg-config help2man ];
buildInputs = [ libcddb libiconv ncurses ]
++ lib.optionals stdenv.hostPlatform.isDarwin [ Carbon IOKit ];
enableParallelBuilding = true;
env = lib.optionalAttrs stdenv.cc.isGNU {
NIX_CFLAGS_COMPILE = "-Wno-error=implicit-function-declaration";
};
doCheck = !stdenv.hostPlatform.isDarwin;
meta = with lib; {
description = "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 = "https://www.gnu.org/software/libcdio/";
license = licenses.gpl2Plus;
platforms = platforms.unix;
};
}
|