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