wow
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
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
This commit is contained in:
parent
a628712cd9
commit
5f79789078
3 changed files with 146 additions and 1 deletions
27
pkgs/helium-sync/default.nix
Normal file
27
pkgs/helium-sync/default.nix
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
{
|
||||
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";
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue