nixpkgs/pkgs/applications/networking/instant-messengers/twinkle/default.nix
Maciej Krüger 195f135357
twinkle: 1.10.2 -> unstable-2021-02-06
Includes many useful fixes,
asked upstream about new release

https://github.com/LubosD/twinkle/issues/239

Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
2021-11-30 18:39:58 +01:00

71 lines
1.1 KiB
Nix

{ lib
, fetchFromGitHub
, cmake
, libxml2
, libsndfile
, file
, readline
, bison
, flex
, ucommon
, ccrtp
, qtbase
, qttools
, qtquickcontrols2
, alsa-lib
, speex
, ilbc
, mkDerivation
, bcg729
}:
mkDerivation rec {
pname = "twinkle";
version = "unstable-2021-02-06";
src = fetchFromGitHub {
owner = "LubosD";
repo = "twinkle";
rev = "2301b66a3f54b266675415d261985488d86e9e4c";
sha256 = "xSwcaj1Hm62iL7C/AxqjVR07VEae8gDgYdr2EWmCoOM=";
};
buildInputs = [
libxml2
file # libmagic
libsndfile
readline
ucommon
ccrtp
qtbase
qttools
qtquickcontrols2
alsa-lib
speex
ilbc
];
nativeBuildInputs = [
cmake
bison
flex
bcg729
];
cmakeFlags = [
"-DWITH_G729=On"
"-DWITH_SPEEX=On"
"-DWITH_ILBC=On"
/* "-DWITH_DIAMONDCARD=On" seems ancient and broken */
];
meta = with lib; {
changelog = "https://github.com/LubosD/twinkle/blob/${version}/NEWS";
description = "A SIP-based VoIP client";
homepage = "http://twinkle.dolezel.info/";
license = licenses.gpl2Plus;
maintainers = [ maintainers.mkg20001 ];
platforms = platforms.linux;
};
}