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
57
58
59
60
61
62
63
64
|
{ lib
, acl
, attr
, autoreconfHook
, bzip2
, fetchFromGitea
, libburn
, libcdio
, libiconv
, libisofs
, pkg-config
, readline
, stdenv
, zlib
}:
stdenv.mkDerivation (finalAttrs: {
pname = "libisoburn";
version = "1.5.6";
src = fetchFromGitea {
domain = "dev.lovelyhq.com";
owner = "libburnia";
repo = "libisoburn";
rev = "release-${finalAttrs.version}";
hash = "sha256-16qNVlWFVXfvbte5EgP/u193wK2GV/r22hVX0SZWr+0=";
};
nativeBuildInputs = [
autoreconfHook
pkg-config
];
buildInputs = [
bzip2
libcdio
libiconv
readline
zlib
libburn
libisofs
] ++ lib.optionals stdenv.isLinux [
acl
attr
];
propagatedBuildInputs = lib.optionals stdenv.isLinux [
acl
];
outputs = [ "out" "lib" "dev" "info" "man" ];
strictDeps = true;
meta = {
homepage = "http://libburnia-project.org/";
description = "Enables creation and expansion of ISO-9660 filesystems on CD/DVD/BD";
changelog = "https://dev.lovelyhq.com/libburnia/libisoburn/src/tag/${finalAttrs.src.rev}/ChangeLog";
license = lib.licenses.gpl2Plus;
mainProgram = "osirrox";
maintainers = with lib.maintainers; [ AndersonTorres ];
inherit (libisofs.meta) platforms;
};
})
|