2018-04-06 23:57:44 -07:00
|
|
|
{ stdenv, fetchFromGitHub, gtk2, libXft, intltool, automake, autoconf, libtool, pkgconfig }:
|
2016-02-20 03:24:25 -08:00
|
|
|
|
2018-04-06 23:57:44 -07:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "pcmanx-gtk2";
|
2018-04-06 23:57:44 -07:00
|
|
|
version = "1.3";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "pcman-bbs";
|
|
|
|
repo = "pcmanx";
|
|
|
|
rev = version;
|
|
|
|
sha256 = "0fbwd149wny67rfhczz4cbh713a1qnswjiz7b6c2bxfcwh51f9rc";
|
2016-02-20 03:24:25 -08:00
|
|
|
};
|
|
|
|
|
2017-09-05 14:26:13 -07:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [ gtk2 libXft intltool automake autoconf libtool ];
|
2016-02-20 03:24:25 -08:00
|
|
|
|
2017-01-06 05:04:49 -08:00
|
|
|
preConfigure = ''
|
2016-02-20 03:24:25 -08:00
|
|
|
./autogen.sh
|
2018-04-06 23:57:44 -07:00
|
|
|
# libtoolize generates configure script which uses older version of automake, we need to autoreconf it
|
|
|
|
cd libltdl; autoreconf; cd ..
|
2016-02-20 03:24:25 -08:00
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2018-06-23 04:34:55 -07:00
|
|
|
homepage = https://pcman.ptt.cc;
|
2016-02-20 03:24:25 -08:00
|
|
|
license = licenses.gpl2;
|
2019-09-03 15:49:40 -07:00
|
|
|
description = "Telnet BBS browser with GTK interface";
|
2017-10-03 05:07:12 -07:00
|
|
|
maintainers = [ maintainers.sifmelcara ];
|
2016-02-20 03:24:25 -08:00
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|