lol
fork

Configure Feed

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

bat-extras: fix build on Darwin (#119987)

introduced by #119689

Signed-off-by: Andreas Schmid <service@aaschmid.de>

+3
+3
pkgs/tools/misc/bat-extras/default.nix
··· 1 1 { lib, stdenv, fetchFromGitHub, bash, makeWrapper, bat 2 2 # batdiff, batgrep, and batwatch 3 3 , coreutils 4 + , getconf 4 5 , less 5 6 # batgrep 6 7 , ripgrep ··· 48 49 49 50 # Run the library tests as they don't have external dependencies 50 51 doCheck = true; 52 + checkInputs = lib.optionals stdenv.isDarwin [ getconf ]; 51 53 checkPhase = '' 52 54 runHook preCheck 53 55 # test list repeats suites. Unique them ··· 104 106 dontBuild = true; # we've already built 105 107 106 108 doCheck = true; 109 + checkInputs = lib.optionals stdenv.isDarwin [ getconf ]; 107 110 checkPhase = '' 108 111 runHook preCheck 109 112 bash ./test.sh --compiled --suite ${name}