mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-03 04:13:01 +00:00
7d184531ad
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
29 lines
676 B
Nix
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 ];
|
|
};
|
|
}
|