feat: spectre

Signed-off-by: jolheiser <git@jolheiser.com>
main
jolheiser 2024-09-25 10:48:40 -05:00
parent 91559661b9
commit 3ee3c1f0f2
No known key found for this signature in database
3 changed files with 27 additions and 0 deletions

View File

@ -62,6 +62,7 @@
jolheiser.tmpl jolheiser.tmpl
jolheiser.gomodinit jolheiser.gomodinit
jolheiser.cfg jolheiser.cfg
jolheiser.spectre
]; ];
activation.report-changes = config.lib.dag.entryAnywhere '' activation.report-changes = config.lib.dag.entryAnywhere ''
${pkgs.nvd}/bin/nvd --nix-bin-dir=${pkgs.nix}/bin diff $oldGenPath $newGenPath ${pkgs.nvd}/bin/nvd --nix-bin-dir=${pkgs.nix}/bin diff $oldGenPath $newGenPath

View File

@ -668,6 +668,7 @@
"nixpkgs": "nixpkgs_2", "nixpkgs": "nixpkgs_2",
"nur": "nur", "nur": "nur",
"resume": "resume", "resume": "resume",
"spectre": "spectre",
"tclip": "tclip", "tclip": "tclip",
"templ": "templ", "templ": "templ",
"tmpl": "tmpl", "tmpl": "tmpl",
@ -676,6 +677,26 @@
"website": "website" "website": "website"
} }
}, },
"spectre": {
"inputs": {
"nixpkgs": [
"nixpkgs"
]
},
"locked": {
"lastModified": 1727210642,
"narHash": "sha256-UI6zfBKJQH8zEp0xNjNH0udP+qPzOMrlARryDHvw6PE=",
"ref": "refs/heads/main",
"rev": "4ecbdcf5a4a6e38621fdab234c61a9947d5a51c0",
"revCount": 19,
"type": "git",
"url": "https://git.jolheiser.com/go-spectre.git"
},
"original": {
"type": "git",
"url": "https://git.jolheiser.com/go-spectre.git"
}
},
"systems": { "systems": {
"locked": { "locked": {
"lastModified": 1681028828, "lastModified": 1681028828,

View File

@ -80,6 +80,10 @@
url = "git+https://git.jolheiser.com/git-pr-nix.git"; url = "git+https://git.jolheiser.com/git-pr-nix.git";
inputs.nixpkgs.follows = "nixpkgs"; inputs.nixpkgs.follows = "nixpkgs";
}; };
spectre = {
url = "git+https://git.jolheiser.com/go-spectre.git";
inputs.nixpkgs.follows = "nixpkgs";
};
# Other flakes # Other flakes
golink = { golink = {
url = "github:tailscale/golink"; url = "github:tailscale/golink";
@ -137,6 +141,7 @@
cfg = inputs.cfg.packages.${prev.system}.default; cfg = inputs.cfg.packages.${prev.system}.default;
blog = inputs.blog.packages.${prev.system}.default; blog = inputs.blog.packages.${prev.system}.default;
bennet = inputs.bennet.packages.${prev.system}.default; bennet = inputs.bennet.packages.${prev.system}.default;
spectre = inputs.spectre.packages.${prev.system}.default;
}; };
tclip = inputs.tclip.packages.${prev.system}.tclip; tclip = inputs.tclip.packages.${prev.system}.tclip;
templ = inputs.templ.packages.${prev.system}.templ; templ = inputs.templ.packages.${prev.system}.templ;