Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

vlc: 3.0.20 -> 3.0.21, add maintainer #319262

Merged
merged 2 commits into from
Jun 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions maintainers/maintainer-list.nix
Original file line number Diff line number Diff line change
Expand Up @@ -1038,6 +1038,16 @@
githubId = 60479013;
name = "Alma Cemerlic";
};
alois31 = {
name = "Alois Wohlschlager";
email = "alois1@gmx-topmail.de";
matrix = "@aloisw:kde.org";
github = "alois31";
githubId = 36605164;
keys = [{
fingerprint = "CA97 A822 FF24 25D4 74AF 3E4B E0F5 9EA5 E521 6914";
}];
};
Alper-Celik = {
email = "alper@alper-celik.dev";
name = "Alper Çelik";
Expand Down
6 changes: 3 additions & 3 deletions pkgs/by-name/vl/vlc/package.nix
Original file line number Diff line number Diff line change
Expand Up @@ -98,11 +98,11 @@ let
in
stdenv.mkDerivation (finalAttrs: {
pname = "${optionalString onlyLibVLC "lib"}vlc";
version = "3.0.20";
version = "3.0.21";

src = fetchurl {
url = "https://get.videolan.org/vlc/${finalAttrs.version}/vlc-${finalAttrs.version}.tar.xz";
hash = "sha256-rccoW00nIc3fQOtScMraKqoQozTLVG/VWgY1NEe6KbU=";
hash = "sha256-JNu+HX367qCZTV3vC73iABdzRxNtv+Vz9bakzuJa+7A=";
};

nativeBuildInputs = [
Expand Down Expand Up @@ -293,7 +293,7 @@ stdenv.mkDerivation (finalAttrs: {
description = "Cross-platform media player and streaming server";
homepage = "https://www.videolan.org/vlc/";
license = lib.licenses.lgpl21Plus;
maintainers = with lib.maintainers; [ AndersonTorres ];
maintainers = with lib.maintainers; [ AndersonTorres alois31 ];
platforms = lib.platforms.linux;
};
})