summary refs log tree commit diff
path: root/pkgs/shells/zsh/4.3.4.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/shells/zsh/4.3.4.nix')
-rw-r--r--pkgs/shells/zsh/4.3.4.nix13
1 files changed, 13 insertions, 0 deletions
diff --git a/pkgs/shells/zsh/4.3.4.nix b/pkgs/shells/zsh/4.3.4.nix
new file mode 100644
index 000000000000..ea9a82cf6839
--- /dev/null
+++ b/pkgs/shells/zsh/4.3.4.nix
@@ -0,0 +1,13 @@
+args: with args;
+stdenv.mkDerivation {
+  name = "zsh-4.3.4";
+
+  src = fetchurl {
+    url = mirror://sourceforge/zsh/zsh-4.3.4.tar.bz2;
+    sha256 = "1inypy60h7hir8hwidid85pbajrb5w09fl222p0h4fnsn0nf583g";
+  };
+
+  configureFlags = "--with-tcsetpgrp --enable-maildir-support --enable-multibyte";
+
+  buildInputs = [ncurses coreutils];
+}