Skip to content

Commit 0345996

Browse files
committed
gologin: init at 4.0.2
1 parent f06c7c3 commit 0345996

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
{
2+
appimageTools,
3+
lib,
4+
fetchzip,
5+
}:
6+
let
7+
pname = "gologin";
8+
version = "4.0.2";
9+
10+
srcTar = fetchzip {
11+
url = "https://dl.gologin.com/gologin.tar";
12+
hash = "sha256-y6DpgW9+Zhoh3M3NB39xijEaqfZxUDQ8fWUmw61owDI=";
13+
};
14+
in
15+
appimageTools.wrapType2 {
16+
inherit pname version;
17+
18+
src = "${srcTar}/GoLogin-${version}";
19+
20+
meta = {
21+
description = "Anti-detect browser for managing multiple accounts on a single device.";
22+
homepage = "https://gologin.com/";
23+
mainProgram = pname;
24+
license = lib.licenses.unfree;
25+
maintainers = with lib.maintainers; [ felipe-9 ];
26+
platforms = lib.platforms.linux;
27+
};
28+
}

0 commit comments

Comments
 (0)