this repo has no description
1{nixpkgs, ...}: let
2 inherit (nixpkgs) lib;
3
4 readFileWithComments = path: let
5 content = lib.strings.fileContents path;
6 notComment = line: !lib.strings.hasPrefix "#" line;
7 in
8 builtins.filter notComment (lib.strings.splitString "\n" content);
9
10 dontCheck = drv: drv.overrideAttrs {doCheck = false;};
11in {
12 inherit readFileWithComments dontCheck;
13}