1{
2 lib,
3 bundlerApp,
4 bundlerUpdateScript,
5}:
6
7bundlerApp {
8 pname = "sqlint";
9 gemdir = ./.;
10
11 exes = [ "sqlint" ];
12
13 passthru.updateScript = bundlerUpdateScript "sqlint";
14
15 meta = with lib; {
16 description = "Simple SQL linter";
17 homepage = "https://github.com/purcell/sqlint";
18 license = licenses.mit;
19 maintainers = with maintainers; [
20 ariutta
21 nicknovitski
22 purcell
23 ];
24 platforms = platforms.unix;
25 };
26}