From e07c093cea4fbe4fabebbd8c9d51b5bc7b2e3a6b 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 923a945becb7..2c319eca5557 100644 --- a/maintainers/maintainer-list.nix +++ b/maintainers/maintainer-list.nix @@ -30315,6 +30315,12 @@ github = "yarektyshchenko"; githubId = 185304; }; + yarn = { + name = "yarncat"; + github = "yaaaarn"; + githubId = 30006414; + email = "nix@yarncat.moe"; + }; yarny = { github = "Yarny0"; githubId = 41838844; From cad2211b674138cd22d9b21f539ec77834ab926d Mon Sep 17 00:00:00 2001 From: yaaaarn <30006414+yaaaarn@users.noreply.github.com> Date: Tue, 2 Jun 2026 00:49:31 +0200 Subject: [PATCH 2/2] kotofetch: init at 0.2.22 --- pkgs/by-name/ko/kotofetch/package.nix | 33 +++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 pkgs/by-name/ko/kotofetch/package.nix diff --git a/pkgs/by-name/ko/kotofetch/package.nix b/pkgs/by-name/ko/kotofetch/package.nix new file mode 100644 index 000000000000..e8a25ccea7b0 --- /dev/null +++ b/pkgs/by-name/ko/kotofetch/package.nix @@ -0,0 +1,33 @@ +{ + lib, + fetchFromGitHub, + rustPlatform, + versionCheckHook, +}: +rustPlatform.buildRustPackage (finalAttrs: { + pname = "kotofetch"; + version = "0.2.22"; + + __structuredAttrs = true; + + src = fetchFromGitHub { + owner = "hxpe-dev"; + repo = "kotofetch"; + tag = "v${finalAttrs.version}"; + hash = "sha256-aY8HRKSHLQKjl4b7v5q3SeNMc+GJPnE2XVrEsl+nGR0="; + }; + + cargoHash = "sha256-r36x/I/RaIWFEoDYXf3edpLeqGvEyozhT4EuCTSEe/k="; + + nativeInstallCheckInputs = [ versionCheckHook ]; + doInstallCheck = true; + + meta = { + description = "Minimalist fetch tool for Japanese quotes"; + mainProgram = "kotofetch"; + homepage = "https://github.com/hxpe-dev/kotofetch"; + license = lib.licenses.mit; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ yarn ]; + }; +})