-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathflake.nix
More file actions
60 lines (53 loc) · 1.3 KB
/
flake.nix
File metadata and controls
60 lines (53 loc) · 1.3 KB
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
{
description = "ccmon - Claude Code & OpenCode Monitor";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
flake-utils.url = "github:numtide/flake-utils";
};
outputs =
{
self,
nixpkgs,
flake-utils,
}:
flake-utils.lib.eachDefaultSystem (
system:
let
pkgs = nixpkgs.legacyPackages.${system};
ccmon = pkgs.buildNpmPackage {
name = "ccmon";
src = ./.;
npmDepsHash = "sha256-HRd4ArTKST3/tvttF/bFwn6rTwRfuFM95+tf7OX63AA=";
makeWrapperArgs = [
"--set"
"NODE_NO_WARNINGS"
"1"
];
};
opencodePlugin = pkgs.runCommand "ccmon-opencode-plugin" { } ''
mkdir -p $out
cp ${./resources/opencode-plugin/ccmon.ts} $out/ccmon.ts
'';
in
{
packages = {
inherit ccmon;
default = ccmon;
opencode-plugin = opencodePlugin;
};
apps = {
default = {
type = "app";
program = "${ccmon}/bin/ccmon";
};
ccmon = {
type = "app";
program = "${ccmon}/bin/ccmon";
};
};
devShells.default = pkgs.mkShell {
buildInputs = [ pkgs.nodejs_22 ];
};
}
);
}