Reviewed-on: #17 Co-authored-by: Nikkuss <Scuggo@pm.me> Co-committed-by: Nikkuss <Scuggo@pm.me>
This commit was merged in pull request #17.
This commit is contained in:
@@ -60,6 +60,27 @@
|
||||
},
|
||||
"version": "v0.35.0"
|
||||
},
|
||||
"claude-sync": {
|
||||
"cargoLock": null,
|
||||
"date": null,
|
||||
"extract": null,
|
||||
"name": "claude-sync",
|
||||
"passthru": null,
|
||||
"pinned": false,
|
||||
"src": {
|
||||
"deepClone": false,
|
||||
"fetchSubmodules": false,
|
||||
"leaveDotGit": false,
|
||||
"name": null,
|
||||
"owner": "tawanorg",
|
||||
"repo": "claude-sync",
|
||||
"rev": "v1.9.0",
|
||||
"sha256": "sha256-5waB01wmSsFUkBB/PmT9yY5b1J/aapZJCnm5O21q+Q4=",
|
||||
"sparseCheckout": [],
|
||||
"type": "github"
|
||||
},
|
||||
"version": "v1.9.0"
|
||||
},
|
||||
"flightcore": {
|
||||
"cargoLock": null,
|
||||
"date": null,
|
||||
|
||||
@@ -45,6 +45,17 @@
|
||||
sha256 = "sha256-xb6D4J+EmbK5XCrZCyv1LWYdfmaNDcw7Hk4nHg76uAo=";
|
||||
};
|
||||
};
|
||||
claude-sync = {
|
||||
pname = "claude-sync";
|
||||
version = "v1.9.0";
|
||||
src = fetchFromGitHub {
|
||||
owner = "tawanorg";
|
||||
repo = "claude-sync";
|
||||
rev = "v1.9.0";
|
||||
fetchSubmodules = false;
|
||||
sha256 = "sha256-5waB01wmSsFUkBB/PmT9yY5b1J/aapZJCnm5O21q+Q4=";
|
||||
};
|
||||
};
|
||||
flightcore = {
|
||||
pname = "flightcore";
|
||||
version = "v3.2.0";
|
||||
|
||||
@@ -2,6 +2,10 @@
|
||||
src.github = "zed-industries/claude-code-acp"
|
||||
fetch.github = "zed-industries/claude-code-acp"
|
||||
|
||||
[claude-sync]
|
||||
src.github = "tawanorg/claude-sync"
|
||||
fetch.github = "tawanorg/claude-sync"
|
||||
|
||||
[flightcore]
|
||||
src.github = "R2NorthstarTools/FlightCore"
|
||||
fetch.github = "R2NorthstarTools/FlightCore"
|
||||
|
||||
@@ -0,0 +1,28 @@
|
||||
{
|
||||
lib,
|
||||
buildGoModule,
|
||||
callPackage,
|
||||
}:
|
||||
let
|
||||
sources = callPackage ../../../../_sources/generated.nix { };
|
||||
in
|
||||
buildGoModule (finalAttrs: {
|
||||
pname = "claude-sync";
|
||||
version = lib.removePrefix "v" sources.claude-sync.version;
|
||||
inherit (sources.claude-sync) src;
|
||||
|
||||
vendorHash = "sha256-cHWP5m191QP4XxeOtgHaLsyavXWikUwViDivBMGP34M=";
|
||||
|
||||
subPackages = [ "cmd/claude-sync" ];
|
||||
|
||||
ldflags = [
|
||||
"-s"
|
||||
"-w"
|
||||
"-X main.version=${finalAttrs.version}"
|
||||
];
|
||||
|
||||
meta = {
|
||||
mainProgram = "claude-sync";
|
||||
platforms = lib.platforms.unix;
|
||||
};
|
||||
})
|
||||
Reference in New Issue
Block a user