summary refs log tree commit diff
path: root/pkgs/shells/zsh
diff options
context:
space:
mode:
authorMichael Raskin <7c6f434c@mail.ru>2008-02-03 11:03:54 +0000
committerMichael Raskin <7c6f434c@mail.ru>2008-02-03 11:03:54 +0000
commitf763d29010e491293554cf8fe2320b31847f566c (patch)
tree59b93c8554c3a6c65bbc46f7f67d93d1e3931e2f /pkgs/shells/zsh
parentf6ee57b67f404b4f9480ebb283638b11aa26bdc3 (diff)
downloadnixlib-f763d29010e491293554cf8fe2320b31847f566c.tar
nixlib-f763d29010e491293554cf8fe2320b31847f566c.tar.gz
nixlib-f763d29010e491293554cf8fe2320b31847f566c.tar.bz2
nixlib-f763d29010e491293554cf8fe2320b31847f566c.tar.lz
nixlib-f763d29010e491293554cf8fe2320b31847f566c.tar.xz
nixlib-f763d29010e491293554cf8fe2320b31847f566c.tar.zst
nixlib-f763d29010e491293554cf8fe2320b31847f566c.zip
Added socat, updated zsh
svn path=/nixpkgs/trunk/; revision=10470
Diffstat (limited to 'pkgs/shells/zsh')
-rw-r--r--pkgs/shells/zsh/4.3.4.nix (renamed from pkgs/shells/zsh/default.nix)2
-rw-r--r--pkgs/shells/zsh/4.3.5.nix22
2 files changed, 23 insertions, 1 deletions
diff --git a/pkgs/shells/zsh/default.nix b/pkgs/shells/zsh/4.3.4.nix
index 0b227b031b82..ea9a82cf6839 100644
--- a/pkgs/shells/zsh/default.nix
+++ b/pkgs/shells/zsh/4.3.4.nix
@@ -1,4 +1,4 @@
-{stdenv, fetchurl, coreutils, ncurses}:
+args: with args;
 stdenv.mkDerivation {
   name = "zsh-4.3.4";
 
diff --git a/pkgs/shells/zsh/4.3.5.nix b/pkgs/shells/zsh/4.3.5.nix
new file mode 100644
index 000000000000..227da7995fb4
--- /dev/null
+++ b/pkgs/shells/zsh/4.3.5.nix
@@ -0,0 +1,22 @@
+args: with args;
+let documentation = fetchurl {
+    url = http://www.math.technion.ac.il/pub/zsh/zsh-4.3.5-doc.tar.bz2;
+    sha256 = "0jf35xibp8wfka7rdk9q8spkwprlhjx1sp7vp6img8wks12cvlkx";
+  };
+in
+stdenv.mkDerivation {
+  name = "zsh-${version}";
+
+  src = fetchurl {
+    url = http://www.math.technion.ac.il/pub/zsh/zsh-4.3.5.tar.bz2;
+    sha256 = "0191j3liflkjrj39i2yrs3ab9jcx4zd93rirx3j17dymfgqlvrzb";
+  };
+  configureFlags = "--with-tcsetpgrp --enable-maildir-support --enable-multibyte";
+
+  postInstall = ''
+    ensureDir $out/share/
+    tar xf ${documentation} -C $out/share
+  '';
+
+  buildInputs = [ncurses coreutils];
+}