Merge pull request #167497 from fricklerhandwerk/sigtop

This commit is contained in:
Sandro 2023-07-05 14:33:47 +02:00 committed by GitHub
commit 8b1253715d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 34 additions and 0 deletions

View File

@ -5587,6 +5587,12 @@
githubId = 609279;
name = "Isaac Shapira";
};
fricklerhandwerk = {
email = "valentin@fricklerhandwerk.de";
github = "fricklerhandwerk";
githubId = 6599296;
name = "Valentin Gagarin";
};
fridh = {
email = "fridh@fridh.nl";
github = "FRidh";

View File

@ -0,0 +1,26 @@
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
name = "sigtop";
version = "0.3.1";
src = fetchFromGitHub {
owner = "tbvdm";
repo = "sigtop";
rev = "v${version}";
sha256 = "sha256-U+S+VXRkedq2LkO9Fw/AfNS97GvFEfjD8dq/VMlBOv4=";
};
vendorHash = "sha256-xrJ/KLM/f/HVPL4MJzRc1xDlO4e+Iu2lcPG4GnjFRBo=";
makeFlags = [
"PREFIX=\${out}"
];
meta = with lib; {
description = "Utility to export messages, attachments and other data from Signal Desktop";
license = licenses.isc;
platforms = platforms.darwin;
maintainers = with maintainers; [ fricklerhandwerk ];
};
}

View File

@ -12619,6 +12619,8 @@ with pkgs;
signumone-ks = callPackage ../applications/misc/signumone-ks { };
sigtop = callPackage ../tools/backup/sigtop { };
silc_client = callPackage ../applications/networking/instant-messengers/silc-client { };
silc_server = callPackage ../servers/silc-server { };