commit 5c4d02c196c7de4fd0353180df2c210d0385dcf3
parent cfa3be528d24bf8b2d2a9d94c2ba9507d169a355
Author: Nikolay Korotkiy <sikmir@disroot.org>
Date: Fri, 17 Jul 2026 18:18:13 +0400
Drop ralphex
Diffstat:
1 file changed, 0 insertions(+), 49 deletions(-)
diff --git a/pkgs/by-name/ra/ralphex/package.nix b/pkgs/by-name/ra/ralphex/package.nix
@@ -1,49 +0,0 @@
-{
- lib,
- buildGoModule,
- fetchFromGitHub,
- git,
- installShellFiles,
- writableTmpDirAsHomeHook,
-}:
-
-buildGoModule (finalAttrs: {
- pname = "ralphex";
- version = "1.2.0";
-
- __structuredAttrs = true;
-
- src = fetchFromGitHub {
- owner = "umputun";
- repo = "ralphex";
- tag = "v${finalAttrs.version}";
- hash = "sha256-bL1RFGL7+ceDgDOgKw1pBZGKjtj1WrtxAoFRuByuUS4=";
- };
-
- vendorHash = null;
-
- ldflags = [
- "-s"
- "-w"
- "-X main.revision=${finalAttrs.version}"
- ];
-
- nativeBuildInputs = [ installShellFiles ];
-
- nativeCheckInputs = [
- git
- writableTmpDirAsHomeHook
- ];
-
- postInstall = ''
- installShellCompletion completions/*
- '';
-
- meta = {
- description = "Extended Ralph loop for autonomous AI-driven plan execution";
- homepage = "https://ralphex.com/";
- license = lib.licenses.mit;
- mainProgram = "ralphex";
- maintainers = [ lib.maintainers.sikmir ];
- };
-})