d7145807ad
Keeping fishtape 2.x and 3.x separate because they aren't compatible with each other and are still both being used to test different packages.
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 ];
|
|
};
|
|
}
|