All checks were successful
CI / list-packages (push) Successful in 4s
CI / build (helium) (push) Successful in 4s
CI / build (helium-sync) (push) Successful in 44s
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.3.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "imnyang";
|
|
repo = "helium-sync";
|
|
rev = "v${version}";
|
|
hash = "sha256-Iml9UjCRN2o7cR+IJR72ujQ8sCW8xjzwhHal3NqpuVo=";
|
|
};
|
|
|
|
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";
|
|
};
|
|
}
|