blob: 1c412a51a033cd68d8d4892af31a66f67ae8c904 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
{
lib,
stdenv,
fetchFromGitHub,
fetchYarnDeps,
yarnConfigHook,
yarnBuildHook,
yarnInstallHook,
nodejs,
makeWrapper,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "happy-coder";
version = "0.11.2";
src = fetchFromGitHub {
owner = "slopus";
repo = "happy-cli";
tag = "v${finalAttrs.version}";
hash = "sha256-WKzbpxHqE3Dxqy/PDj51tM9+Wl2Pallfrc5UU2MxNn8=";
};
yarnOfflineCache = fetchYarnDeps {
yarnLock = finalAttrs.src + "/yarn.lock";
hash = "sha256-3/qcbCJ+Iwc+9zPCHKsCv05QZHPUp0it+QR3z7m+ssw=";
};
nativeBuildInputs = [
nodejs
yarnConfigHook
yarnBuildHook
yarnInstallHook
makeWrapper
];
# Currently `happy` requires `node` to start its daemon
postInstall = ''
wrapProgram $out/bin/happy \
--prefix PATH : ${
lib.makeBinPath [
nodejs
]
}
wrapProgram $out/bin/happy-mcp \
--prefix PATH : ${
lib.makeBinPath [
nodejs
]
}
'';
meta = {
description = "Mobile and web client wrapper for Claude Code and Codex with end-to-end encryption";
homepage = "https://github.com/slopus/happy-cli";
changelog = "https://github.com/slopus/happy-cli/releases/tag/v${finalAttrs.version}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ onsails ];
mainProgram = "happy";
};
})
|