blob: 7085551c723888fb97bc37f03e21ec5010974dae (
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
|
{ lib
, stdenv
, fetchFromGitea
, autoreconfHook
, pkg-config
}:
stdenv.mkDerivation (finalAttrs: {
pname = "libburn";
version = "1.5.6";
src = fetchFromGitea {
domain = "dev.lovelyhq.com";
owner = "libburnia";
repo = "libburn";
rev = "release-${finalAttrs.version}";
hash = "sha256-Xo45X4374FXvlrJ4Q0PahYvuWXO0k3N0ke0mbURYt54=";
};
nativeBuildInputs = [
autoreconfHook
pkg-config
];
outputs = [ "out" "man" ];
strictDeps = true;
meta = {
homepage = "https://dev.lovelyhq.com/libburnia/web/wiki";
description = "Library by which preformatted data get onto optical media: CD, DVD, BD (Blu-Ray)";
changelog = "https://dev.lovelyhq.com/libburnia/libburn/src/tag/${finalAttrs.src.rev}/ChangeLog";
license = lib.licenses.gpl2Plus;
maintainers = with lib.maintainers; [ abbradar AndersonTorres ];
mainProgram = "cdrskin";
platforms = lib.platforms.unix;
};
})
|