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

75 lines
1.9 KiB
Nix
Raw Normal View History

2015-10-20 00:57:24 +01: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
{ stdenv, fetchgit }:
stdenv.mkDerivation rec {
2019-07-23 13:18:15 +01:00
version = "2019-07-22";
2016-10-08 23:32:32 +01:00
name = "oh-my-zsh-${version}";
2019-07-23 13:18:15 +01:00
rev = "508cba2fc2ec545504abcf38ecdd958f3a89e5e8";
2015-10-20 00:57:24 +01:00
src = fetchgit { inherit rev;
2015-10-20 00:57:24 +01:00
url = "https://github.com/robbyrussell/oh-my-zsh";
2019-07-23 13:18:15 +01:00
sha256 = "0pql5p8dwz576s0hgqrzk4543qawlghy7rv3k3jyhrwi4xx4z84d";
2015-10-20 00:57:24 +01:00
};
2017-01-17 22:55:40 +00:00
pathsToLink = [ "/share/oh-my-zsh" ];
2015-10-20 00:57:24 +01:00
phases = "installPhase";
installPhase = ''
outdir=$out/share/oh-my-zsh
template=templates/zshrc.zsh-template
mkdir -p $outdir
cp -r $src/* $outdir
cd $outdir
2016-06-19 15:19:23 +01:00
rm LICENSE.txt
2015-10-20 00:57:24 +01:00
rm -rf .git*
chmod -R +w templates
# Change the path to oh-my-zsh dir and disable auto-updating.
sed -i -e "s#ZSH=\$HOME/.oh-my-zsh#ZSH=$outdir#" \
2015-10-20 00:57:24 +01:00
-e 's/\# \(DISABLE_AUTO_UPDATE="true"\)/\1/' \
$template
# Look for .zsh_variables, .zsh_aliases, and .zsh_funcs, and source
# them, if found.
cat >> $template <<- EOF
# Load the variables.
if [ -f ~/.zsh_variables ]; then
. ~/.zsh_variables
fi
# Load the functions.
if [ -f ~/.zsh_funcs ]; then
. ~/.zsh_funcs
fi
# Load the aliases.
if [ -f ~/.zsh_aliases ]; then
. ~/.zsh_aliases
fi
EOF
'';
meta = with stdenv.lib; {
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
2015-10-20 00:57:24 +01:00
'';
2018-06-30 01:18:27 +01:00
homepage = https://ohmyz.sh/;
2015-10-20 00:57:24 +01:00
license = licenses.mit;
platforms = platforms.all;
maintainers = with maintainers; [ scolobb nequissimus ];
};
}