summary refs log tree commit diff
path: root/pkgs/applications/networking/gopher
diff options
context:
space:
mode:
authorsternenseemann <git@lukasepple.de>2016-12-11 19:45:48 +0100
committerJörg Thalheim <joerg@higgsboson.tk>2016-12-11 19:45:48 +0100
commitd6aff31f357cec658540363b93b31a5c958f9601 (patch)
tree93b1851c4716d2221524f2d4b551640ba4a4f333 /pkgs/applications/networking/gopher
parentd568cb971be3c1a9f732e2d254baf74dff84fa2a (diff)
downloadnixpkgs-d6aff31f357cec658540363b93b31a5c958f9601.tar
nixpkgs-d6aff31f357cec658540363b93b31a5c958f9601.tar.gz
nixpkgs-d6aff31f357cec658540363b93b31a5c958f9601.tar.bz2
nixpkgs-d6aff31f357cec658540363b93b31a5c958f9601.tar.lz
nixpkgs-d6aff31f357cec658540363b93b31a5c958f9601.tar.xz
nixpkgs-d6aff31f357cec658540363b93b31a5c958f9601.tar.zst
nixpkgs-d6aff31f357cec658540363b93b31a5c958f9601.zip
gopher: init at 3.0.11 (#21080)
Diffstat (limited to 'pkgs/applications/networking/gopher')
-rw-r--r--pkgs/applications/networking/gopher/gopher/default.nix23
1 files changed, 23 insertions, 0 deletions
diff --git a/pkgs/applications/networking/gopher/gopher/default.nix b/pkgs/applications/networking/gopher/gopher/default.nix
new file mode 100644
index 00000000000..9057fda2e60
--- /dev/null
+++ b/pkgs/applications/networking/gopher/gopher/default.nix
@@ -0,0 +1,23 @@
+{stdenv, fetchurl, ncurses}:
+
+stdenv.mkDerivation rec {
+  name = "gopher-${version}";
+  version = "3.0.11";
+
+  src = fetchurl {
+    url = "http://gopher.quux.org:70/devel/gopher/Downloads/gopher_${version}.tar.gz";
+    sha256 = "15r7x518wlpfqpd6z0hbdwm8rw8ll8hbpskdqgxxhrmy00aa7w9c";
+  };
+
+  buildInputs = [ ncurses ];
+
+  preConfigure = "export LIBS=-lncurses";
+
+  meta = {
+    homepage = http://gopher.quux.org:70/devel/gopher;
+    description = "A ncurses gopher client";
+    platforms = stdenv.lib.platforms.unix;
+    license = stdenv.lib.licenses.gpl2;
+    maintainers = with stdenv.lib.maintainers; [ sternenseemann ];
+  };
+}