mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 13:10:33 +00:00
liquidprompt: init at 2018-05-21
This commit is contained in:
parent
6eabfe010c
commit
0c00a15e75
32
pkgs/shells/liquidprompt/default.nix
Normal file
32
pkgs/shells/liquidprompt/default.nix
Normal file
|
@ -0,0 +1,32 @@
|
|||
{ stdenv, fetchFromGitHub }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "liquidprompt";
|
||||
version = "unstable-2018-05-21";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "nojhan";
|
||||
repo = pname;
|
||||
rev = "eda83efe4e0044f880370ed5e92aa7e3fdbef971";
|
||||
sha256 = "1p7ah3x850ajpq07xvxxd7fx2i67cf0n71ww085g32k9fwij4rd4";
|
||||
};
|
||||
|
||||
installPhase = ''
|
||||
install -D -m 0444 liquidprompt $out/bin/liquidprompt
|
||||
install -D -m 0444 liquidpromptrc-dist $out/share/doc/liquidprompt/liquidpromptrc-dist
|
||||
install -D -m 0444 liquid.theme $out/share/doc/liquidprompt/liquid.theme
|
||||
|
||||
install -D -m 0444 liquidprompt.plugin.zsh \
|
||||
$out/share/zsh/plugins/liquidprompt/liquidprompt.plugin.zsh
|
||||
install -D -m 0444 liquidprompt \
|
||||
$out/share/zsh/plugins/liquidprompt/liquidprompt
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "A full-featured & carefully designed adaptive prompt for Bash & Zsh";
|
||||
homepage = https://github.com/nojhan/liquidprompt;
|
||||
license = licenses.agpl3;
|
||||
platforms = platforms.all;
|
||||
maintainers = with maintainers; [ gerschtli ];
|
||||
};
|
||||
}
|
|
@ -7177,6 +7177,8 @@ in
|
|||
|
||||
ksh = callPackage ../shells/ksh { };
|
||||
|
||||
liquidprompt = callPackage ../shells/liquidprompt { };
|
||||
|
||||
mksh = callPackage ../shells/mksh { };
|
||||
|
||||
oh = callPackage ../shells/oh { };
|
||||
|
|
Loading…
Reference in a new issue