about summary refs log tree commit diff
path: root/pkgs/shells/zsh/zsh-prezto
diff options
context:
space:
mode:
authorMatthew Bauer <mjbauer95@gmail.com>2018-04-17 14:03:07 -0500
committerMatthew Bauer <mjbauer95@gmail.com>2018-04-17 14:47:32 -0500
commitddaea6ac77177c91576568af4b6f6d85195559af (patch)
tree0292a346327a613a52b95492aea9ed76d8c55dfe /pkgs/shells/zsh/zsh-prezto
parentd308ac923376b76183a0b4078f808ce40af8f86b (diff)
downloadnixlib-ddaea6ac77177c91576568af4b6f6d85195559af.tar
nixlib-ddaea6ac77177c91576568af4b6f6d85195559af.tar.gz
nixlib-ddaea6ac77177c91576568af4b6f6d85195559af.tar.bz2
nixlib-ddaea6ac77177c91576568af4b6f6d85195559af.tar.lz
nixlib-ddaea6ac77177c91576568af4b6f6d85195559af.tar.xz
nixlib-ddaea6ac77177c91576568af4b6f6d85195559af.tar.zst
nixlib-ddaea6ac77177c91576568af4b6f6d85195559af.zip
pkgs/shells: move extensions to subdirs
These are not reaal shells and should go into their parent shell
directory.
Diffstat (limited to 'pkgs/shells/zsh/zsh-prezto')
-rw-r--r--pkgs/shells/zsh/zsh-prezto/default.nix30
1 files changed, 30 insertions, 0 deletions
diff --git a/pkgs/shells/zsh/zsh-prezto/default.nix b/pkgs/shells/zsh/zsh-prezto/default.nix
new file mode 100644
index 000000000000..7bef904081e0
--- /dev/null
+++ b/pkgs/shells/zsh/zsh-prezto/default.nix
@@ -0,0 +1,30 @@
+{ stdenv, fetchpatch, fetchgit, fetchFromGitHub }:
+
+stdenv.mkDerivation rec {
+  name = "zsh-prezto-2017-12-03";
+  src = fetchgit {
+    url = "https://github.com/sorin-ionescu/prezto";
+    rev = "029414581e54f5b63156f81acd0d377e8eb78883";
+    sha256 = "0crrj2nq0wcv5in8qimnkca2an760aqald13vq09s5kbwwc9rs1f";
+    fetchSubmodules = true;
+  };
+  buildPhase = ''
+    sed -i -e "s|\''${ZDOTDIR:\-\$HOME}/.zpreztorc|/etc/zpreztorc|g" init.zsh
+    sed -i -e "s|\''${ZDOTDIR:\-\$HOME}/.zprezto/|$out/|g" init.zsh
+    for i in runcoms/*; do
+      sed -i -e "s|\''${ZDOTDIR:\-\$HOME}/.zprezto/|$out/|g" $i
+    done
+    sed -i -e "s|\''${0:h}/cache.zsh|\''${ZDOTDIR:\-\$HOME}/.zfasd_cache|g" modules/fasd/init.zsh
+  '';
+  installPhase = ''
+    mkdir -p $out
+    cp ./* $out/ -R
+  '';
+  meta = with stdenv.lib; {
+    description = "Prezto is the configuration framework for Zsh; it enriches the command line interface environment with sane defaults, aliases, functions, auto completion, and prompt themes.";
+    homepage = https://github.com/sorin-ionescu/prezto;
+    license = licenses.mit;
+    maintainers = with maintainers; [ garbas ];
+    platforms = with platforms; unix;
+  };
+}