From d7978171bafda407dc1cd8604e96667a45786fff Mon Sep 17 00:00:00 2001 From: salivala Date: Thu, 5 Feb 2026 09:50:41 -0500 Subject: [PATCH 1/2] maintainers: add argos_nothing --- maintainers/maintainer-list.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix index 58100f94b444..62a518bfab0c 100644 --- a/maintainers/maintainer-list.nix +++ b/maintainers/maintainer-list.nix @@ -2157,6 +2157,12 @@ githubId = 58516559; name = "Alexander Rezvov"; }; + argos_nothing = { + email = "argosnothing@gmail.com"; + github = "argosnothing"; + githubId = 225423001; + name = "Argos Nothing"; + }; argrat = { email = "n.bertazzo@protonmail.com"; github = "brtz-cs"; From 57201334cbd89e3b064c94f32e27935679c0143e Mon Sep 17 00:00:00 2001 From: salivala Date: Thu, 5 Feb 2026 18:40:52 -0500 Subject: [PATCH 2/2] noogle-search: init at 0.2.0 hash correction Update pkgs/by-name/no/noogle-search/package.nix Co-authored-by: Hythera <87016780+Hythera@users.noreply.github.com> Update pkgs/by-name/no/noogle-search/package.nix Co-authored-by: Hythera <87016780+Hythera@users.noreply.github.com> added update-script tweak to passthru position --- pkgs/by-name/no/noogle-search/package.nix | 55 +++++++++++++++++++++++ 1 file changed, 55 insertions(+) create mode 100644 pkgs/by-name/no/noogle-search/package.nix diff --git a/pkgs/by-name/no/noogle-search/package.nix b/pkgs/by-name/no/noogle-search/package.nix new file mode 100644 index 000000000000..05191a1ed5ef --- /dev/null +++ b/pkgs/by-name/no/noogle-search/package.nix @@ -0,0 +1,55 @@ +{ + lib, + rustPlatform, + fetchFromGitHub, + pkg-config, + openssl, + makeWrapper, + bat, + fzf, + xdg-utils, + nix-update-script, +}: +rustPlatform.buildRustPackage (finalAttrs: { + pname = "noogle-search"; + version = "0.2.0"; + + src = fetchFromGitHub { + owner = "argosnothing"; + repo = "noogle-search"; + tag = "v${finalAttrs.version}"; + hash = "sha256-js3jBZsyukleQW2BwggfYUvKCdS8pBTjD6ysWyMUtpI="; + }; + + cargoHash = "sha256-axqFE5ZEiVP8PzFTtW5mbyyYcR4q9g3LX/0i6y+cgy8="; + + nativeBuildInputs = [ + makeWrapper + pkg-config + ]; + + buildInputs = [ + openssl + ]; + + postInstall = '' + wrapProgram $out/bin/noogle-search \ + --prefix PATH : ${ + lib.makeBinPath [ + bat + fzf + xdg-utils + ] + } + ''; + + passthru.updateScript = nix-update-script { }; + + meta = { + description = "Search Noogle functions with fzf"; + homepage = "https://github.com/argosnothing/noogle-search"; + license = lib.licenses.gpl3Plus; + mainProgram = "noogle-search"; + maintainers = with lib.maintainers; [ argos_nothing ]; + }; +})