summary refs log tree commit diff
path: root/pkgs/applications/misc/pcmanx-gtk2/default.nix
diff options
context:
space:
mode:
authormingchuan <ming@culpring.com>2016-02-20 19:24:25 +0800
committermingchuan <ming@culpring.com>2016-02-20 19:49:13 +0800
commit9e0b5358e2df4e265de30692a7f718c84909af4e (patch)
tree67de1eb7ef3c929d47d4882a3db9e938190a9837 /pkgs/applications/misc/pcmanx-gtk2/default.nix
parent17aefb1460f9ac0b9647eae3bf0c5d06a2ed0276 (diff)
downloadnixpkgs-9e0b5358e2df4e265de30692a7f718c84909af4e.tar
nixpkgs-9e0b5358e2df4e265de30692a7f718c84909af4e.tar.gz
nixpkgs-9e0b5358e2df4e265de30692a7f718c84909af4e.tar.bz2
nixpkgs-9e0b5358e2df4e265de30692a7f718c84909af4e.tar.lz
nixpkgs-9e0b5358e2df4e265de30692a7f718c84909af4e.tar.xz
nixpkgs-9e0b5358e2df4e265de30692a7f718c84909af4e.tar.zst
nixpkgs-9e0b5358e2df4e265de30692a7f718c84909af4e.zip
pcmanx-gtk2: init at 1.3
Diffstat (limited to 'pkgs/applications/misc/pcmanx-gtk2/default.nix')
-rw-r--r--pkgs/applications/misc/pcmanx-gtk2/default.nix23
1 files changed, 23 insertions, 0 deletions
diff --git a/pkgs/applications/misc/pcmanx-gtk2/default.nix b/pkgs/applications/misc/pcmanx-gtk2/default.nix
new file mode 100644
index 00000000000..fb655ceba5d
--- /dev/null
+++ b/pkgs/applications/misc/pcmanx-gtk2/default.nix
@@ -0,0 +1,23 @@
+{ stdenv, fetchurl, gtk2, libXft, intltool, automake115x, autoconf, libtool, pkgconfig }:
+
+stdenv.mkDerivation {
+  name = "pcmanx-gtk2-1.3";
+  src = fetchurl {
+    url = "https://github.com/pcman-bbs/pcmanx/archive/1.3.tar.gz";
+    sha256 = "2e5c59f6b568036f2ad6ac67ca2a41dfeeafa185451e507f9fb987d4ed9c4302";
+  };
+
+  buildInputs = [ gtk2 libXft intltool automake115x autoconf libtool pkgconfig ];
+
+  preConfigurePhases = ''
+    ./autogen.sh
+  '';
+
+  meta = with stdenv.lib; {
+    homepage = "http://pcman.ptt.cc";
+    license = licenses.gpl2;
+    description = "Telnet BBS browser with GTK+ interface";
+    maintainers = [ maintainers.mingchuan ];
+    platforms = platforms.linux;
+  };
+}