2025-01-28 00:08:00 -05:00
|
|
|
{
|
2025-01-28 03:43:52 -05:00
|
|
|
lib,
|
2025-01-28 00:08:00 -05:00
|
|
|
pkgs,
|
|
|
|
poetry2nix,
|
|
|
|
subscleaner-src,
|
|
|
|
...
|
|
|
|
}: let
|
|
|
|
inherit (poetry2nix.lib.mkPoetry2Nix {inherit pkgs;}) mkPoetryApplication;
|
|
|
|
in
|
|
|
|
mkPoetryApplication {
|
|
|
|
projectDir = subscleaner-src;
|
|
|
|
preferWheels = true;
|
2025-01-28 03:43:52 -05:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Subscleaner is a Python script that removes advertisements from subtitle files. It's designed to help you enjoy your favorite shows and movies without the distraction of unwanted ads in the subtitles.";
|
|
|
|
mainProgram = "subscleaner";
|
|
|
|
homepage = "https://gitlab.com/rogs/subscleaner";
|
|
|
|
license = lib.licenses.gpl3Only;
|
|
|
|
};
|
2025-01-28 00:08:00 -05:00
|
|
|
}
|