about summary refs log tree commit diff
path: root/pkgs/shells
diff options
context:
space:
mode:
authorBernardo Meurer <bernardo@meurer.org>2022-01-10 13:47:43 +0000
committerGitHub <noreply@github.com>2022-01-10 13:47:43 +0000
commit4a7b0213efb5140d60259ace1fe6066c7ece9023 (patch)
tree583e1dbbbb9f7c3e0a0b54057ebce409fd661113 /pkgs/shells
parentc9248a6d87ce071fc7538dc5358b60ce86092e49 (diff)
parent7ada385af0b5ca1ce6ed865a7b2fc7ce603e8831 (diff)
Merge pull request #154129 from Enzime/fix/zsh-custom-src
zsh: Support building from Git checkouts
Diffstat (limited to 'pkgs/shells')
-rw-r--r--pkgs/shells/zsh/default.nix25
1 files changed, 16 insertions, 9 deletions
diff --git a/pkgs/shells/zsh/default.nix b/pkgs/shells/zsh/default.nix
index e0fd68f13b606..821247535050e 100644
--- a/pkgs/shells/zsh/default.nix
+++ b/pkgs/shells/zsh/default.nix
@@ -1,12 +1,19 @@
-{ lib, stdenv, fetchurl, fetchpatch, ncurses, pcre, buildPackages }:
+{ lib
+, stdenv
+, fetchurl
+, fetchpatch
+, autoreconfHook
+, yodl
+, perl
+, groff
+, util-linux
+, texinfo
+, ncurses
+, pcre
+, buildPackages }:
 
 let
   version = "5.8";
-
-  documentation = fetchurl {
-    url = "mirror://sourceforge/zsh/zsh-${version}-doc.tar.xz";
-    sha256 = "1i6wdzq6rfjx5yjrpzan1jf50hk2pfzy5qib9mb7cnnbjfar6klv";
-  };
 in
 
 stdenv.mkDerivation {
@@ -30,6 +37,8 @@ stdenv.mkDerivation {
     })
   ];
 
+  nativeBuildInputs = [ autoreconfHook yodl perl groff util-linux texinfo ];
+
   buildInputs = [ ncurses pcre ];
 
   configureFlags = [
@@ -47,9 +56,7 @@ stdenv.mkDerivation {
 
   # XXX: think/discuss about this, also with respect to nixos vs nix-on-X
   postInstall = ''
-    mkdir -p $out/share/info
-    tar xf ${documentation} -C $out/share
-    ln -s $out/share/zsh-*/Doc/zsh.info* $out/share/info/
+    make install.info install.html
 
     mkdir -p $out/etc/
     cat > $out/etc/zprofile <<EOF