pure-prompt: init at 1.12.0
Co-authored-by: pablo1107 <dealberapablo07@gmail.com>
This commit is contained in:
parent
2aa7589303
commit
db97cb3aa9
30
pkgs/shells/zsh/pure-prompt/default.nix
Normal file
30
pkgs/shells/zsh/pure-prompt/default.nix
Normal file
@ -0,0 +1,30 @@
|
||||
{ stdenv, fetchFromGitHub }:
|
||||
|
||||
with stdenv.lib;
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "pure-prompt";
|
||||
version = "1.12.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "sindresorhus";
|
||||
repo = "pure";
|
||||
rev = "v${version}";
|
||||
sha256 = "1h04z7rxmca75sxdfjgmiyf1b5z2byfn6k4srls211l0wnva2r5y";
|
||||
};
|
||||
|
||||
installPhase = ''
|
||||
OUTDIR="$out/share/zsh/site-functions"
|
||||
mkdir -p "$OUTDIR"
|
||||
cp pure.zsh "$OUTDIR/prompt_pure_setup"
|
||||
cp async.zsh "$OUTDIR/async"
|
||||
'';
|
||||
|
||||
meta = {
|
||||
description = "Pretty, minimal and fast ZSH prompt";
|
||||
homepage = https://github.com/sindresorhus/pure;
|
||||
license = licenses.mit;
|
||||
platforms = platforms.all;
|
||||
maintainers = with maintainers; [ pacien ];
|
||||
};
|
||||
}
|
@ -5551,6 +5551,8 @@ in
|
||||
|
||||
pubs = callPackage ../tools/misc/pubs {};
|
||||
|
||||
pure-prompt = callPackage ../shells/zsh/pure-prompt { };
|
||||
|
||||
pv = callPackage ../tools/misc/pv { };
|
||||
|
||||
pwgen = callPackage ../tools/security/pwgen { };
|
||||
|
Loading…
Reference in New Issue
Block a user