python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / applications / misc / pcmanx-gtk2 / default.nix
blob2e75791e308230d689abbe85b23b1d2f86c32309
1 { lib, stdenv, fetchFromGitHub, gtk2, libXft, intltool, automake, autoconf, libtool, pkg-config }:
3 stdenv.mkDerivation rec {
4   pname = "pcmanx-gtk2";
5   version = "1.3";
7   src = fetchFromGitHub {
8     owner = "pcman-bbs";
9     repo = "pcmanx";
10     rev = version;
11     sha256 = "0fbwd149wny67rfhczz4cbh713a1qnswjiz7b6c2bxfcwh51f9rc";
12   };
14   nativeBuildInputs = [ pkg-config automake autoconf intltool ];
15   buildInputs = [ gtk2 libXft libtool ];
17   preConfigure = ''
18     ./autogen.sh
19     # libtoolize generates configure script which uses older version of automake, we need to autoreconf it
20     cd libltdl; autoreconf; cd ..
21   '';
23   meta = with lib; {
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;
29   };