Skip to content

Commit 0b0d4f1

Browse files
committed
📦 (emacs.nix, nvfetcher.toml, _sources/) Add emacs plugin aider.el
1 parent f36ed22 commit 0b0d4f1

File tree

4 files changed

+52
-0
lines changed

4 files changed

+52
-0
lines changed

_sources/generated.json

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,25 @@
11
{
2+
"aider": {
3+
"cargoLocks": null,
4+
"date": "2025-03-22",
5+
"extract": null,
6+
"name": "aider",
7+
"passthru": null,
8+
"pinned": false,
9+
"src": {
10+
"deepClone": false,
11+
"fetchSubmodules": false,
12+
"leaveDotGit": false,
13+
"name": null,
14+
"owner": "tninja",
15+
"repo": "aider.el",
16+
"rev": "59dfd29f21105988d92f8a47b45f18c1249aa169",
17+
"sha256": "sha256-OKzr6pZP/bRljkh6mGXctIrrGg0kO57LVlOIx1idMDE=",
18+
"sparseCheckout": [],
19+
"type": "github"
20+
},
21+
"version": "59dfd29f21105988d92f8a47b45f18c1249aa169"
22+
},
223
"copilot": {
324
"cargoLocks": null,
425
"date": "2025-02-23",

_sources/generated.nix

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,18 @@
11
# This file was generated by nvfetcher, please do not modify it manually.
22
{ fetchgit, fetchurl, fetchFromGitHub, dockerTools }:
33
{
4+
aider = {
5+
pname = "aider";
6+
version = "59dfd29f21105988d92f8a47b45f18c1249aa169";
7+
src = fetchFromGitHub {
8+
owner = "tninja";
9+
repo = "aider.el";
10+
rev = "59dfd29f21105988d92f8a47b45f18c1249aa169";
11+
fetchSubmodules = false;
12+
sha256 = "sha256-OKzr6pZP/bRljkh6mGXctIrrGg0kO57LVlOIx1idMDE=";
13+
};
14+
date = "2025-03-22";
15+
};
416
copilot = {
517
pname = "copilot";
618
version = "7d105d708a23d16cdfd5240500be8bb02f95a46e";

emacs.nix

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,17 @@ let
1414
;
1515
};
1616

17+
aider = pkgs.emacsPackages.trivialBuild {
18+
pname = "aider";
19+
version = "main";
20+
src = sources.aider.src;
21+
buildInputs = with pkgs.emacsPackages; [
22+
transient
23+
magit
24+
markdown-mode
25+
];
26+
};
27+
1728
folding-mode = pkgs.emacsPackages.trivialBuild {
1829
pname = "folding-mode";
1930
version = "main";
@@ -319,6 +330,10 @@ in
319330
focus
320331
ox-typst
321332

333+
# Aider
334+
aidermacs
335+
aider
336+
322337
# Library
323338
alert
324339
dash

nvfetcher.toml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,3 +66,7 @@ fetch.github = "tanrax/scroll-page-without-moving-point.el"
6666
[emacs_fancy_logos]
6767
src.git = "https://github.com/egstatsml/emacs_fancy_logos"
6868
fetch.github = "egstatsml/emacs_fancy_logos"
69+
70+
[aider]
71+
src.git = "https://github.com/tninja/aider.el"
72+
fetch.github = "tninja/aider.el"

0 commit comments

Comments
 (0)