fishPlugins.pure: init at 3.4.2

This commit is contained in:
pacien 2020-12-28 21:15:57 +01:00
parent 3a987feae1
commit 59c1b6d0e7
2 changed files with 31 additions and 0 deletions

View file

@ -6,4 +6,6 @@ lib.makeScope newScope (self: with self; {
fishtape = callPackage ./fishtape.nix { };
pure = callPackage ./pure.nix { };
})

View file

@ -0,0 +1,29 @@
{ lib, buildFishPlugin, fetchFromGitHub, git, fishtape }:
buildFishPlugin rec {
pname = "pure";
version = "3.4.2";
src = fetchFromGitHub {
owner = "rafaelrinaldi";
repo = "pure";
rev = "v${version}";
sha256 = "134sz3f98gb6z2vgd5kkm6dd8pka5gijk843c32s616w35y07sga";
};
checkInputs = [ git ];
checkFunctionPath = [ fishtape ];
checkPhase = ''
# https://github.com/rafaelrinaldi/pure/issues/264
rm tests/_pure_string_width.test.fish
fishtape tests/*.test.fish
'';
meta = {
description = "Pretty, minimal and fast Fish prompt, ported from zsh";
homepage = "https://github.com/rafaelrinaldi/pure";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ pacien ];
};
}