mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2025-01-05 02:23:07 +03:00
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:
commit
f076cd769d
@ -1,28 +1,25 @@
|
||||
# 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, fetchFromGitHub }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
version = "2020-08-28";
|
||||
pname = "oh-my-zsh";
|
||||
rev = "4ed6fd2b8b6a0efb2f84f00a64503282aca260e7";
|
||||
|
||||
src = fetchgit { inherit rev;
|
||||
url = "https://github.com/ohmyzsh/ohmyzsh";
|
||||
src = fetchFromGitHub {
|
||||
owner = "ohmyzsh";
|
||||
repo = "ohmyzsh";
|
||||
rev = "4ed6fd2b8b6a0efb2f84f00a64503282aca260e7";
|
||||
sha256 = "0f2f1k6s28lgxpjdgl4s7jisw6dgva9mcsqlsq0wg6041p246nai";
|
||||
};
|
||||
|
||||
pathsToLink = [ "/share/oh-my-zsh" ];
|
||||
|
||||
phases = "installPhase";
|
||||
|
||||
installPhase = ''
|
||||
outdir=$out/share/oh-my-zsh
|
||||
template=templates/zshrc.zsh-template
|
||||
|
||||
mkdir -p $outdir
|
||||
cp -r $src/* $outdir
|
||||
cp -r * $outdir
|
||||
cd $outdir
|
||||
|
||||
rm LICENSE.txt
|
||||
|
Loading…
Reference in New Issue
Block a user