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