From 1cb19ef4c8255bc87010a2a2cdd8a02117c84df5 Mon Sep 17 00:00:00 2001 From: yaaaarn <30006414+yaaaarn@users.noreply.github.com> Date: Mon, 25 May 2026 14:00:13 +0200 Subject: [PATCH 1/2] maintainers: add yarn --- maintainers/maintainer-list.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix index 5e0214a6f96e..a0bf7ba71b2b 100644 --- a/maintainers/maintainer-list.nix +++ b/maintainers/maintainer-list.nix @@ -30263,6 +30263,12 @@ github = "yarektyshchenko"; githubId = 185304; }; + yarn = { + name = "yarncat"; + github = "yaaaarn"; + githubId = 30006414; + email = "nix@yarncat.moe"; + }; yarny = { github = "Yarny0"; githubId = 41838844; From ff928226bc70c0425a52a54be8a4d9fcb5e9583d Mon Sep 17 00:00:00 2001 From: yaaaarn <30006414+yaaaarn@users.noreply.github.com> Date: Sat, 30 May 2026 17:27:19 +0200 Subject: [PATCH 2/2] lyricspot: init at 2.0.0 --- pkgs/by-name/ly/lyricspot/package.nix | 48 +++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 pkgs/by-name/ly/lyricspot/package.nix diff --git a/pkgs/by-name/ly/lyricspot/package.nix b/pkgs/by-name/ly/lyricspot/package.nix new file mode 100644 index 000000000000..6a7eaef1388e --- /dev/null +++ b/pkgs/by-name/ly/lyricspot/package.nix @@ -0,0 +1,48 @@ +{ + lib, + fetchFromGitHub, + stdenvNoCC, + makeWrapper, + python3, + playerctl, +}: +stdenvNoCC.mkDerivation (finalAttrs: { + pname = "lyricspot"; + version = "2.0.0"; + + src = fetchFromGitHub { + owner = "vlensys"; + repo = "lyricspot"; + tag = "v${finalAttrs.version}"; + hash = "sha256-qDXTcTlpMWW7vAQuOFBEnM26DvIdy/fvkGTL/TdDa2A="; + }; + + strictDeps = true; + __structuredAttrs = true; + + nativeBuildInputs = [ makeWrapper ]; + + installPhase = '' + mkdir -p $out/bin + cp lyricspot.py $out/bin/lyricspot + chmod +x $out/bin/lyricspot + wrapProgram $out/bin/lyricspot \ + --prefix PATH ":" ${ + lib.makeBinPath [ + python3 + playerctl + ] + } + ''; + + meta = { + homepage = "https://github.com/vlensys/lyricspot"; + description = "Good old live synced lyrics in your terminal"; + license = lib.licenses.gpl3Only; + mainProgram = "lyricspot"; + maintainers = with lib.maintainers; [ + yarn + ]; + platforms = lib.platforms.unix; + }; +})