26 lines
626 B
Nix
26 lines
626 B
Nix
{ lib, buildGoModule, fetchFromGitHub }:
|
|
|
|
buildGoModule rec {
|
|
name = "sigtop";
|
|
version = "0.10.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "tbvdm";
|
|
repo = "sigtop";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-I1gZpzs7GtoS+EQIHXTc9laHMO68uNnIm7eVja3b8BE=";
|
|
};
|
|
|
|
vendorHash = "sha256-9IhUGbcDeStFfQV+VEvPCwJUEvrsoiHdWxO0UHxQzqc=";
|
|
|
|
makeFlags = [
|
|
"PREFIX=\${out}"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Utility to export messages, attachments and other data from Signal Desktop";
|
|
license = licenses.isc;
|
|
platforms = platforms.all;
|
|
maintainers = with maintainers; [ fricklerhandwerk ];
|
|
};
|
|
}
|