All checks were successful
CI / list-packages (push) Successful in 2s
CI / build (helium) (push) Successful in 4s
CI / build (helium-sync) (push) Successful in 38s
CI / build (pjsk-cursor) (push) Successful in 3s
CI / build (waterfox-bin) (push) Successful in 4s
CI / build (xcursor-mizuki) (push) Successful in 3s
27 lines
639 B
Nix
27 lines
639 B
Nix
{
|
|
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";
|
|
};
|
|
}
|