Merge pull request #96532 from flokli/ohmyzsh-cleanups

oh-my-zsh: cleanups, don't require perl in pygmalion theme anymore
This commit is contained in:
Tim Steinbach 2020-08-31 09:10:44 -04:00 committed by GitHub
commit f076cd769d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,70 +1,67 @@
# This script was inspired by the ArchLinux User Repository package: # This script was inspired by the ArchLinux User Repository package:
# #
# https://aur.archlinux.org/cgit/aur.git/tree/PKGBUILD?h=oh-my-zsh-git # https://aur.archlinux.org/cgit/aur.git/tree/PKGBUILD?h=oh-my-zsh-git
{ stdenv, fetchgit }: { stdenv, fetchFromGitHub }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
version = "2020-08-28"; version = "2020-08-28";
pname = "oh-my-zsh"; pname = "oh-my-zsh";
rev = "4ed6fd2b8b6a0efb2f84f00a64503282aca260e7";
src = fetchgit { inherit rev; src = fetchFromGitHub {
url = "https://github.com/ohmyzsh/ohmyzsh"; owner = "ohmyzsh";
repo = "ohmyzsh";
rev = "4ed6fd2b8b6a0efb2f84f00a64503282aca260e7";
sha256 = "0f2f1k6s28lgxpjdgl4s7jisw6dgva9mcsqlsq0wg6041p246nai"; sha256 = "0f2f1k6s28lgxpjdgl4s7jisw6dgva9mcsqlsq0wg6041p246nai";
}; };
pathsToLink = [ "/share/oh-my-zsh" ];
phases = "installPhase";
installPhase = '' installPhase = ''
outdir=$out/share/oh-my-zsh outdir=$out/share/oh-my-zsh
template=templates/zshrc.zsh-template template=templates/zshrc.zsh-template
mkdir -p $outdir mkdir -p $outdir
cp -r $src/* $outdir cp -r * $outdir
cd $outdir cd $outdir
rm LICENSE.txt rm LICENSE.txt
rm -rf .git* rm -rf .git*
chmod -R +w templates chmod -R +w templates
# Change the path to oh-my-zsh dir and disable auto-updating. # Change the path to oh-my-zsh dir and disable auto-updating.
sed -i -e "s#ZSH=\$HOME/.oh-my-zsh#ZSH=$outdir#" \ sed -i -e "s#ZSH=\$HOME/.oh-my-zsh#ZSH=$outdir#" \
-e 's/\# \(DISABLE_AUTO_UPDATE="true"\)/\1/' \ -e 's/\# \(DISABLE_AUTO_UPDATE="true"\)/\1/' \
$template $template
chmod +w oh-my-zsh.sh chmod +w oh-my-zsh.sh
# Both functions expect oh-my-zsh to be in ~/.oh-my-zsh and try to # Both functions expect oh-my-zsh to be in ~/.oh-my-zsh and try to
# modify the directory. # modify the directory.
cat >> oh-my-zsh.sh <<- EOF cat >> oh-my-zsh.sh <<- EOF
# Undefine functions that don't work on Nix. # Undefine functions that don't work on Nix.
unfunction uninstall_oh_my_zsh unfunction uninstall_oh_my_zsh
unfunction upgrade_oh_my_zsh unfunction upgrade_oh_my_zsh
EOF EOF
# Look for .zsh_variables, .zsh_aliases, and .zsh_funcs, and source # Look for .zsh_variables, .zsh_aliases, and .zsh_funcs, and source
# them, if found. # them, if found.
cat >> $template <<- EOF cat >> $template <<- EOF
# Load the variables. # Load the variables.
if [ -f ~/.zsh_variables ]; then if [ -f ~/.zsh_variables ]; then
. ~/.zsh_variables . ~/.zsh_variables
fi fi
# Load the functions. # Load the functions.
if [ -f ~/.zsh_funcs ]; then if [ -f ~/.zsh_funcs ]; then
. ~/.zsh_funcs . ~/.zsh_funcs
fi fi
# Load the aliases. # Load the aliases.
if [ -f ~/.zsh_aliases ]; then if [ -f ~/.zsh_aliases ]; then
. ~/.zsh_aliases . ~/.zsh_aliases
fi fi
EOF EOF
''; '';
meta = with stdenv.lib; { meta = with stdenv.lib; {