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

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

27 lines
628 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";
2023-07-01 23:23:09 +00:00
version = "0.3.1";
src = fetchFromGitHub {
owner = "tbvdm";
repo = "sigtop";
2023-07-01 23:23:09 +00:00
rev = "v${version}";
sha256 = "sha256-U+S+VXRkedq2LkO9Fw/AfNS97GvFEfjD8dq/VMlBOv4=";
};
2023-07-01 23:23:09 +00:00
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;
2023-07-01 23:23:09 +00:00
platforms = platforms.darwin;
maintainers = with maintainers; [ fricklerhandwerk ];
};
}