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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

127 lines
3.5 KiB
Nix
Raw Normal View History

2015-10-19 23:57:24 +00: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
2021-01-15 15:18:01 +00:00
{ lib, stdenv, fetchFromGitHub, nixosTests, writeScript, common-updater-scripts
2022-05-06 18:39:28 +00:00
, git, nix, nixfmt, jq, coreutils, gnused, curl, cacert, bash }:
2015-10-19 23:57:24 +00:00
stdenv.mkDerivation rec {
2023-06-26 11:20:08 +00:00
version = "2023-06-26";
pname = "oh-my-zsh";
2015-10-19 23:57:24 +00:00
src = fetchFromGitHub {
owner = "ohmyzsh";
repo = "ohmyzsh";
2023-06-29 10:06:16 +00:00
rev = "8cbe98469d9862d37d43ca4229dc8e915ec377a9";
sha256 = "sha256-/bFD1z/icQe4OfVcudMjIbkCh7MU6pEZiKBOYOFiCXs=";
2015-10-19 23:57:24 +00:00
};
2022-05-06 18:39:28 +00:00
strictDeps = true;
buildInputs = [ bash ];
2015-10-19 23:57:24 +00:00
installPhase = ''
2021-03-08 16:54:27 +00:00
runHook preInstall
outdir=$out/share/oh-my-zsh
template=templates/zshrc.zsh-template
2015-10-19 23:57:24 +00:00
mkdir -p $outdir
cp -r * $outdir
cd $outdir
2015-10-19 23:57:24 +00:00
rm LICENSE.txt
rm -rf .git*
2015-10-19 23:57:24 +00:00
chmod -R +w templates
2015-10-19 23:57:24 +00: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-19 23:57:24 +00: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-19 23:57:24 +00:00
# Load the variables.
if [ -f ~/.zsh_variables ]; then
. ~/.zsh_variables
fi
2015-10-19 23:57:24 +00:00
# Load the functions.
if [ -f ~/.zsh_funcs ]; then
. ~/.zsh_funcs
fi
2015-10-19 23:57:24 +00:00
# Load the aliases.
if [ -f ~/.zsh_aliases ]; then
. ~/.zsh_aliases
fi
EOF
2021-03-08 16:54:27 +00:00
runHook postInstall
2015-10-19 23:57:24 +00:00
'';
2020-11-04 23:12:23 +00:00
passthru = {
2020-11-05 01:37:50 +00:00
tests = { inherit (nixosTests) oh-my-zsh; };
2020-11-04 23:12:23 +00:00
updateScript = writeScript "update.sh" ''
#!${stdenv.shell}
set -o errexit
PATH=${
2021-01-15 06:28:56 +00:00
lib.makeBinPath [
2020-11-04 23:12:23 +00:00
common-updater-scripts
curl
cacert
git
nixfmt
nix
jq
coreutils
gnused
]
}
oldVersion="$(nix-instantiate --eval -E "with import ./. {}; lib.getVersion oh-my-zsh" | tr -d '"')"
latestSha="$(curl -L -s https://api.github.com/repos/ohmyzsh/ohmyzsh/commits\?sha\=master\&since\=$oldVersion | jq -r '.[0].sha')"
if [ ! "null" = "$latestSha" ]; then
nixpkgs="$(git rev-parse --show-toplevel)"
default_nix="$nixpkgs/pkgs/shells/zsh/oh-my-zsh/default.nix"
latestDate="$(curl -L -s https://api.github.com/repos/ohmyzsh/ohmyzsh/commits/$latestSha | jq '.commit.committer.date' | sed 's|"\(.*\)T.*|\1|g')"
2020-11-04 23:12:23 +00:00
update-source-version oh-my-zsh "$latestSha" --version-key=rev
update-source-version oh-my-zsh "$latestDate" --ignore-same-hash
nixfmt "$default_nix"
else
echo "${pname} is already up-to-date"
fi
'';
};
meta = with lib; {
2020-10-08 15:00:07 +00: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; [ nequissimus ];
2015-10-19 23:57:24 +00:00
};
}