1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-22 13:41:26 +00:00
nixpkgs/pkgs/shells/zsh-prezto/default.nix

47 lines
1.7 KiB
Nix
Raw Normal View History

2017-11-21 02:18:05 +00:00
{ stdenv, fetchpatch, fetchgit, fetchFromGitHub }:
2016-05-15 04:05:05 +01:00
let
# https://github.com/spwhitt/nix-zsh-completions/pull/2
nix-zsh-completions = fetchFromGitHub {
owner = "garbas";
repo = "nix-zsh-completions";
rev = "9b7d216ec095ccee541ebfa5f04249aa2964d054";
sha256 = "1pvmfcqdvdi3nc1jm72f54mwf06yrmlq31pqw6b5fczawcz02jrz";
};
in stdenv.mkDerivation rec {
rev = "4f19700919c8ebbaf75755fc0d03716d13183f49";
2016-05-15 04:05:05 +01:00
name = "zsh-prezto-2015-03-03_rev${builtins.substring 0 7 rev}";
src = fetchgit {
url = "https://github.com/sorin-ionescu/prezto";
2016-05-15 04:05:05 +01:00
inherit rev;
sha256 = "17mql9mb7zbf8q1nvnci60yrmz5bl9q964i8dv4shz8b42861cdg";
fetchSubmodules = true;
2016-05-15 04:05:05 +01:00
};
patches = [
2017-11-21 02:18:05 +00:00
(fetchpatch {
2016-05-15 04:05:05 +01:00
url = "https://github.com/sorin-ionescu/prezto/pull/1028.patch";
2017-11-21 02:18:05 +00:00
sha256 = "0yrj72s1hiaq13374xa82hxdig4s0kvqjn9apkmw0h7kzggxjfn3";
2016-05-15 04:05:05 +01: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/modules/nix
cp ${nix-zsh-completions}/* $out/modules/nix -R
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 04:05:05 +01:00
license = licenses.mit;
maintainers = with maintainers; [ garbas ];
platforms = with platforms; unix;
2016-05-15 04:05:05 +01:00
};
}