Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 18 lines 292 B view raw
1{ 2 lib, 3 buildBatExtrasPkg, 4 less, 5 coreutils, 6 entr, 7 8 withEntr ? true, 9}: 10buildBatExtrasPkg { 11 name = "batwatch"; 12 dependencies = [ 13 less 14 coreutils 15 ] 16 ++ lib.optional withEntr entr; 17 meta.description = "Watch for changes in one or more files, and print them with bat"; 18}