nixpkgs/pkgs/by-name/li/libburn/package.nix
Alexis Hildebrandt 755b915a15 treewide: Remove indefinite article from meta.description
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \
  | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
2024-06-09 23:07:45 +02:00

38 lines
936 B
Nix

{ 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;
};
})