Skip to content

Commit

Permalink
firefox-sync-client: init at 1.8.0 (#359637)
Browse files Browse the repository at this point in the history
  • Loading branch information
fpletz authored Nov 29, 2024
2 parents a403221 + 1fdd6df commit e3ac562
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions pkgs/by-name/fi/firefox-sync-client/package.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
{
lib,
buildGoModule,
fetchFromGitHub,
}:

buildGoModule rec {
pname = "firefox-sync-client";
version = "1.8.0";

src = fetchFromGitHub {
owner = "Mikescher";
repo = "firefox-sync-client";
rev = "v${version}";
hash = "sha256-Ax+v4a8bVuym1bp9dliXX85PXJk2Qlik3ME+adGiL1s=";
};

vendorHash = "sha256-MYetPdnnvIBzrYrA+eM9z1P3+P5FumYKH+brvvlwkm4=";

meta = {
description = "Commandline-utility to list/view/edit/delete entries in a firefox-sync account.";
homepage = "https://github.com/Mikescher/firefox-sync-client";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ ambroisie ];
mainProgram = "ffsclient";
};
}

0 comments on commit e3ac562

Please sign in to comment.