nixpkgs/pkgs/shells/zsh-prezto/default.nix

31 lines
1.1 KiB
Nix
Raw Normal View History

2017-11-21 02:18:05 +00:00
{ stdenv, fetchpatch, fetchgit, fetchFromGitHub }:
2016-05-15 03:05:05 +00:00
stdenv.mkDerivation rec {
name = "zsh-prezto-2017-12-03";
src = fetchgit {
url = "https://github.com/sorin-ionescu/prezto";
rev = "029414581e54f5b63156f81acd0d377e8eb78883";
sha256 = "0crrj2nq0wcv5in8qimnkca2an760aqald13vq09s5kbwwc9rs1f";
fetchSubmodules = true;
2016-05-15 03:05:05 +00:00
};
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
2016-05-15 03:05:05 +00:00
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;
2016-05-15 03:05:05 +00:00
license = licenses.mit;
maintainers = with maintainers; [ garbas ];
platforms = with platforms; unix;
2016-05-15 03:05:05 +00:00
};
}