lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

getoptions: disable tests against yash

+3
+3
pkgs/tools/misc/getoptions/default.nix
··· 18 18 nativeCheckInputs = [ shellspec ksh mksh yash zsh ] 19 19 ++ lib.lists.optional (!stdenvNoCC.isDarwin) busybox-sandbox-shell; 20 20 21 + # Disable checks against yash, since shellspec seems to be broken for yash>=2.54 22 + # (see: https://github.com/NixOS/nixpkgs/pull/218264#pullrequestreview-1434402054) 21 23 preCheck = '' 22 24 sed -i '/shellspec -s posh/d' Makefile 25 + sed -i '/shellspec -s yash/d' Makefile 23 26 '' + lib.strings.optionalString stdenvNoCC.isDarwin '' 24 27 sed -i "/shellspec -s 'busybox ash'/d" Makefile 25 28 '';