summary refs log tree commit diff
path: root/pkgs/applications/networking/browsers/w3m/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/applications/networking/browsers/w3m/default.nix')
-rw-r--r--pkgs/applications/networking/browsers/w3m/default.nix16
1 files changed, 16 insertions, 0 deletions
diff --git a/pkgs/applications/networking/browsers/w3m/default.nix b/pkgs/applications/networking/browsers/w3m/default.nix
new file mode 100644
index 00000000000..bc26e938371
--- /dev/null
+++ b/pkgs/applications/networking/browsers/w3m/default.nix
@@ -0,0 +1,16 @@
+{ stdenv, fetchurl, ncurses
+, sslSupport ? true, openssl ? null, boehmgc, gettext
+}:
+
+assert sslSupport -> openssl != null;
+
+stdenv.mkDerivation {
+  name = "w3m-0.5.1";
+  builder = ./builder.sh;
+  src = fetchurl {
+    url = http://surfnet.dl.sourceforge.net/sourceforge/w3m/w3m-0.5.1.tar.gz;
+    md5 = "0678b72e07e69c41709d71ef0fe5da13";
+  };
+  inherit ncurses openssl;
+  buildInputs = [ncurses (if sslSupport then openssl else null) boehmgc gettext];
+}