2023-07-15 17:15:38 +00:00
|
|
|
{ lib, buildGoModule, fetchFromGitHub }:
|
|
|
|
|
|
|
|
buildGoModule rec {
|
|
|
|
name = "sigtop";
|
2024-07-31 10:19:44 +00:00
|
|
|
version = "0.12.0";
|
2023-07-15 17:15:38 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "tbvdm";
|
|
|
|
repo = "sigtop";
|
|
|
|
rev = "v${version}";
|
2024-07-31 10:19:44 +00:00
|
|
|
sha256 = "sha256-qNcfnXQmccEnUFtaR3y79yFRZ5xHeOUQ6hEY9LZxm7w=";
|
2023-07-15 17:15:38 +00:00
|
|
|
};
|
|
|
|
|
2024-05-15 15:35:15 +00:00
|
|
|
vendorHash = "sha256-IFF7zTrHHoEmPoHGOkTHrb7o+9D5PC8Q+MWHSR2EXog=";
|
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";
|
2024-04-21 15:54:59 +00:00
|
|
|
mainProgram = "sigtop";
|
2023-07-15 17:15:38 +00:00
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
}
|