Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / by-name / li / libburn / package.nix
blob701a511dc9076a9f4d61348880b87a7c851354f9
1 { lib
2 , stdenv
3 , fetchFromGitea
4 , autoreconfHook
5 , pkg-config
6 }:
8 stdenv.mkDerivation (finalAttrs: {
9   pname = "libburn";
10   version = "1.5.6";
12   src = fetchFromGitea {
13     domain = "dev.lovelyhq.com";
14     owner = "libburnia";
15     repo = "libburn";
16     rev = "release-${finalAttrs.version}";
17     hash = "sha256-Xo45X4374FXvlrJ4Q0PahYvuWXO0k3N0ke0mbURYt54=";
18   };
20   nativeBuildInputs = [
21     autoreconfHook
22     pkg-config
23   ];
25   outputs = [ "out" "man" ];
27   strictDeps = true;
29   meta = {
30     homepage = "https://dev.lovelyhq.com/libburnia/web/wiki";
31     description = "A library by which preformatted data get onto optical media: CD, DVD, BD (Blu-Ray)";
32     changelog = "https://dev.lovelyhq.com/libburnia/libburn/src/tag/${finalAttrs.src.rev}/ChangeLog";
33     license = lib.licenses.gpl2Plus;
34     maintainers = with lib.maintainers; [ abbradar AndersonTorres ];
35     mainProgram = "cdrskin";
36     platforms = lib.platforms.unix;
37   };