fishPlugins.fishtape: init at 2.1.3
This commit is contained in:
parent
c083b27791
commit
3a987feae1
2 changed files with 34 additions and 0 deletions
|
@ -4,4 +4,6 @@ lib.makeScope newScope (self: with self; {
|
||||||
|
|
||||||
buildFishPlugin = callPackage ./build-fish-plugin.nix { };
|
buildFishPlugin = callPackage ./build-fish-plugin.nix { };
|
||||||
|
|
||||||
|
fishtape = callPackage ./fishtape.nix { };
|
||||||
|
|
||||||
})
|
})
|
||||||
|
|
32
pkgs/shells/fish/plugins/fishtape.nix
Normal file
32
pkgs/shells/fish/plugins/fishtape.nix
Normal file
|
@ -0,0 +1,32 @@
|
||||||
|
{ lib, buildFishPlugin, fetchFromGitHub }:
|
||||||
|
|
||||||
|
buildFishPlugin rec {
|
||||||
|
pname = "fishtape";
|
||||||
|
version = "2.1.3";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "jorgebucaran";
|
||||||
|
repo = "fishtape";
|
||||||
|
rev = version;
|
||||||
|
sha256 = "0dxcyhs2shhgy5xnwcimqja8vqsyk841x486lgq13i3y1h0kp2kd";
|
||||||
|
};
|
||||||
|
|
||||||
|
checkFunctionPath = [ "./" ]; # fishtape is introspective
|
||||||
|
checkPhase = ''
|
||||||
|
rm test/tty.fish # test expects a tty
|
||||||
|
fishtape test/*.fish
|
||||||
|
'';
|
||||||
|
|
||||||
|
preInstall = ''
|
||||||
|
# move the function script in the proper sub-directory
|
||||||
|
mkdir functions
|
||||||
|
mv fishtape.fish functions/
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "TAP-based test runner for Fish";
|
||||||
|
homepage = "https://github.com/jorgebucaran/fishtape";
|
||||||
|
license = lib.licenses.mit;
|
||||||
|
maintainers = with lib.maintainers; [ pacien ];
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue