Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at netboot-syslinux-multiplatform 25 lines 612 B view raw
1{ lib, buildFishPlugin, fetchFromGitHub }: 2 3buildFishPlugin rec { 4 pname = "fishtape"; 5 version = "3.0.1"; 6 7 src = fetchFromGitHub { 8 owner = "jorgebucaran"; 9 repo = "fishtape"; 10 rev = version; 11 sha256 = "072a3qbk1lpxw53bxp91drsffylx8fbywhss3x0jbnayn9m8i7aa"; 12 }; 13 14 checkFunctionDirs = [ "./functions" ]; # fishtape is introspective 15 checkPhase = '' 16 fishtape tests/*.fish 17 ''; 18 19 meta = with lib; { 20 description = "100% pure-Fish test runner"; 21 homepage = "https://github.com/jorgebucaran/fishtape"; 22 license = licenses.mit; 23 maintainers = with maintainers; [ pacien ]; 24 }; 25}