2023-07-15 17:15:38 +00:00
|
|
|
{ lib, buildGoModule, fetchFromGitHub }:
|
|
|
|
|
|
|
|
buildGoModule rec {
|
|
|
|
name = "sigtop";
|
2024-02-07 01:22:34 +00:00
|
|
|
version = "0.8.0";
|
2023-07-15 17:15:38 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "tbvdm";
|
|
|
|
repo = "sigtop";
|
|
|
|
rev = "v${version}";
|
2024-02-07 01:22:34 +00:00
|
|
|
sha256 = "sha256-vFs6/b2ypwMXDgmkZDgfKPqW0GRh9A2t4QQvkUdhYQw=";
|
2023-07-15 17:15:38 +00:00
|
|
|
};
|
|
|
|
|
2024-02-07 01:22:34 +00:00
|
|
|
vendorHash = "sha256-H43XOupVicLpYfkWNjArpSxQWcFqh9h2Zb6zGZ5xtfs=";
|
2023-07-15 17:15:38 +00:00
|
|
|
|
|
|
|
makeFlags = [
|
|
|
|
"PREFIX=\${out}"
|
|
|
|
];
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Utility to export messages, attachments and other data from Signal Desktop";
|
|
|
|
license = licenses.isc;
|
2023-11-16 04:20:00 +00:00
|
|
|
platforms = platforms.all;
|
2023-07-15 17:15:38 +00:00
|
|
|
maintainers = with maintainers; [ fricklerhandwerk ];
|
|
|
|
};
|
|
|
|
}
|