nixpkgs/pkgs/tools/backup/sigtop/default.nix
Valentin Gagarin 7d184531ad reorder inputs
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
2023-07-02 01:05:59 +02:00

29 lines
676 B
Nix

{ stdenv, lib, fetchFromGitHub, openssl, pkg-config }:
stdenv.mkDerivation {
name = "sigtop";
version = "unstable-2022-05-27";
src = fetchFromGitHub {
owner = "tbvdm";
repo = "sigtop";
# `portable` branch
rev = "945c5844d25e2b130809334cbc8f3fa1cd85aaf9";
sha256 = "1gmxyjx7kbr2n33aq84ipa2pfhrdw7v7ggz01qd54nqyvp8hdbzs";
};
nativeBuildInputs = [ pkg-config ];
buildInputs = [ openssl ];
makeFlags = [
"PREFIX=\${out}"
];
meta = with lib; {
description = "Utility to export messages, attachments and other data from Signal Desktop";
license = licenses.isc;
maintainers = with maintainers; [ fricklerhandwerk ];
};
}