mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
ff1a94e523
The nixpkgs-unstable channel's programs.sqlite was used to identify packages producing exactly one binary, and these automatically added to their package definitions wherever possible.
45 lines
1.1 KiB
Nix
45 lines
1.1 KiB
Nix
{ lib, stdenv, fetchFromGitHub, cmake, gperf
|
|
, file, ncurses, openssl, readline, sqlite, zlib
|
|
, AppKit, Cocoa, Foundation
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "nchat";
|
|
version = "3.67";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "d99kris";
|
|
repo = "nchat";
|
|
rev = "v${version}";
|
|
hash = "sha256-PhvZejtSoDptzoMP5uIe6T0Ws/bQQXVuYH9uoZo3JsI=";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace lib/tgchat/ext/td/CMakeLists.txt \
|
|
--replace "get_git_head_revision" "#get_git_head_revision"
|
|
'';
|
|
|
|
nativeBuildInputs = [ cmake gperf ];
|
|
|
|
buildInputs = [
|
|
file # for libmagic
|
|
ncurses
|
|
openssl
|
|
readline
|
|
sqlite
|
|
zlib
|
|
] ++ lib.optionals stdenv.isDarwin [ AppKit Cocoa Foundation ];
|
|
|
|
cmakeFlags = [
|
|
"-DHAS_WHATSAPP=OFF" # go module build required
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Terminal-based chat client with support for Telegram and WhatsApp";
|
|
mainProgram = "nchat";
|
|
homepage = "https://github.com/d99kris/nchat";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ sikmir ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|