This commit is contained in:
Miguel Palhas
2026-02-13 16:57:22 +00:00
parent d673653afb
commit e38135a054
3 changed files with 4 additions and 55 deletions
+4 -5
View File
@@ -6,7 +6,6 @@
}: }:
{ {
imports = [ imports = [
./entire.nix
./ralph-claude-code.nix ./ralph-claude-code.nix
]; ];
@@ -17,10 +16,10 @@
nix-direnv.enable = true; nix-direnv.enable = true;
# Add devenv support # Add devenv support
stdlib = '' # stdlib = ''
# Source devenv direnvrc for use_devenv function # # Source devenv direnvrc for use_devenv function
eval "$(devenv direnvrc)" # eval "$(devenv direnvrc)"
''; # '';
}; };
}; };
-10
View File
@@ -1,10 +0,0 @@
{
pkgs,
...
}:
let
entire = pkgs.callPackage ../../../pkgs/entire/package.nix { };
in
{
home.packages = [ entire ];
}
-40
View File
@@ -1,40 +0,0 @@
{
lib,
buildGoModule,
fetchFromGitHub,
}:
buildGoModule rec {
pname = "entire";
version = "unstable-2026-02-11";
src = fetchFromGitHub {
owner = "entireio";
repo = "cli";
rev = "4f09f97c2a2d90f5fa28609ff98dbd9ccb988794";
hash = "sha256-b3XjU4f/W0OicWlyvCua5LH8IBBRNs9fggFdwBh1rFY=";
};
vendorHash = "sha256-bzSJfN77v2huchYZwD8ftBRffVLP4OiZqO++KXj3onI=";
subPackages = [ "cmd/entire" ];
# Relax Go version requirement since 1.25.5 is compatible with 1.25.6
postPatch = ''
substituteInPlace go.mod \
--replace-fail "go 1.25.6" "go 1.25.5"
'';
ldflags = [
"-s"
"-w"
];
meta = {
description = "Developer platform that integrates with git workflow to capture AI agent sessions";
homepage = "https://github.com/entireio/cli";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ ];
mainProgram = "entire";
};
}