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.

128 lines
3.5 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
2021-01-15 18:18:01 +03:00
{ lib, stdenv, fetchFromGitHub, nixosTests, writeScript, common-updater-scripts
2022-05-06 21:39:28 +03:00
, git, nix, nixfmt, jq, coreutils, gnused, curl, cacert, bash }:
2015-10-20 02:57:24 +03:00
stdenv.mkDerivation rec {
2023-03-02 07:22:05 +03:00
version = "2023-03-01";
pname = "oh-my-zsh";
2023-03-02 07:22:05 +03:00
rev = "a4a9a8cd8ccb4240a7c5df5f6766bd5340646e63";
2015-10-20 02:57:24 +03:00
src = fetchFromGitHub {
2020-08-31 16:15:47 +03:00
inherit rev;
owner = "ohmyzsh";
repo = "ohmyzsh";
2023-03-02 07:22:05 +03:00
sha256 = "2s9ZOix3lQKW7JJhuYKtjxh07HCODvIrJa7K2n9Pxzo=";
2015-10-20 02:57:24 +03:00
};
2022-05-06 21:39:28 +03:00
strictDeps = true;
buildInputs = [ bash ];
2015-10-20 02:57:24 +03:00
installPhase = ''
2021-03-08 19:54:27 +03:00
runHook preInstall
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
2021-03-08 19:54:27 +03:00
runHook postInstall
2015-10-20 02:57:24 +03:00
'';
2020-11-05 02:12:23 +03:00
passthru = {
2020-11-05 04:37:50 +03:00
tests = { inherit (nixosTests) oh-my-zsh; };
2020-11-05 02:12:23 +03:00
updateScript = writeScript "update.sh" ''
#!${stdenv.shell}
set -o errexit
PATH=${
2021-01-15 09:28:56 +03:00
lib.makeBinPath [
2020-11-05 02:12:23 +03: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-05 02:12:23 +03: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 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; [ nequissimus ];
2015-10-20 02:57:24 +03:00
};
}