nixpkgs/pkgs/shells/zsh/oh-my-zsh/default.nix

84 lines
2.1 KiB
Nix
Raw Normal View History

2015-10-20 02:57:24 +03:00
# This script was inspired by the ArchLinux User Repository package:
#
# https://aur.archlinux.org/cgit/aur.git/tree/PKGBUILD?h=oh-my-zsh-git
2020-08-31 16:08:49 +03:00
{ stdenv, fetchFromGitHub }:
2015-10-20 02:57:24 +03:00
stdenv.mkDerivation rec {
2020-10-30 16:34:22 +03:00
version = "2020-10-29";
pname = "oh-my-zsh";
2020-10-30 16:34:22 +03:00
rev = "852a44094a3bb4df39f8f778bc7ada2ddda09727";
2015-10-20 02:57:24 +03:00
src = fetchFromGitHub {
2020-08-31 16:15:47 +03:00
inherit rev;
owner = "ohmyzsh";
repo = "ohmyzsh";
2020-10-30 16:34:22 +03:00
sha256 = "0021rayw5wiwgjfwy7d6g577xidws58vk7y9xxhidnmk9sr4vri7";
2015-10-20 02:57:24 +03:00
};
installPhase = ''
outdir=$out/share/oh-my-zsh
template=templates/zshrc.zsh-template
2015-10-20 02:57:24 +03:00
mkdir -p $outdir
cp -r * $outdir
cd $outdir
2015-10-20 02:57:24 +03:00
rm LICENSE.txt
rm -rf .git*
2015-10-20 02:57:24 +03:00
chmod -R +w templates
2015-10-20 02:57:24 +03:00
# Change the path to oh-my-zsh dir and disable auto-updating.
sed -i -e "s#ZSH=\$HOME/.oh-my-zsh#ZSH=$outdir#" \
-e 's/\# \(DISABLE_AUTO_UPDATE="true"\)/\1/' \
$template
2015-10-20 02:57:24 +03:00
chmod +w oh-my-zsh.sh
# Both functions expect oh-my-zsh to be in ~/.oh-my-zsh and try to
# modify the directory.
cat >> oh-my-zsh.sh <<- EOF
# Undefine functions that don't work on Nix.
unfunction uninstall_oh_my_zsh
unfunction upgrade_oh_my_zsh
EOF
# Look for .zsh_variables, .zsh_aliases, and .zsh_funcs, and source
# them, if found.
cat >> $template <<- EOF
2015-10-20 02:57:24 +03:00
# Load the variables.
if [ -f ~/.zsh_variables ]; then
. ~/.zsh_variables
fi
2015-10-20 02:57:24 +03:00
# Load the functions.
if [ -f ~/.zsh_funcs ]; then
. ~/.zsh_funcs
fi
2015-10-20 02:57:24 +03:00
# Load the aliases.
if [ -f ~/.zsh_aliases ]; then
. ~/.zsh_aliases
fi
EOF
2015-10-20 02:57:24 +03:00
'';
meta = with stdenv.lib; {
2020-10-08 18:00:07 +03:00
description = "A framework for managing your zsh configuration";
longDescription = ''
Oh My Zsh is a framework for managing your zsh configuration.
To copy the Oh My Zsh configuration file to your home directory, run
the following command:
$ cp -v $(nix-env -q --out-path oh-my-zsh | cut -d' ' -f3)/share/oh-my-zsh/templates/zshrc.zsh-template ~/.zshrc
'';
homepage = "https://ohmyz.sh/";
license = licenses.mit;
platforms = platforms.all;
maintainers = with maintainers; [ scolobb nequissimus ];
2015-10-20 02:57:24 +03:00
};
}