Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
37 lines
758 B
Nix
37 lines
758 B
Nix
{
|
|
lib,
|
|
buildGoModule,
|
|
fetchFromGitHub,
|
|
pkg-config,
|
|
libsecret,
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
name = "sigtop";
|
|
version = "0.22.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "tbvdm";
|
|
repo = "sigtop";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-EvdO7fGnNdu1/f61c4k2dpeMUqKaq9xKGgevAQ+f3q0=";
|
|
};
|
|
|
|
vendorHash = "sha256-EAMnuDm3Lmw2i4sumgCTE58JCtMq9QeT6pjtmC/PKMA=";
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
buildInputs = [ libsecret ];
|
|
|
|
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 ];
|
|
};
|
|
}
|