wow
Some checks failed
CI / list-packages (push) Has been cancelled
CI / check (push) Has been cancelled

This commit is contained in:
암냥 2026-05-25 15:01:16 +09:00
commit 4d92af12fb
No known key found for this signature in database
3 changed files with 0 additions and 64 deletions

View file

@ -1,27 +0,0 @@
{
lib,
buildGoModule,
fetchFromGitHub,
}:
buildGoModule rec {
pname = "helium-sync";
version = "0.4.0";
src = fetchFromGitHub {
owner = "imnyang";
repo = "helium-sync";
rev = "v${version}";
hash = "sha256-ARd2S9c5iFVvSwFTyZjEB2w1l54vvYBXKZTESWpCqvw=";
};
vendorHash = "sha256-sWi8QV1uMjfgRMATjXb/qCp6IvBQojtLI3Gr2BHS9Hs=";
subPackages = [ "cmd/helium-sync" ];
meta = {
description = "Synchronize selected Helium browser profile data across devices using Amazon S3";
homepage = "https://github.com/imnyang/helium-sync";
license = lib.licenses.mit;
mainProgram = "helium-sync";
};
}