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
46 lines
1.0 KiB
Nix
46 lines
1.0 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
buildGoModule,
|
|
fetchFromGitHub,
|
|
installShellFiles,
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "Subtitlr";
|
|
version = "0.2.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "yoanbernabeu";
|
|
repo = "Subtitlr";
|
|
rev = version;
|
|
hash = "sha256-PbeQzNkFj4eSg/zhk8bXij36DvJ9+g22kF5TqdX5O04=";
|
|
};
|
|
|
|
vendorHash = "sha256-ZgJCk9vbbQ0dcYSdKm0Cbw2AmwjpMvGb5zJkgbD+xig=";
|
|
|
|
ldflags = [
|
|
"-s"
|
|
"-w"
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
installShellFiles
|
|
];
|
|
|
|
postInstall = lib.optionalString (stdenv.buildPlatform.canExecute stdenv.hostPlatform) ''
|
|
installShellCompletion --cmd Subtitlr \
|
|
--bash <($out/bin/Subtitlr completion bash) \
|
|
--fish <($out/bin/Subtitlr completion fish) \
|
|
--zsh <($out/bin/Subtitlr completion zsh)
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "This application, a subtitle generator for YouTube, utilizes OpenAI's Whisper API";
|
|
homepage = "https://github.com/yoanbernabeu/Subtitlr/";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ qjoly ];
|
|
mainProgram = "Subtitlr";
|
|
};
|
|
}
|