nixos-configs/packages/subscleaner/default.nix
matt1432 f12e7f2513
All checks were successful
Discord / discord commits (push) Has been skipped
refactor(packages): clarify inputs and cleanup meta
2025-02-11 13:05:14 -05:00

24 lines
639 B
Nix

{
lib,
pkgs,
poetry2nix,
subscleaner-src,
...
}: let
inherit (poetry2nix.lib.mkPoetry2Nix {inherit pkgs;}) mkPoetryApplication;
in
mkPoetryApplication {
projectDir = subscleaner-src;
preferWheels = true;
meta = {
mainProgram = "subscleaner";
license = lib.licenses.gpl3Only;
homepage = "https://gitlab.com/rogs/subscleaner";
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.
'';
};
}