nixpkgs/pkgs/tools/backup/sigtop/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
654 B
Nix
Raw Normal View History

2023-07-01 23:23:09 +00:00
{ lib, buildGoModule, fetchFromGitHub }:
2023-07-01 23:23:09 +00:00
buildGoModule rec {
name = "sigtop";
2024-02-16 22:50:23 +00:00
version = "0.10.0";
src = fetchFromGitHub {
owner = "tbvdm";
repo = "sigtop";
2023-07-01 23:23:09 +00:00
rev = "v${version}";
2024-02-16 22:50:23 +00:00
sha256 = "sha256-I1gZpzs7GtoS+EQIHXTc9laHMO68uNnIm7eVja3b8BE=";
};
2024-02-16 22:50:23 +00:00
vendorHash = "sha256-9IhUGbcDeStFfQV+VEvPCwJUEvrsoiHdWxO0UHxQzqc=";
makeFlags = [
"PREFIX=\${out}"
];
meta = with lib; {
description = "Utility to export messages, attachments and other data from Signal Desktop";
mainProgram = "sigtop";
license = licenses.isc;
platforms = platforms.all;
maintainers = with maintainers; [ fricklerhandwerk ];
};
}