Skip to content

Commit

Permalink
penguin-subtitle-player: init at 1.6.0 (#331312)
Browse files Browse the repository at this point in the history
  • Loading branch information
FliegendeWurst authored Dec 16, 2024
2 parents 98add0b + 0e88eab commit 3cf4242
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions pkgs/by-name/pe/penguin-subtitle-player/package.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
{
lib,
stdenv,
fetchFromGitHub,
qt5,
}:

stdenv.mkDerivation (finalAttrs: {
pname = "penguin-subtitle-player";
version = "1.6.0";

src = fetchFromGitHub {
owner = "carsonip";
repo = "Penguin-Subtitle-Player";
rev = "v${finalAttrs.version}";
hash = "sha256-AhdShg/eWqF44W1r+KmcHzbGKF2TNSD/wPKj+x4oQkM=";
fetchSubmodules = true;
};

nativeBuildInputs = [ qt5.wrapQtAppsHook ];

buildInputs = [ qt5.qmake ];

meta = {
description = "Open-source, cross-platform and standalone subtitle player";
homepage = "https://github.com/carsonip/Penguin-Subtitle-Player";
license = lib.licenses.gpl3Only;
maintainers = with lib.maintainers; [ eljamm ];
platforms = lib.platforms.all;
mainProgram = "PenguinSubtitlePlayer";
};
})

0 comments on commit 3cf4242

Please sign in to comment.