File tree Expand file tree Collapse file tree 2 files changed +26
-0
lines changed
Expand file tree Collapse file tree 2 files changed +26
-0
lines changed Original file line number Diff line number Diff line change 1616
1717 cursor-agent = pkgs . callPackage ./pkgs/cursor-agent { } ;
1818 code-cursor = pkgs . callPackage ./pkgs/code-cursor { } ;
19+ commiter = pkgs . callPackage ./pkgs/commiter { } ;
1920}
Original file line number Diff line number Diff line change 1+ {
2+ lib ,
3+ buildGoModule ,
4+ fetchFromGitHub ,
5+ } :
6+
7+ buildGoModule rec {
8+ pname = "commiter" ;
9+ version = "0.1.0" ;
10+
11+ src = fetchFromGitHub {
12+ owner = "lmdevv" ;
13+ repo = "commiter" ;
14+ rev = "3c8d238c96a982e82e0fb31fcb7565ed1b7ff29a" ;
15+ sha256 = "19dbs0x03is1z36gjgqh4c8a0445pqr6rf8a4fjw6hy1ci1lyjq1" ;
16+ } ;
17+
18+ vendorHash = null ;
19+
20+ meta = with lib ; {
21+ description = "CLI tool for generating AI-powered commit messages" ;
22+ license = licenses . mit ;
23+ maintainers = [ "lmdev" ] ;
24+ } ;
25+ }
You can’t perform that action at this time.
0 commit comments