mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-03 19:43:30 +00:00
firefox-sync-client: init at 1.8.0
This commit is contained in:
parent
722661d33b
commit
1fdd6dfe48
27
pkgs/by-name/fi/firefox-sync-client/package.nix
Normal file
27
pkgs/by-name/fi/firefox-sync-client/package.nix
Normal file
@ -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";
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user