atlauncher: 3.4.38.1 -> 3.4.38.2 (#375818)
[NixPkgs.git] / pkgs / by-name / li / libburn / package.nix
blob4f3e60bf90ce1cb74a1a2c65a7fc3d33bf9ebe53
2   lib,
3   stdenv,
4   fetchFromGitea,
5   autoreconfHook,
6   pkg-config,
7 }:
9 stdenv.mkDerivation (finalAttrs: {
10   pname = "libburn";
11   version = "1.5.6";
13   src = fetchFromGitea {
14     domain = "dev.lovelyhq.com";
15     owner = "libburnia";
16     repo = "libburn";
17     rev = "release-${finalAttrs.version}";
18     hash = "sha256-Xo45X4374FXvlrJ4Q0PahYvuWXO0k3N0ke0mbURYt54=";
19   };
21   nativeBuildInputs = [
22     autoreconfHook
23     pkg-config
24   ];
26   outputs = [
27     "out"
28     "man"
29   ];
31   strictDeps = true;
33   meta = {
34     homepage = "https://dev.lovelyhq.com/libburnia/web/wiki";
35     description = "Library by which preformatted data get onto optical media: CD, DVD, BD (Blu-Ray)";
36     changelog = "https://dev.lovelyhq.com/libburnia/libburn/src/tag/${finalAttrs.src.rev}/ChangeLog";
37     license = lib.licenses.gpl2Plus;
38     maintainers = with lib.maintainers; [
39       abbradar
40       AndersonTorres
41     ];
42     mainProgram = "cdrskin";
43     platforms = lib.platforms.unix;
44   };