1 { lib, stdenv, fetchFromGitHub, gtk2, libXft, intltool, automake, autoconf, libtool, pkg-config }:
3 stdenv.mkDerivation rec {
7 src = fetchFromGitHub {
11 sha256 = "0fbwd149wny67rfhczz4cbh713a1qnswjiz7b6c2bxfcwh51f9rc";
14 nativeBuildInputs = [ pkg-config automake autoconf intltool ];
15 buildInputs = [ gtk2 libXft libtool ];
19 # libtoolize generates configure script which uses older version of automake, we need to autoreconf it
20 cd libltdl; autoreconf; cd ..
24 homepage = "https://pcman.ptt.cc";
25 license = licenses.gpl2;
26 description = "Telnet BBS browser with GTK interface";
27 maintainers = [ maintainers.sifmelcara ];
28 platforms = platforms.linux;