2e6bf42a22
There ver very many conflicts, basically all due to name -> pname+version. Fortunately, almost everything was auto-resolved by kdiff3, and for now I just fixed up a couple evaluation problems, as verified by the tarball job. There might be some fallback to these conflicts, but I believe it should be minimal. Hydra nixpkgs: ?compare=1538299
34 lines
881 B
Nix
34 lines
881 B
Nix
{ stdenv, fetchFromGitHub
|
|
, guile, pkgconfig, glib, loudmouth, gmp, libidn, readline, libtool
|
|
, libunwind, ncurses, curl, jansson, texinfo
|
|
, automake, autoconf }:
|
|
stdenv.mkDerivation rec {
|
|
pname = "freetalk";
|
|
version = "4.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "GNUFreetalk";
|
|
repo = "freetalk";
|
|
rev = "v${version}";
|
|
sha256 = "09jwk2i8qd8c7wrn9xbqcwm32720dwxis22kf3jpbg8mn6w6i757";
|
|
};
|
|
|
|
preConfigure = ''
|
|
./autogen.sh
|
|
'';
|
|
|
|
nativeBuildInputs = [ pkgconfig texinfo autoconf automake ];
|
|
buildInputs = [
|
|
guile glib loudmouth gmp libidn readline libtool
|
|
libunwind ncurses curl jansson
|
|
];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Console XMPP client";
|
|
license = licenses.gpl3Plus ;
|
|
maintainers = with maintainers; [ raskin ];
|
|
platforms = platforms.linux;
|
|
downloadPage = "https://www.gnu.org/software/freetalk/";
|
|
};
|
|
}
|