mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-03 20:33:21 +00:00
26 lines
612 B
Nix
26 lines
612 B
Nix
|
{ lib, buildFishPlugin, fetchFromGitHub }:
|
||
|
|
||
|
buildFishPlugin rec {
|
||
|
pname = "fishtape";
|
||
|
version = "3.0.1";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "jorgebucaran";
|
||
|
repo = "fishtape";
|
||
|
rev = version;
|
||
|
sha256 = "072a3qbk1lpxw53bxp91drsffylx8fbywhss3x0jbnayn9m8i7aa";
|
||
|
};
|
||
|
|
||
|
checkFunctionDirs = [ "./functions" ]; # fishtape is introspective
|
||
|
checkPhase = ''
|
||
|
fishtape tests/*.fish
|
||
|
'';
|
||
|
|
||
|
meta = with lib; {
|
||
|
description = "100% pure-Fish test runner";
|
||
|
homepage = "https://github.com/jorgebucaran/fishtape";
|
||
|
license = licenses.mit;
|
||
|
maintainers = with maintainers; [ pacien ];
|
||
|
};
|
||
|
}
|