Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
33 lines
782 B
Nix
33 lines
782 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
qt5,
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "penguin-subtitle-player";
|
|
version = "1.6.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "carsonip";
|
|
repo = "Penguin-Subtitle-Player";
|
|
tag = "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";
|
|
};
|
|
})
|